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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.jwipc.nodka_reboot_under"
    android:versionCode="1"
    android:versionName="v1.0"
    android:sharedUserId="android.uid.system" >
 
    <uses-sdk
        android:minSdkVersion="25"
        android:targetSdkVersion="25" />
 
 
    <uses-permission android:name="android.permission.BLUETOOTH" />
    <uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
    <uses-permission android:name="android.permission.CHANGE_WIFI_STATE" />
    <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
    
 
    <application
        android:name=".MyApplication"
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:persistent="true"
        android:theme="@android:style/Theme.DeviceDefault.Light.NoActionBar.Fullscreen" >
        
        
        <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="BroadcastReceiver_Boot">
            <intent-filter>
                <action android:name="android.intent.action.BOOT_COMPLETED" />
            </intent-filter>
        </receiver>
        
        
        <receiver android:name="BroadcastReceiver_Power">
            <intent-filter>
                <action android:name="android.intent.action.auto_power_shut" />
                <action android:name="android.intent.action.NDJ_APP_ALIVE" />
                <action android:name="android.intent.action.NDJ_APP_STOP" />
                <action android:name="android.intent.action.NDJ_GET_ALARM_REBOOT" />
                <action android:name="android.intent.action.STOP_WATCH_DOG_APK_FEED" />
                <action android:name="android.intent.action.STOP_APK_FEED" />
                <action android:name="android.intent.action.TIMEZONE_CHANGED" />
                <action android:name="android.intent.action.TIME_SET" />
            </intent-filter>
        </receiver>
 
        <receiver android:name="BroadcastReceiver_Sys">
            <intent-filter>
                <action android:name="com.nodka.action.HDMI_RESOLUTION" />
                <action android:name="com.nodka.action.APP_ALIVE" />
                <action android:name="com.nodka.action.SCREEN_CAP" />
                <action android:name="com.nodka.action.PKG_INSTALL" />
                <action android:name="com.nodka.action.PKG_UNINSTALL" />
                <action android:name="com.nodka.action.BLUETOOTH" />
                <action android:name="com.nodka.action.WIFI" />
                <action android:name="com.nodka.action.ETHERNET" />
                <action android:name="com.nodka.action.POWER" />
            </intent-filter>
        </receiver>
 
        <service android:name="The_Service"></service>
        
        
        
        
    </application>
 
</manifest>