13 lines
284 B
Groovy
13 lines
284 B
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'kotlin-android'
|
|
apply plugin: 'kotlinx-serialization'
|
|
|
|
ext {
|
|
extName = 'League of Legends'
|
|
pkgNameSuffix = 'all.leagueoflegends'
|
|
extClass = '.LOLFactory'
|
|
extVersionCode = 1
|
|
}
|
|
|
|
apply from: "$rootDir/common.gradle"
|