57 lines
1.9 KiB
XML
57 lines
1.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
package="io.noties.markwon.app">
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
<application
|
|
android:name=".App"
|
|
android:allowBackup="true"
|
|
android:icon="@mipmap/ic_launcher"
|
|
android:label="@string/app_name"
|
|
android:roundIcon="@mipmap/ic_launcher"
|
|
android:supportsRtl="true"
|
|
android:theme="@style/AppThemeLight"
|
|
tools:ignore="AllowBackup">
|
|
|
|
<activity android:name=".MainActivity">
|
|
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
|
|
<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:host="*"
|
|
android:scheme="http" />
|
|
|
|
<data
|
|
android:host="*"
|
|
android:scheme="file" />
|
|
|
|
<data
|
|
android:host="*"
|
|
android:scheme="https" />
|
|
|
|
<data android:pathPattern=".*\\.markdown" />
|
|
<data android:pathPattern=".*\\.mdown" />
|
|
<data android:pathPattern=".*\\.mkdn" />
|
|
<data android:pathPattern=".*\\.mdwn" />
|
|
<data android:pathPattern=".*\\.mkd" />
|
|
<data android:pathPattern=".*\\.md" />
|
|
<data android:pathPattern=".*\\.text" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
</application>
|
|
|
|
</manifest> |