-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
64 lines (61 loc) · 3.96 KB
/
AndroidManifest.xml
File metadata and controls
64 lines (61 loc) · 3.96 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
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.skarcha.nobrowser"
android:versionName="1.2.0" android:versionCode="4">
<uses-permission android:name="android.permission.INTERNET"></uses-permission>
<uses-sdk android:minSdkVersion="3"></uses-sdk>
<application android:icon="@drawable/icon" android:label="@string/app_name" android:theme="@android:style/Theme.NoDisplay">
<activity android:name="com.skarcha.nobrowser.Main" android:theme="@android:style/Theme.NoDisplay">
<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="http" android:host="twitlonger.com" android:pathPattern="/show/.*"></data>
<data android:pathPattern="/show/.*" android:scheme="http" android:host="www.twitlonger.com"></data>
</intent-filter>
<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="http" android:host="tl.gd"></data>
</intent-filter>
<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="http" android:host="market.android.com"></data>
<data android:scheme="https" android:host="market.android.com"></data>
</intent-filter>
<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:host="bit.ly" android:scheme="http"></data>
<data android:host="goo.gl" android:scheme="http"></data>
<data android:host="is.gd" android:scheme="http"></data>
<data android:host="j.mp" android:scheme="http"></data>
<data android:host="kcy.me" android:scheme="http"></data>
<data android:host="t.co" android:scheme="http"></data>
<data android:host="tinyurl.com" android:scheme="http"></data>
<data android:host="urlcorta.es" android:scheme="http"></data>
<data android:host="youtu.be" android:scheme="http"></data>
</intent-filter>
</activity>
<activity android:name="Preferences" android:theme="@android:style/Theme.Black" android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN"></action>
<category android:name="android.intent.category.LAUNCHER"></category>
</intent-filter>
</activity>
<activity android:name="NBImageView" android:theme="@android:style/Theme.Black" android:configChanges="keyboardHidden|orientation">
<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:host="yfrog.com" android:scheme="http"></data>
<data android:host="twitpic.com" android:scheme="http"></data>
<data android:host="picplz.com" android:scheme="http"></data>
</intent-filter>
</activity>
</application>
</manifest>