You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

33 lines
823 B

  1. apply plugin: 'com.android.library'
  2. android {
  3. compileSdkVersion 23
  4. buildToolsVersion '26.0.2'
  5. defaultConfig {
  6. minSdkVersion 17
  7. }
  8. buildTypes {
  9. debug {
  10. debuggable true
  11. minifyEnabled false
  12. // applicationVariants.all { variant ->
  13. // renameAPK(variant, defaultConfig, 'debug')
  14. // }
  15. }
  16. release {
  17. debuggable false
  18. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
  19. zipAlignEnabled true
  20. // applicationVariants.all { variant ->
  21. // renameAPK(variant, defaultConfig, 'release')
  22. // }
  23. }
  24. }
  25. }
  26. dependencies {
  27. compile 'com.android.support:support-v4:23.4.0'
  28. compile files('libs/JSR268Library.jar')
  29. }