-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathAndroidManifest.xml
51 lines (47 loc) · 1.71 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
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="de.onyxbits.listmyapps"
android:versionCode="16"
android:versionName="3.6" >
<uses-sdk
android:minSdkVersion="9"
android:targetSdkVersion="17" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="de.onyxbits.listmyapps.MainActivity"
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="de.onyxbits.listmyapps.TemplatesActivity"
android:label="@string/title_activity_templates"
android:parentActivityName="de.onyxbits.listmyapps.MainActivity" >
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="de.onyxbits.listmyapps.MainActivity" />
</activity>
<activity
android:name="de.onyxbits.listmyapps.TemplateEditorActivity"
android:label="@string/title_activity_template_editor"
android:parentActivityName="de.onyxbits.listmyapps.TemplatesActivity" >
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="de.onyxbits.listmyapps.TemplatesActivity" />
</activity>
<activity
android:name="de.onyxbits.listmyapps.AnnotationsActivity"
android:label="@string/title_activity_annotations"
android:parentActivityName="de.onyxbits.listmyapps.MainActivity" >
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="de.onyxbits.listmyapps.MainActivity" />
</activity>
</application>
</manifest>