forked from Krylez-zz/Redirect-for-youtu.be
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAndroidManifest.xml
36 lines (32 loc) · 1.32 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
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="org.ayal.xkcd2mobile"
android:versionCode="2"
android:versionName="2.0" >
<uses-sdk
android:minSdkVersion="4"
android:targetSdkVersion="17" />
<uses-feature
android:name="android.hardware.touchscreen"
android:required="false" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<activity
android:name="org.ayal.xkcd2mobile.XKCDUrlActivity"
android:label="@string/app_name"
android:theme="@android:style/Theme.Translucent"
tools:ignore="ExportedActivity" >
<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="http"
android:host="www.xkcd.com" />
<data android:scheme="http"
android:host="xkcd.com" />
</intent-filter>
</activity>
</application>
</manifest>