17 lines
460 B
Groovy
17 lines
460 B
Groovy
|
apply plugin: 'com.android.application'
|
||
|
apply plugin: 'kotlin-android'
|
||
|
|
||
|
ext {
|
||
|
appName = 'Tachiyomi: NineHentai'
|
||
|
pkgNameSuffix = 'all.ninehentai'
|
||
|
extClass = '.NineHentai'
|
||
|
extVersionCode = 1
|
||
|
libVersion = '1.2'
|
||
|
}
|
||
|
dependencies {
|
||
|
compileOnly 'com.google.code.gson:gson:2.8.2'
|
||
|
compileOnly 'com.github.salomonbrys.kotson:kotson:2.5.0'
|
||
|
compileOnly 'com.github.inorichi.injekt:injekt-core:65b0440'
|
||
|
}
|
||
|
apply from: "$rootDir/common.gradle"
|