12 lines
265 B
Groovy
12 lines
265 B
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'kotlin-android'
|
|
|
|
ext {
|
|
extName = 'The Library of Ohara'
|
|
pkgNameSuffix = 'all.thelibraryofohara'
|
|
extClass = '.TheLibraryOfOharaFactory'
|
|
extVersionCode = 1
|
|
}
|
|
|
|
apply from: "$rootDir/common.gradle"
|