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

build.gradle 908B

123456789101112131415161718192021222324252627282930313233
  1. apply plugin: 'com.android.application'
  2. apply plugin: 'android-apt'
  3. android {
  4. compileSdkVersion 23
  5. buildToolsVersion "23.0.3"
  6. defaultConfig {
  7. applicationId "com.rthoni.stssaguenay"
  8. minSdkVersion 15
  9. targetSdkVersion 23
  10. versionCode 1
  11. versionName "1.0"
  12. }
  13. buildTypes {
  14. release {
  15. minifyEnabled false
  16. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  17. }
  18. }
  19. }
  20. dependencies {
  21. compile fileTree(dir: 'libs', include: ['*.jar'])
  22. testCompile 'junit:junit:4.12'
  23. compile 'com.android.support:appcompat-v7:23.4.0'
  24. compile 'com.android.support:support-annotations:23.4.0'
  25. compile 'com.android.support:design:23.4.0'
  26. compile 'com.android.volley:volley:1.0.0'
  27. compile 'com.jakewharton:butterknife:8.0.1'
  28. apt 'com.jakewharton:butterknife-compiler:8.0.1'
  29. }