build.gradle 752 B

1234567891011121314151617181920212223242526272829
  1. apply plugin: 'com.android.library'
  2. apply from: 'library.gradle'
  3. android {
  4. compileSdkVersion 30
  5. buildToolsVersion "31.0.0-rc3"
  6. defaultConfig {
  7. minSdkVersion 14
  8. targetSdkVersion 30
  9. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  10. }
  11. buildTypes {
  12. release {
  13. minifyEnabled false
  14. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  15. }
  16. }
  17. }
  18. dependencies {
  19. api fileTree(dir: 'libs', include: ['*.jar'])
  20. androidTestImplementation('androidx.test.espresso:espresso-core:3.3.0-alpha02', {
  21. exclude group: 'com.android.support', module: 'support-annotations'
  22. })
  23. testImplementation 'junit:junit:4.12'
  24. }