Skip to content

Commit

Permalink
fix(it/aniplay): Rewrite extension for the new structure (#2871)
Browse files Browse the repository at this point in the history
  • Loading branch information
Claudemirovsky authored Feb 5, 2024
1 parent 8ffc211 commit 725454b
Show file tree
Hide file tree
Showing 8 changed files with 519 additions and 804 deletions.
22 changes: 21 additions & 1 deletion src/it/aniplay/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,2 +1,22 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest />
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<application>
<activity
android:name=".it.aniplay.AniPlayUrlActivity"
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="aniplay.co"
android:pathPattern="/series/..*"
android:scheme="https" />
</intent-filter>
</activity>
</application>
</manifest>
6 changes: 5 additions & 1 deletion src/it/aniplay/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
ext {
extName = 'AniPlay'
extClass = '.AniPlay'
extVersionCode = 6
extVersionCode = 7
}

apply from: "$rootDir/common.gradle"

dependencies {
implementation(project(":lib:playlist-utils"))
}
Binary file removed src/it/aniplay/res/web_hi_res_512.png
Binary file not shown.

Large diffs are not rendered by default.

This file was deleted.

Loading

0 comments on commit 725454b

Please sign in to comment.