-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
47 lines (41 loc) · 1.45 KB
/
AndroidManifest.xml
File metadata and controls
47 lines (41 loc) · 1.45 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
<?xml version="1.0" encoding="utf-8"?>
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
android:versionCode="1"
android:versionName="1.0"
package="com.marakana.yamba">
<uses-sdk
android:minSdkVersion="11"
android:targetSdkVersion="11" />
<uses-permission android:name="android.permission.INTERNET" />
<application
android:name="YambaApp"
android:icon="@drawable/icon"
android:label="@string/app_name"
android:hardwareAccelerated="true"
android:debuggable="true">
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:launchMode="singleTop">
<!-- Used for Launcher as main entry point -->
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<!-- Used for OAuth callback -->
<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="x-marakana-yamba-oauth-twitter"
android:host="callback" />
</intent-filter>
</activity>
<service android:name="UpdaterService" />
<provider
android:name="StatusProvider"
android:authorities="com.marakana.yamba.statusprovider" />
</application>
</manifest>