Alessandro Jean 2b0efcafd8 Add language support to MangaPlus (#1154)
* Add language support (#845).

* Add update to tell the user to migrate.

* Renames source to distinguish between the old and new one.

* Fix missing uppercase 'Shueisha' in appName.

* Remove deprecated on old extension appName.
2019-05-31 18:45:28 -04:00

19 lines
455 B
Groovy

apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
ext {
appName = 'Tachiyomi: MANGA Plus by SHUEISHA'
pkgNameSuffix = 'all.mangaplus'
extClass = '.MangaPlusFactory'
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 project(':duktape-stub')
}
apply from: "$rootDir/common.gradle"