18 lines
408 B
Groovy
18 lines
408 B
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'kotlin-android'
|
|
|
|
ext {
|
|
appName = 'Tachiyomi: MangaMx & Doujin-Yang'
|
|
pkgNameSuffix = 'es.mangamx'
|
|
extClass = '.MangaMxFactory'
|
|
extVersionCode = 4
|
|
libVersion = '1.2'
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly 'com.google.code.gson:gson:2.8.5'
|
|
compileOnly 'com.github.salomonbrys.kotson:kotson:2.5.0'
|
|
}
|
|
|
|
apply from: "$rootDir/common.gradle"
|