build.gradle 860 B

123456789101112131415161718192021222324252627282930313233
  1. apply plugin: 'com.android.library'
  2. android {
  3. compileSdkVersion 33
  4. defaultConfig {
  5. minSdkVersion 19
  6. targetSdkVersion 33
  7. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  8. consumerProguardFiles "consumer-rules.pro"
  9. }
  10. buildTypes {
  11. release {
  12. minifyEnabled false
  13. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  14. }
  15. }
  16. }
  17. dependencies {
  18. implementation 'androidx.appcompat:appcompat:1.4.1'
  19. implementation 'com.google.android.material:material:1.5.0'
  20. testImplementation 'junit:junit:4.13.2'
  21. androidTestImplementation 'androidx.test.ext:junit:1.1.3'
  22. androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
  23. }
  24. apply from: 'bintrayUpload.gradle'
  25. repositories {
  26. mavenCentral()
  27. }