
* Catmanga: Replace org.json with kotlinx.serialization + Light Refactor of #7451 * Genkan IO: Replace gson + Make livewire interceptor * Genkan IO: Tail Call Optimization to avoid blowing stack * Comick.fun: kotlinx.serialization migration * Remanga: kotlinx.serialzation migration
14 lines
288 B
Groovy
14 lines
288 B
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'kotlin-android'
|
|
apply plugin: 'kotlinx-serialization'
|
|
|
|
ext {
|
|
extName = 'CatManga'
|
|
pkgNameSuffix = "en.catmanga"
|
|
extClass = '.CatManga'
|
|
extVersionCode = 3
|
|
libVersion = '1.2'
|
|
}
|
|
|
|
apply from: "$rootDir/common.gradle"
|