build.gradle.bak 520 B

12345678910111213141516171819202122232425
  1. apply plugin: 'com.android.library'
  2. android {
  3. compileSdkVersion 25
  4. buildToolsVersion '25.0.2'
  5. defaultConfig {
  6. minSdkVersion 15
  7. targetSdkVersion 25
  8. versionCode 6
  9. versionName "1.0.1"
  10. }
  11. buildTypes {
  12. release {
  13. minifyEnabled false
  14. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  15. }
  16. }
  17. }
  18. dependencies {
  19. compile fileTree(include: ['*.jar'], dir: 'libs')
  20. testCompile 'junit:junit:4.12'
  21. }