build.gradle 595 B

12345678910111213141516171819202122232425
  1. apply plugin: 'com.android.library'
  2. //apply plugin: 'com.novoda.bintray-release'
  3. android {
  4. compileSdkVersion 25
  5. buildToolsVersion '27.0.3'
  6. defaultConfig {
  7. minSdkVersion 10
  8. targetSdkVersion 25
  9. versionCode 1
  10. versionName "1.0"
  11. }
  12. buildTypes {
  13. release {
  14. minifyEnabled false
  15. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  16. }
  17. }
  18. }
  19. dependencies {
  20. implementation fileTree(include: ['*.jar'], dir: 'libs')
  21. implementation 'androidx.legacy:legacy-support-v4:1.0.0'
  22. }