19 lines
529 B
Groovy
19 lines
529 B
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'kotlin-android'
|
|
|
|
ext {
|
|
appName = 'Tachiyomi: nhentai'
|
|
pkgNameSuffix = 'all.nhentai'
|
|
extClass = '.NHJapanese; .NHEnglish; .NHChinese; .NHSpeechless; .NHCzech; .NHEsperanto; .NHMongolian; .NHSlovak; .NHArabic; .NHUkrainian'
|
|
extVersionCode = 2
|
|
extVersionSuffix = 0
|
|
libVersion = '1.2'
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly 'com.google.code.gson:gson:2.8.2'
|
|
compileOnly 'com.github.salomonbrys.kotson:kotson:2.5.0'
|
|
}
|
|
|
|
apply from: "$rootDir/common.gradle"
|