
* Replace Gson usage with kotlinx.serialization in some sources. * Add kotlinx.serialization to common-dependencies. * Add missing dependencies.
19 lines
378 B
Groovy
19 lines
378 B
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'kotlin-android'
|
|
apply plugin: 'kotlinx-serialization'
|
|
|
|
ext {
|
|
extName = 'HipercooL'
|
|
pkgNameSuffix = 'pt.hipercool'
|
|
extClass = '.Hipercool'
|
|
extVersionCode = 7
|
|
libVersion = '1.2'
|
|
containsNsfw = true
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':lib-ratelimit')
|
|
}
|
|
|
|
apply from: "$rootDir/common.gradle"
|