New Source: Cineplus123 (es) (#107)

This commit is contained in:
Dark25 2024-08-05 15:07:35 +01:00 committed by GitHub
parent dcb5c7ef2f
commit 802f56295e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
19 changed files with 391 additions and 0 deletions

View file

@ -0,0 +1,22 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<application>
<activity
android:name=".es.cineplus123.Cineplus123UrlActivity"
android:excludeFromRecents="true"
android:exported="true"
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:host="cineplus123.org"
android:pathPattern="/anime/..*"
android:scheme="https" />
</intent-filter>
</activity>
</application>
</manifest>