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

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. apply plugin: 'com.android.application'
  2. apply plugin: 'android-apt'
  3. android {
  4. compileSdkVersion 23
  5. buildToolsVersion "23.0.3"
  6. dexOptions {
  7. javaMaxHeapSize "2048M"
  8. }
  9. defaultConfig {
  10. applicationId "com.rthoni.stssaguenay"
  11. minSdkVersion 15
  12. targetSdkVersion 23
  13. versionCode 1
  14. versionName "1.0"
  15. multiDexEnabled true
  16. }
  17. buildTypes {
  18. release {
  19. minifyEnabled false
  20. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  21. }
  22. }
  23. productFlavors {
  24. main {
  25. }
  26. dev {
  27. applicationId "com.rthoni.stssaguenay.dev"
  28. versionName "1.0-dev"
  29. minSdkVersion 21
  30. }
  31. devlocal {
  32. applicationId "com.rthoni.stssaguenay.devlocal"
  33. versionName "1.0-devlocal"
  34. minSdkVersion 21
  35. }
  36. }
  37. }
  38. dependencies {
  39. compile fileTree(dir: 'libs', include: ['*.jar'])
  40. testCompile 'junit:junit:4.12'
  41. compile 'com.android.support:appcompat-v7:23.4.0'
  42. compile 'com.android.support:support-annotations:23.4.0'
  43. compile 'com.android.support:design:23.4.0'
  44. compile 'com.jakewharton:butterknife:8.0.1'
  45. apt 'com.jakewharton:butterknife-compiler:8.0.1'
  46. compile 'com.luticate:utils:0.2.0'
  47. compile 'com.amulyakhare:com.amulyakhare.textdrawable:1.0.1'
  48. compile 'com.google.firebase:firebase-ads:9.6.1'
  49. compile 'com.facebook.android:facebook-android-sdk:4.5.0'
  50. compile 'com.github.simbiose:Encryption:1.4.0'
  51. compile 'com.google.android.gms:play-services:9.6.1'
  52. compile 'com.android.support:multidex:1.0.1'
  53. compile 'com.google.maps.android:android-maps-utils:0.4+'
  54. compile 'com.github.clans:fab:1.6.4'
  55. }
  56. apply plugin: 'com.google.gms.google-services'