build.gradle 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. apply plugin: 'com.android.library'
  2. apply plugin: 'kotlin-android'
  3. apply from: '../dependencies.gradle'
  4. ext.shard = 'core'
  5. apply from: '../bintrayconfig.gradle'
  6. android {
  7. compileSdkVersion versions.compileSdk
  8. buildToolsVersion versions.buildTools
  9. compileOptions {
  10. if (modulePackageId != null && modulePackageId != '') {
  11. logger.warn('Package for current module: ' + modulePackageId)
  12. kotlinOptions.freeCompilerArgs += ['-module-name', modulePackageId]
  13. } else {
  14. logger.warn('Skipping setting compiler module name, no package to use.')
  15. }
  16. }
  17. defaultConfig {
  18. minSdkVersion versions.minSdk
  19. targetSdkVersion versions.compileSdk
  20. versionCode versions.publishVersionCode
  21. versionName versions.publishVersion
  22. }
  23. sourceSets {
  24. main.res.srcDirs = [
  25. 'src/main/res',
  26. 'src/main/res-public'
  27. ]
  28. }
  29. }
  30. dependencies {
  31. api 'androidx.appcompat:appcompat:' + versions.androidxCore
  32. api 'androidx.annotation:annotation:' + versions.androidxAnnotation
  33. implementation 'androidx.recyclerview:recyclerview:' + versions.androidxRecyclerView
  34. implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk8:' + versions.kotlin
  35. }
  36. apply from: '../spotless.gradle'