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

35 строки
1016 B

  1. apply plugin: 'com.android.library'
  2. //apply plugin: 'com.github.dcendents.android-maven'
  3. group='com.github.RmondJone'
  4. android {
  5. compileSdkVersion 25
  6. buildToolsVersion "25.0.0"
  7. defaultConfig {
  8. minSdkVersion 11
  9. targetSdkVersion 25
  10. versionCode 1
  11. versionName "1.0"
  12. // testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  13. }
  14. buildTypes {
  15. release {
  16. minifyEnabled false
  17. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  18. }
  19. }
  20. }
  21. dependencies {
  22. compile fileTree(dir: 'libs', include: ['*.jar'])
  23. // androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
  24. // exclude group: 'com.android.support', module: 'support-annotations'
  25. // })
  26. compile 'com.android.support:appcompat-v7:25.0.0'
  27. compile 'com.android.support:recyclerview-v7:25.0.0'
  28. compile 'com.android.support:design:25.0.0'
  29. testCompile 'junit:junit:4.12'
  30. }