forked from EddieRingle/hubroid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AndroidManifest.xml
50 lines (46 loc) · 2.39 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
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="net.idlesoft.android.apps.github"
android:versionCode="2012061800"
android:versionName="3.0-alpha3">
<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="15" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.GET_ACCOUNTS"/>
<uses-permission android:name="android.permission.MANAGE_ACCOUNTS"/>
<uses-permission android:name="android.permission.AUTHENTICATE_ACCOUNTS"/>
<uses-permission android:name="android.permission.USE_CREDENTIALS"/>
<application android:name=".ui.HubroidApplication"
android:label="@string/app_name"
android:icon="@drawable/ic_launcher"
android:theme="@style/Theme.Hubroid">
<!-- Activities -->
<activity android:name=".ui.activities.MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".ui.activities.GitHubIntentFilter">
<intent-filter>
<action android:name="android.intent.action.VIEW"></action>
<category android:name="android.intent.category.DEFAULT"></category>
<category android:name="android.intent.category.BROWSABLE"></category>
<data android:scheme="https" android:pathPattern="/.*" android:host="github.com"></data>
<data android:scheme="https" android:pathPattern="/.*" android:host="gist.github.com"></data>
<data android:scheme="hubroid" android:pathPattern="/.*" android:host="oauth"></data>
</intent-filter>
</activity>
<!-- Services -->
<service android:name=".authenticator.AccountAuthenticatorService" android:process=":auth">
<intent-filter>
<action android:name="android.accounts.AccountAuthenticator" />
</intent-filter>
<meta-data android:name="android.accounts.AccountAuthenticator" android:resource="@xml/authenticator" />
</service>
<activity android:name=".authenticator.AccountSelect"
android:label="@string/userselect_title" />
<activity android:name=".authenticator.GitHubAuthenticatorActivity"
android:excludeFromRecents="true" />
</application>
</manifest>