hjw
2023-04-20 a75addbc22f25b5fb219d3979f7bcd9cbf4942c3
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
47
48
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.jwipc.nodka_alarmpower"
    android:versionCode="3"
    android:versionName="v3.0"
    android:sharedUserId="android.uid.system" >
 
    <uses-sdk
        android:minSdkVersion="19"
        android:targetSdkVersion="19" />
    
    
    <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
     <uses-permission android:name="android.permission.WRITE_SETTINGS" />
    
 
    <application
        android:name=".MyApplication"
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@android:style/Theme.DeviceDefault.Light.NoActionBar" >
        
        
        <activity android:name="MainActivity"
                android:configChanges="orientation|screenSize|keyboard|keyboardHidden|navigation|touchscreen|locale|touchscreen"    >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        
        
        <receiver android:name="The_BroadcastReceiver">
            <intent-filter>
                <action android:name="android.intent.action.NDJ_RESPONE_ALARM_REBOOT" />
            </intent-filter>
        </receiver>
        
        
        
        
        
        
        
        
    </application>
 
</manifest>