-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAndroidManifest.xml
81 lines (61 loc) · 3.29 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
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.eurina.android.mobilequeue"
android:versionCode="1"
android:versionName="1.0">
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-sdk android:minSdkVersion="3" android:targetSdkVersion="4" />
<application
android:icon="@drawable/app_logo"
android:label="@string/app_name"
android:theme="@style/MQTheme"
android:description="@string/app_descrip">
<!-- the main page for Mobile Queue -->
<activity
android:name="com.eurina.android.mobilequeue.ui.MQQueueMain"
android:theme="@style/MQTheme"
android:launchMode="singleTask"
android:configChanges="orientation|keyboardHidden">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="mq" android:host="qte.yourtaste.no" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.SEARCH" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
<meta-data android:name="android.app.searchable" android:resource="@xml/searchable" />
</activity>
<activity
android:name="com.eurina.android.mobilequeue.ui.MQQueueView">
</activity>
<activity
android:name="com.eurina.android.mobilequeue.ui.MQQueueTicket">
</activity>
<!-- Broadcast Receiver that will process AppWidget updates -->
<receiver android:name="com.eurina.android.mobilequeue.ui.MQWidgetProvider" android:label="@string/widget_name">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
</intent-filter>
<meta-data android:name="android.appwidget.provider" android:resource="@xml/mq_widget_pinfo" />
</receiver>
<!-- Service to perform web API queries -->
<service android:name=".ui.MQWidgetUpdatingService"/>
<!-- section for AdMob -->
<activity android:name="com.google.ads.AdActivity"
android:configChanges="keyboard|keyboardHidden|orientation"/>
<!-- Track Market installs from AdMob ads -->
<!-- The application's publisher ID assigned by AdMob -->
<meta-data android:value="a14d20d501e4439" android:name="ADMOB_PUBLISHER_ID" />
<!-- use a separate publisher id here to aid in tracking intersitial statistics -->
<meta-data android:value="a14d20d501e4439" android:name="ADMOB_INTERSTITIAL_PUBLISHER_ID" />
</application>
<meta-data android:name="android.app.default_searchable" android:value=".MQQueueMain" />
</manifest>