-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAndroidManifest.xml
71 lines (63 loc) · 2.47 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
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="net.freehal.app"
android:versionName="0.1.14" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="15" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<application
largeHeap="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".gui.OverviewActivity"
android:label="@string/app_name"
android:launchMode="singleTask"
android:process=":gui" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".gui.DetailActivity"
android:label="@string/title_detail"
android:launchMode="singleTask"
android:process=":gui" >
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value=".OverviewActivity" />
</activity>
<service
android:name=".notification.NotificationService"
android:icon="@drawable/ic_launcher"
android:logo="@drawable/ic_launcher"
android:process=":noti" >
</service>
<service
android:name=".offline.OfflineService"
android:icon="@drawable/ic_launcher"
android:logo="@drawable/ic_launcher"
android:process=":offline" >
</service>
<receiver
android:name=".gui.FreehalBroadcastReceiver"
android:enabled="true"
android:exported="false"
android:label="FreehalBroadcastReceiver"
android:process=":gui" >
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
</receiver>
<activity
android:name=".gui.FreehalPreferences"
android:label="@string/set_preferences"
android:process=":gui" >
</activity>
</application>
</manifest>