-
Notifications
You must be signed in to change notification settings - Fork 2
/
AndroidManifest.xml
43 lines (40 loc) · 1.87 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
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.jleedev.urlexpander"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:targetSdkVersion="15"/>
<uses-permission android:name="android.permission.INTERNET"/>
<application android:label="@string/app_name">
<activity android:name=".ExpandUrlActivity"
android:label="@string/expand_url"
android:configChanges="orientation|screenSize|keyboardHidden"
android:noHistory="true"
android:excludeFromRecents="true"
android:theme="@android:style/Theme.Holo.Light.Dialog">
<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"/>
<data android:scheme="https"/>
<data android:host="4sq.com"/>
<data android:host="awe.sm"/>
<data android:host="bit.ly"/>
<data android:host="fb.me"/>
<data android:host="feedproxy.google.com"/>
<data android:host="ff.im"/>
<data android:host="g.co"/>
<data android:host="goo.gl"/>
<data android:host="is.gd"/>
<data android:host="j.mp"/>
<data android:host="ow.ly"/>
<data android:host="t.co"/>
<data android:host="tinyurl.com"/>
<data android:host="tmblr.co"/>
<data android:host="wp.me"/>
<data android:host="youtu.be"/>
</intent-filter>
</activity>
</application>
</manifest>