-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathAndroidManifest.xml
executable file
·46 lines (40 loc) · 1.61 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright (C) 2023 Nameless-AOSP
SPDX-License-Identifier: Apache-2.0
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
android:sharedUserId="android.uid.system"
package="org.nameless.nrmode"
android:versionCode="1"
android:versionName="1.0" >
<uses-permission android:name="android.permission.INTERACT_ACROSS_USERS" />
<uses-permission android:name="android.permission.WRITE_SETTINGS" />
<protected-broadcast android:name="org.nameless.nrmode.intent.SIM_STATE_CHANGED" />
<application
android:label="@string/app_name"
android:persistent="true"
android:supportsRtl="true"
android:defaultToDeviceProtectedStorage="true"
android:directBootAware="true">
<receiver
android:name=".BootCompletedReceiver"
android:exported="true"
android:permission="android.permission.RECEIVE_BOOT_COMPLETED">
<intent-filter>
<action android:name="android.intent.action.LOCKED_BOOT_COMPLETED" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</receiver>
<service
android:name=".service.SimCardListenerService">
</service>
<activity
android:name=".NrModeSettingsActivity"
android:configChanges="orientation|screenSize"
android:exported="true"
android:label="@string/nrmode_settings_title"
android:theme="@style/Theme.SubSettingsBase">
</activity>
</application>
</manifest>