2025-04-12 18:54:33 +05:30
|
|
|
ext {
|
|
|
|
extName = 'AnimeKai'
|
|
|
|
extClass = '.AnimeKai'
|
|
|
|
extVersionCode = 14
|
|
|
|
isNsfw = false
|
|
|
|
}
|
|
|
|
|
2025-04-13 23:01:15 +05:30
|
|
|
apply from: "$rootDir/common.gradle"
|
|
|
|
|
|
|
|
dependencies {
|
2025-04-14 13:35:07 +05:30
|
|
|
// Add necessary dependencies with correct versions
|
2025-04-14 13:28:18 +05:30
|
|
|
implementation "androidx.appcompat:appcompat:1.6.1"
|
2025-04-13 23:23:36 +05:30
|
|
|
implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:1.5.1" // JSON serialization for Kotlin
|
2025-04-14 13:20:08 +05:30
|
|
|
implementation "org.jsoup:jsoup:1.16.1" // Jsoup for HTML parsing
|
2025-04-14 13:35:07 +05:30
|
|
|
}
|