18 lines
354 B
Groovy
18 lines
354 B
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'kotlin-android'
|
|
apply plugin: 'kotlinx-serialization'
|
|
|
|
ext {
|
|
extName = 'Muito Mangá'
|
|
pkgNameSuffix = 'pt.muitomanga'
|
|
extClass = '.MuitoManga'
|
|
extVersionCode = 5
|
|
isNsfw = true
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':lib-ratelimit')
|
|
}
|
|
|
|
apply from: "$rootDir/common.gradle"
|