summaryrefslogtreecommitdiff
path: root/AndroidManifest.xml (plain)
blob: 6d62e10088bc095975f4b67eca14450e0fda0db1
1<?xml version="1.0" encoding="utf-8"?>
2
3<!--
4 Copyright (c) 2014 Amlogic, Inc. All rights reserved.
5
6 This source code is subject to the terms and conditions defined in the
7 file 'LICENSE' which is part of this source code package.
8
9 Description: manifest
10-->
11
12<manifest xmlns:android="http://schemas.android.com/apk/res/android"
13 package="com.droidlogic.dig"
14 android:sharedUserId="android.uid.system"
15 android:versionCode="1"
16 android:versionName="1.0" >
17
18 <uses-sdk
19 android:minSdkVersion="8"
20 android:targetSdkVersion="18" />
21
22 <uses-permission android:name="android.permission.REBOOT" />
23 <uses-permission android:name="android.permission.MASTER_CLEAR" />
24 <uses-permission android:name="android.permission.INTERNET" />
25
26 <application
27 android:allowBackup="true"
28 android:icon="@drawable/ic_launcher"
29 android:label="@string/app_name"
30 android:persistent="true"
31 android:process="com.droidlogic.dig"
32 android:theme="@style/AppTheme" >
33 <activity
34 android:name=".activity.RebootActivity"
35 android:launchMode="singleTask" >
36 <intent-filter>
37 <action android:name="android.intent.action.MAIN" />
38 </intent-filter>
39 </activity>
40 <activity
41 android:name=".activity.WipeActivity"
42 android:launchMode="singleTask" >
43 <intent-filter>
44 <action android:name="android.intent.action.MAIN" />
45 </intent-filter>
46 </activity>
47 <activity
48 android:name=".activity.RestoreSystemActivity"
49 android:launchMode="singleTask" >
50 <intent-filter>
51 <action android:name="android.intent.action.MAIN" />
52 </intent-filter>
53 </activity>
54
55 <receiver android:name=".receiver.DigReceiver" >
56 <intent-filter>
57 <action android:name="android.intent.action.BOOT_COMPLETED" />
58 <action android:name="com.droidlogic.dig.DATA_CRASH" />
59 <action android:name="com.droidlogic.dig.DATA_READ_ONLY" />
60 <action android:name="com.droidlogic.dig.SYSTEM_CHANGED" />
61 </intent-filter>
62 </receiver>
63 </application>
64
65</manifest>