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.5KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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. productFlavors {
  20. main {
  21. }
  22. dev {
  23. applicationId "com.rthoni.stssaguenay.dev"
  24. versionName "1.0-dev"
  25. }
  26. devlocal {
  27. applicationId "com.rthoni.stssaguenay.devlocal"
  28. versionName "1.0-devlocal"
  29. }
  30. }
  31. }
  32. dependencies {
  33. compile fileTree(dir: 'libs', include: ['*.jar'])
  34. testCompile 'junit:junit:4.12'
  35. compile 'com.android.support:appcompat-v7:23.4.0'
  36. compile 'com.android.support:support-annotations:23.4.0'
  37. compile 'com.android.support:design:23.4.0'
  38. compile 'com.jakewharton:butterknife:8.0.1'
  39. apt 'com.jakewharton:butterknife-compiler:8.0.1'
  40. compile project(path: ':luticateutils')
  41. compile 'com.amulyakhare:com.amulyakhare.textdrawable:1.0.1'
  42. compile 'net.danlew:android.joda:2.9.4.2'
  43. compile 'com.google.firebase:firebase-ads:9.6.1'
  44. compile 'com.facebook.android:facebook-android-sdk:4.5.0'
  45. compile 'com.github.simbiose:Encryption:1.4.0'
  46. }
  47. apply plugin: 'com.google.gms.google-services'