
* Update MDConstants.kt * Update MangaDex.kt * Update MangaDexHelper.kt * Update build.gradle * Update MangaDex.kt * Update MangaDexHelper.kt * Update MangaDexHelper.kt * Update MDConstants.kt
19 lines
385 B
Groovy
19 lines
385 B
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'kotlin-android'
|
|
apply plugin: 'kotlinx-serialization'
|
|
|
|
ext {
|
|
extName = 'MangaDex'
|
|
pkgNameSuffix = 'all.mangadex'
|
|
extClass = '.MangaDexFactory'
|
|
extVersionCode = 127
|
|
libVersion = '1.2'
|
|
containsNsfw = true
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':lib-ratelimit')
|
|
}
|
|
|
|
apply from: "$rootDir/common.gradle"
|