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

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