Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

32 строки
822 B

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