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