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 1.2KB

123456789101112131415161718192021222324252627282930313233343536373839
  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. compile 'com.google.firebase:firebase-ads:9.6.1'
  32. compile 'com.facebook.android:facebook-android-sdk:4.5.0'
  33. compile 'com.github.simbiose:Encryption:1.4.0'
  34. }
  35. apply plugin: 'com.google.gms.google-services'