build.gradle 518 B

1234567891011121314151617181920212223
  1. apply plugin: 'com.android.library'
  2. apply plugin: 'kotlin-android-extensions'
  3. apply plugin: 'kotlin-android'
  4. apply plugin: 'com.github.dcendents.android-maven'
  5. group='com.github.liangjingkanji'
  6. android {
  7. compileSdkVersion 28
  8. buildToolsVersion "28.0.3"
  9. defaultConfig {
  10. minSdkVersion 9
  11. targetSdkVersion 28
  12. }
  13. }
  14. dependencies {
  15. implementation "androidx.core:core-ktx:+"
  16. implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
  17. }
  18. repositories {
  19. mavenCentral()
  20. }