-
Notifications
You must be signed in to change notification settings - Fork 2
/
AndroidManifest.xml
executable file
·83 lines (76 loc) · 3.02 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
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
79
80
81
82
83
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="pidevs.socialsaddict"
android:versionCode="23"
android:versionName="6.5.1.4" >
<uses-sdk
android:maxSdkVersion="22"
android:minSdkVersion="14"
android:targetSdkVersion="22" />
<uses-permission android:name="android.permission.GET_TASKS" />
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<uses-permission
android:name="android.permission.PACKAGE_USAGE_STATS"
tools:ignore="ProtectedPermissions" />
<application
android:allowBackup="true"
android:icon="@drawable/icon"
android:label="@string/app_name"
android:theme="@style/Theme.AppCompat" >
<activity
android:name=".MainActivity"
android:excludeFromRecents="true"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".Setting"
android:excludeFromRecents="true"
android:label="@string/title_activity_setting" >
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="pidevs.socialsaddict.MainActivity" />
</activity>
<activity
android:name=".Welcome"
android:excludeFromRecents="true"
android:label="@string/title_activity_welcome"
android:theme="@style/Theme.AppCompat.Light.NoActionBar" >
</activity>
<activity
android:name=".About"
android:label="@string/title_activity_about"
android:theme="@style/Theme.AppCompat.Light.DarkActionBar" >
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="pidevs.socialsaddict.MainActivity" />
</activity>
<service
android:name=".ServiceSocial"
android:icon="@drawable/icon"
android:label="@string/app_name"
android:launchMode="singleTask" >
</service>
<service
android:name=".LollipopService"
android:icon="@drawable/icon"
android:label="@string/app_name"
android:launchMode="singleTask" >
</service>
<receiver
android:name=".ServiceStarter"
android:enabled="true" >
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
<action android:name="android.intent.action.QUICKBOOT_POWERON" />
</intent-filter>
</receiver>
<receiver android:name=".close" />
<receiver android:name=".settinggg" />
<receiver android:name=".report" />
</application>
</manifest>