-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAndroidManifest.xml
38 lines (29 loc) · 1.73 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
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.mishiranu.dashchan.chan.neochan"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="16" android:targetSdkVersion="25" />
<uses-feature android:name="chan.extension" />
<application android:icon="@null" android:allowBackup="false" android:label="@string/text_app_name">
<meta-data android:name="chan.extension.name" android:value="neochan" />
<meta-data android:name="chan.extension.version" android:value="1" />
<meta-data android:name="chan.extension.icon" android:resource="@drawable/ic_custom_neochan_white" />
<meta-data android:name="chan.extension.source" android:value="//raw.githubusercontent.com/neochaner/neochan-dashchan-ext/master/update.json" />
<meta-data android:name="chan.extension.class.configuration" android:value=".NeochanChanConfiguration" />
<meta-data android:name="chan.extension.class.performer" android:value=".NeochanChanPerformer" />
<meta-data android:name="chan.extension.class.locator" android:value=".NeochanChanLocator" />
<meta-data android:name="chan.extension.class.markup" android:value=".NeochanChanMarkup" />
<activity android:name="chan.app.UriHandlerActivity" android:label="@string/text_activity_name"
android:theme="@android:style/Theme.NoDisplay">
<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="https" />
<data android:host="neochan.net" />
<data android:host="neochan.ru" />
</intent-filter>
</activity>
</application>
</manifest>