build.gradle 935 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. plugins {
  2. id 'com.android.library'
  3. }
  4. android {
  5. namespace 'com.benyanyi.crashlib'
  6. compileSdk 28
  7. defaultConfig {
  8. minSdk 21
  9. targetSdk 28
  10. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  11. consumerProguardFiles "consumer-rules.pro"
  12. }
  13. buildTypes {
  14. release {
  15. minifyEnabled false
  16. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  17. }
  18. }
  19. compileOptions {
  20. sourceCompatibility JavaVersion.VERSION_1_8
  21. targetCompatibility JavaVersion.VERSION_1_8
  22. }
  23. }
  24. dependencies {
  25. implementation 'androidx.recyclerview:recyclerview:1.0.0'
  26. implementation 'androidx.appcompat:appcompat:1.0.0'
  27. implementation 'com.google.android.material:material:1.0.0'
  28. testImplementation 'junit:junit:4.12'
  29. }
  30. apply from: 'bintrayUpload.gradle'
  31. repositories {
  32. mavenCentral()
  33. }