-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
105 lines (99 loc) · 4.28 KB
/
AndroidManifest.xml
File metadata and controls
105 lines (99 loc) · 4.28 KB
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.simpledblp"
android:versionCode="1"
android:versionName="1.0" >
<uses-permission android:name="android.permission.INTERNET" />
<uses-sdk
android:minSdkVersion="16"
android:targetSdkVersion="18" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.example.simpledblp.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="com.example.simpledblp.SettingsActivity"
android:label="@string/title_activity_settings" >
</activity>
<activity
android:name="com.example.simpledblp.SearchableActivity"
android:label="@string/search_activity" >
<intent-filter>
<action android:name="android.intent.action.SEARCH" />
</intent-filter>
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:resource="@xml/searchable"
android:value="com.example.simpledblp.MainActivity" />
</activity>
<activity
android:name="com.example.simpledblp.TestActivity2"
android:label="@string/title_activity_test_activity2"
android:parentActivityName="com.example.simpledblp.MainActivity" >
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="com.example.simpledblp.MainActivity" />
</activity>
<activity
android:name="com.example.simpledblp.ItemListActivity"
android:label="@string/title_item_list" >
</activity>
<activity
android:name="com.example.simpledblp.ItemDetailActivity"
android:label="@string/title_item_detail"
android:parentActivityName=".ItemListActivity" >
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value=".ItemListActivity" />
</activity>
<activity
android:name="com.example.simpledblp.SearchpageActivity"
android:label="@string/title_activity_searchpage"
android:parentActivityName="com.example.simpledblp.MainActivity" >
<meta-data
android:name="android.app.SearchableActivity"
android:resource="@xml/searchable" />
</activity>
<activity
android:name="com.example.simpledblp.HelpActivity"
android:label="@string/title_activity_help" >
</activity>
<activity
android:name="com.example.simpledblp.BookmarksActivity"
android:label="@string/title_activity_bookmarks" >
</activity>
<activity
android:name="com.example.simpledblp.DBtester"
android:label="@string/bookmark_activity" >
</activity>
<activity
android:name="com.example.simpledblp.ResultsActivity"
android:label="@string/title_activity_results" >
</activity>
<activity
android:name="com.example.simpledblp.SingleMenuItemActivity"
android:label="@string/single_entry"
android:parentActivityName="com.example.simpledblp.ResultsListActivity" >
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="com.example.simpledblp.ResultsListActivity" />
</activity>
<activity
android:name="com.example.simpledblp.ResultsListActivity"
android:label="@string/title_activity_results_list"
android:parentActivityName="com.example.simpledblp.SearchpageActivity" >
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="com.example.simpledblp.SearchpageActivity" />
</activity>
</application>
</manifest>