-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
71 lines (65 loc) · 3.54 KB
/
Copy pathAndroidManifest.xml
File metadata and controls
71 lines (65 loc) · 3.54 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
<?xml version="1.0" encoding="utf-8"?>
<manifest package="com.markupartist.iglaset"
xmlns:android="http://schemas.android.com/apk/res/android"
android:installLocation="auto"
android:versionName="1.4.2" android:versionCode="43">
<supports-screens
android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:anyDensity="true" />
<application android:icon="@drawable/icon" android:label="@string/app_name" android:name="IglasetApplication">
<meta-data android:name="android.app.default_searchable"
android:value=".activity.SearchResultActivity" />
<activity android:label="@string/app_name"
android:name=".activity.StartActivity"
android:theme="@android:style/Theme.Light.NoTitleBar"
android:windowSoftInputMode="stateHidden">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:label="@string/search_results"
android:name=".activity.SearchResultActivity"
android:theme="@android:style/Theme.Light.NoTitleBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<action android:name="com.markupartist.iglaset.action.USER_RECOMMENDATIONS" />
<action android:name="com.markupartist.iglaset.action.USER_RATINGS" />
</intent-filter>
<!-- This intent-filter identifies this activity as "searchable" -->
<intent-filter>
<action android:name="android.intent.action.SEARCH" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
<!-- This metadata entry provides further configuration details for searches -->
<!-- that are handled by this activity. -->
<meta-data android:name="android.app.searchable"
android:resource="@xml/searchable" />
</activity>
<!-- This provider declaration informs the Search Manager that you have a provider of -->
<!-- Search suggestions, and provides information about how to access it. -->
<provider android:name=".activity.SearchSuggestionProvider"
android:authorities="com.markupartist.iglaset.activity.SuggestionProvider" />
<activity android:name=".activity.DrinkDetailActivity"
android:theme="@android:style/Theme.Light.NoTitleBar">
</activity>
<activity android:name=".activity.CategoryActivity"
android:theme="@android:style/Theme.Light.NoTitleBar">
</activity>
<activity android:name=".activity.TagActivity"
android:theme="@android:style/Theme.Light.NoTitleBar">
</activity>
<activity android:name=".activity.BasicPreferenceActivity"
android:label="@string/settings"
android:theme="@android:style/Theme.Light">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
</intent-filter>
</activity>
</application>
<uses-sdk android:minSdkVersion="4" android:targetSdkVersion="8" />
<uses-permission android:name="android.permission.INTERNET"></uses-permission>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
</manifest>