-
Notifications
You must be signed in to change notification settings - Fork 259
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(de/animebase): Some fixes + refactoration (#2236)
- Loading branch information
1 parent
4dd76e3
commit 11c9369
Showing
4 changed files
with
237 additions
and
246 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,21 @@ | ||
apply plugin: 'com.android.application' | ||
apply plugin: 'kotlin-android' | ||
apply plugin: 'kotlinx-serialization' | ||
plugins { | ||
alias(libs.plugins.android.application) | ||
alias(libs.plugins.kotlin.android) | ||
} | ||
|
||
ext { | ||
extName = 'Anime-Base' | ||
pkgNameSuffix = 'de.animebase' | ||
extClass = '.AnimeBase' | ||
extVersionCode = 13 | ||
extVersionCode = 14 | ||
libVersion = '13' | ||
} | ||
|
||
dependencies { | ||
implementation(project(":lib-voe-extractor")) | ||
implementation(project(":lib-streamwish-extractor")) | ||
implementation(project(":lib-playlist-utils")) | ||
implementation("dev.datlag.jsunpacker:jsunpacker:1.0.1") | ||
} | ||
|
||
apply from: "$rootDir/common.gradle" |
Oops, something went wrong.