kiojiotisha

Untitled

Jul 15th, 2019
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.18 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2.  
  3. android {
  4. compileSdkVersion 26
  5. buildToolsVersion '26.0.3'
  6.  
  7. defaultConfig {
  8. applicationId "com.goexpress.godriver"
  9. minSdkVersion 17
  10. targetSdkVersion 26
  11. multiDexEnabled = true
  12. }
  13. buildTypes {
  14. //release {
  15. // minifyEnabled true
  16. // proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  17. //}
  18. }
  19. sourceSets {
  20. dexOptions {
  21. javaMaxHeapSize "4g"
  22. }
  23. }
  24. compileOptions {
  25. sourceCompatibility JavaVersion.VERSION_1_8
  26. targetCompatibility JavaVersion.VERSION_1_8
  27. }
  28. }
  29.  
  30. dependencies {
  31. compile 'com.ebanx:swipe-button:0.4.0'
  32. compile 'com.googlecode.libphonenumber:libphonenumber:6.2'
  33. compile fileTree(dir: 'libs', include: ['*.jar'])
  34. testCompile 'junit:junit:4.12'
  35. compile 'com.android.support:appcompat-v7:23.1.0'
  36. compile 'com.android.support:design:23.1.0'
  37. compile 'com.android.support:recyclerview-v7:23.1.0'
  38. compile 'com.android.support:cardview-v7:23.1.0'
  39. compile 'com.google.android.gms:play-services:10.2.0'
  40. compile 'com.google.maps.android:android-maps-utils:0.4+'
  41. compile 'com.squareup.okhttp3:okhttp:3.2.0'
  42. compile 'com.android.volley:volley:1.0.0'
  43. compile 'org.json:json:20140107'
  44. compile 'com.journeyapps:zxing-android-embedded:3.4.0'
  45. compile 'com.google.zxing:core:3.2.1'
  46. compile 'com.google.firebase:firebase-messaging:9.0.0'
  47. compile 'com.android.support:multidex:1.0.1'
  48. compile ('io.socket:socket.io-client:1.0.0') {
  49. exclude group: 'org.json', module: 'json'
  50. }
  51. compile ('com.mapbox.mapboxsdk:mapbox-android-sdk:6.4.0'){
  52. transitive=true
  53. }
  54. compile ('com.mapbox.mapboxsdk:mapbox-android-navigation-ui:0.18.0'){
  55. transitive=true
  56. }
  57. compile ('com.mapbox.mapboxsdk:mapbox-android-plugin-offline:0.2.0')
  58. compile('com.mapbox.mapboxsdk:mapbox-android-services:2.1.0@aar') {
  59. transitive = true
  60. }
  61. compile('com.mapbox.mapboxsdk:mapbox-android-plugin-traffic:0.6.0')
  62. }
  63.  
  64. //Add this line
  65. apply plugin: 'com.google.gms.google-services'
Add Comment
Please, Sign In to add comment