<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.RECEIVE_BOOT_COMPLETED" />
|
|
|
<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.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>
|
|
|
<service android:name="The_Service"></service>
|
|
|
|
|
</application>
|
|
</manifest>
|