build.gradle 719 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. plugins {
  2. id 'com.android.library'
  3. id 'kotlin-android'
  4. }
  5. android {
  6. compileSdkVersion COMPILE_SDK_VERSION
  7. buildToolsVersion BUILD_TOOLS_VERSION
  8. defaultConfig {
  9. minSdkVersion MIN_SDK_VERSION
  10. targetSdkVersion TARGET_SDK_VERSION
  11. }
  12. buildTypes {
  13. release {
  14. minifyEnabled MINIFY_ENABLE
  15. proguardFiles 'proguard-rules.pro'
  16. }
  17. }
  18. buildFeatures {
  19. buildConfig = false
  20. }
  21. lintOptions {
  22. abortOnError false
  23. }
  24. repositories {
  25. flatDir {
  26. dirs 'libs'
  27. }
  28. }
  29. dexOptions {
  30. preDexLibraries = false
  31. }
  32. }
  33. dependencies {
  34. implementation 'androidx.core:core-ktx:1.3.2'
  35. }