extensions-source/src/fr/franime/AndroidManifest.xml

22 lines
875 B
XML
Raw Normal View History

2024-06-20 11:54:12 +07:00
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<application>
<activity
2024-08-09 11:55:40 +02:00
android:name=".fr.franime.FrAnimeUrlActivity"
android:excludeFromRecents="true"
android:exported="true"
android:theme="@android:style/Theme.NoDisplay"
>
2024-06-20 11:54:12 +07:00
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data
2024-08-09 11:55:40 +02:00
android:scheme="https"
android:host="franime.fr"
android:pathPattern="/anime/..*"
/>
2024-06-20 11:54:12 +07:00
</intent-filter>
</activity>
</application>
2024-08-09 11:55:40 +02:00
</manifest>