build.gradle 978 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. apply plugin: 'com.android.library'
  2. apply plugin: 'kotlin-android'
  3. android {
  4. compileSdkVersion 30
  5. defaultConfig {
  6. minSdkVersion 15
  7. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  8. }
  9. buildTypes {
  10. release {
  11. minifyEnabled false
  12. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  13. }
  14. }
  15. lintOptions {
  16. abortOnError false
  17. }
  18. }
  19. dependencies {
  20. implementation fileTree(dir: 'libs', include: ['*.jar'])
  21. implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
  22. implementation 'androidx.appcompat:appcompat:1.0.2'
  23. testImplementation 'junit:junit:4.12'
  24. androidTestImplementation 'androidx.test:runner:1.1.0'
  25. androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.0'
  26. implementation "androidx.core:core-ktx:1.5.0"
  27. implementation 'org.jetbrains.kotlin:kotlin-stdlib:1.5.30'
  28. }
  29. repositories {
  30. }