fix(tr/tranimeizle): Domain update for tranimeizle (#545)

* Update build.gradle

* Update AndroidManifest.xml

* Update TRAnimeIzleUrlActivity.kt

* Update TRAnimeIzle.kt
This commit is contained in:
Kerim Demirkaynak 2025-01-16 18:54:16 +03:00 committed by GitHub
parent c38e3c0392
commit 970d14a93c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 4 additions and 4 deletions

View file

@ -13,7 +13,7 @@
<category android:name="android.intent.category.BROWSABLE" />
<data
android:host="www.tranimeizle.co"
android:host="www.tranimeizle.top"
android:pathPattern="/anime/..*"
android:scheme="https" />
</intent-filter>

View file

@ -1,7 +1,7 @@
ext {
extName = 'TR Anime Izle'
extClass = '.TRAnimeIzle'
extVersionCode = 19
extVersionCode = 20
}
apply from: "$rootDir/common.gradle"

View file

@ -43,7 +43,7 @@ class TRAnimeIzle : ParsedAnimeHttpSource(), ConfigurableAnimeSource {
override val name = "TR Anime Izle"
override val baseUrl = "https://www.tranimeizle.co"
override val baseUrl = "https://www.tranimeizle.top"
override val lang = "tr"

View file

@ -8,7 +8,7 @@ import android.util.Log
import kotlin.system.exitProcess
/**
* Springboard that accepts https://www.tranimeizle.co/anime/<item> intents
* Springboard that accepts https://www.tranimeizle.top/anime/<item> intents
* and redirects them to the main Aniyomi process.
*/
class TRAnimeIzleUrlActivity : Activity() {