19 lines
388 B
Groovy
19 lines
388 B
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'kotlin-android'
|
|
|
|
ext {
|
|
appName = 'Tachiyomi: Mangahere'
|
|
pkgNameSuffix = 'en.mangahere'
|
|
extClass = '.Mangahere'
|
|
extVersionCode = 12
|
|
libVersion = '1.2'
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly project(':duktape-stub')
|
|
sourceCompatibility = "1.6"
|
|
targetCompatibility = "1.6"
|
|
}
|
|
|
|
apply from: "$rootDir/common.gradle"
|