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.

build.gradle 1017B

1234567891011121314151617181920212223242526272829303132333435
  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.jakewharton:butterknife:8.0.1'
  27. apt 'com.jakewharton:butterknife-compiler:8.0.1'
  28. compile project(path: ':luticateutils')
  29. compile 'com.amulyakhare:com.amulyakhare.textdrawable:1.0.1'
  30. compile 'net.danlew:android.joda:2.9.4.2'
  31. }