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

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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. multiDexEnabled true
  13. }
  14. buildTypes {
  15. release {
  16. minifyEnabled false
  17. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  18. }
  19. }
  20. productFlavors {
  21. main {
  22. }
  23. dev {
  24. applicationId "com.rthoni.stssaguenay.dev"
  25. versionName "1.0-dev"
  26. minSdkVersion 21
  27. }
  28. devlocal {
  29. applicationId "com.rthoni.stssaguenay.devlocal"
  30. versionName "1.0-devlocal"
  31. minSdkVersion 21
  32. }
  33. }
  34. }
  35. dependencies {
  36. compile fileTree(dir: 'libs', include: ['*.jar'])
  37. testCompile 'junit:junit:4.12'
  38. compile 'com.android.support:appcompat-v7:23.4.0'
  39. compile 'com.android.support:support-annotations:23.4.0'
  40. compile 'com.android.support:design:23.4.0'
  41. compile 'com.jakewharton:butterknife:8.0.1'
  42. apt 'com.jakewharton:butterknife-compiler:8.0.1'
  43. compile 'com.luticate:utils:0.2.0'
  44. compile 'com.amulyakhare:com.amulyakhare.textdrawable:1.0.1'
  45. compile 'com.google.firebase:firebase-ads:9.6.1'
  46. compile 'com.facebook.android:facebook-android-sdk:4.5.0'
  47. compile 'com.github.simbiose:Encryption:1.4.0'
  48. compile 'com.google.android.gms:play-services:9.6.1'
  49. compile 'com.android.support:multidex:1.0.1'
  50. compile 'com.google.maps.android:android-maps-utils:0.4+'
  51. compile 'com.github.clans:fab:1.6.4'
  52. }
  53. apply plugin: 'com.google.gms.google-services'