-
Notifications
You must be signed in to change notification settings - Fork 6
/
AndroidManifest.xml
30 lines (24 loc) · 1.02 KB
/
AndroidManifest.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="co.hyper.proximityservice"
android:versionCode="1"
android:versionName="1.0"
android:sharedUserId="android.uid.system">
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<uses-sdk
android:minSdkVersion="29"
android:targetSdkVersion="31"/>
<application
android:label="RealmeProximityHelper"
android:persistent="true">
<receiver android:name="co.hyper.proximityservice.BootCompletedReceiver">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</receiver>
<service android:name="co.hyper.proximityservice.RealmeProximityHelperService"
android:permission="RealmeProximityHelperService">
</service>
</application>
</manifest>