forked from NoahY/q2android
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
76 lines (74 loc) · 3.4 KB
/
AndroidManifest.xml
File metadata and controls
76 lines (74 loc) · 3.4 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
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.noahy.q2android"
android:versionName="0.8"
android:versionCode="9">
<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="17" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
<uses-permission android:name="android.permission.AUTHENTICATE_ACCOUNTS"/>
<uses-permission android:name="android.permission.USE_CREDENTIALS"/>
<uses-permission android:name="android.permission.GET_ACCOUNTS"/>
<uses-permission android:name="android.permission.MANAGE_ACCOUNTS"/>
<supports-screens android:resizeable="true"
android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="true"
android:xlargeScreens="true"
android:anyDensity="true"/>
<application
android:icon="@drawable/actionbar_icon"
android:label="@string/app_name"
android:allowBackup="true"
android:supportsRtl="true"
>
<activity android:label="@string/app_name"
android:name="org.noahy.q2android.Q2Android"
android:theme="@style/LightTheme"
android:logo="@drawable/actionbar_icon"
android:configChanges="orientation|screenSize|keyboardHidden"
android:windowSoftInputMode="stateUnchanged"
android:launchMode="singleTask">
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="text/plain" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:label="Preferences"
android:name="org.noahy.q2android.Q2ASettingsActivity"
android:theme="@style/LightTheme"
android:configChanges="orientation|screenSize|keyboardHidden"
android:logo="@drawable/actionbar_icon"
/>
<activity android:label="Help"
android:name="org.noahy.q2android.Q2AHelpActivity"
android:theme="@style/LightTheme"
android:logo="@drawable/actionbar_icon"
/>
<activity
android:name="org.noahy.q2android.Q2AUserActivity"
android:theme="@style/Theme.Transparent"
/>
<activity
android:name="org.noahy.q2android.Q2ALoginActivity"
android:theme="@style/Theme.Transparent"
/>
<activity android:name="org.noahy.q2android.authentication.AuthenticatorActivity"
android:theme="@style/LightTheme"
android:label="@string/app_name"/>
<service android:name="org.noahy.q2android.authentication.Q2AuthenticatorService"
android:exported="false">
<intent-filter>
<action android:name="android.accounts.AccountAuthenticator" />
</intent-filter>
<meta-data android:name="android.accounts.AccountAuthenticator"
android:resource="@xml/authenticator" />
</service>
</application>
</manifest>