1234567891011121314151617181920212223 |
- apply plugin: 'com.android.library'
- apply plugin: 'kotlin-android-extensions'
- apply plugin: 'kotlin-android'
- apply plugin: 'com.github.dcendents.android-maven'
- group='com.github.liangjingkanji'
- android {
- compileSdkVersion 28
- buildToolsVersion "28.0.3"
- defaultConfig {
- minSdkVersion 9
- targetSdkVersion 28
- }
- }
- dependencies {
- implementation "androidx.core:core-ktx:+"
- implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
- }
- repositories {
- mavenCentral()
- }
|