Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2019
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.67 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2.  
  3. android {
  4. packagingOptions {
  5. exclude 'META-INF/DEPENDENCIES.txt'
  6. exclude 'META-INF/NOTICE'
  7. exclude 'META-INF/NOTICE.txt'
  8. exclude 'META-INF/LICENSE'
  9. exclude 'META-INF/LICENSE.txt'
  10. exclude 'META-INF/proguard/androidx-annotations.pro'
  11. }
  12. compileSdkVersion 28
  13. defaultConfig {
  14. applicationId "com.example.sskey.testserver"
  15. minSdkVersion 24
  16. targetSdkVersion 28
  17. versionCode 1
  18. versionName "1.0"
  19. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  20. vectorDrawables.useSupportLibrary = true
  21. }
  22. buildTypes {
  23. release {
  24. minifyEnabled false
  25. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  26. }
  27. }
  28. }
  29.  
  30. dependencies {
  31. implementation fileTree(include: ['*.jar'], dir: 'libs')
  32. implementation 'com.android.support:appcompat-v7:28.0.0'
  33. implementation 'com.android.support.constraint:constraint-layout:1.1.3'
  34. implementation 'com.android.support:design:28.0.0'
  35. implementation 'com.android.support:recyclerview-v7:28.0.0'
  36. implementation 'com.android.support:cardview-v7:28.0.0'
  37. implementation 'com.jakewharton:butterknife:8.8.1'
  38. // Retrofit
  39. implementation 'com.squareup.retrofit2:retrofit:2.1.0'
  40. // JSON Parsing
  41. implementation 'com.google.code.gson:gson:2.6.1'
  42. implementation 'com.squareup.retrofit2:converter-gson:2.1.0'
  43. implementation 'com.android.support:support-v4:28.0.0'
  44. implementation 'com.google.android.gms:play-services-maps:16.0.0'
  45. implementation "com.google.android.gms:play-services-location:16.0.0"
  46.  
  47. annotationProcessor 'com.jakewharton:butterknife-compiler:8.8.1'
  48. // Pinview
  49. implementation 'com.github.GoodieBag:Pinview:v1.3'
  50. implementation 'com.cepheuen.elegant-number-button:lib:1.0.2'
  51. implementation 'com.github.d-max:spots-dialog:0.7@aar'
  52. implementation 'com.rengwuxian.materialedittext:library:2.1.4'
  53. implementation 'com.szagurskii:patternedtextwatcher:0.5.0'
  54. testImplementation 'junit:junit:4.12'
  55. androidTestImplementation 'com.android.support.test:runner:1.0.2'
  56. androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
  57. implementation 'com.stepstone.apprating:app-rating:2.3.0'
  58. implementation 'com.android.support:design:28.0.0'
  59. implementation 'com.github.PhilJay:MPAndroidChart:v3.1.0-alpha'
  60. implementation 'com.google.firebase:firebase-messaging:17.3.4'
  61. implementation 'com.google.firebase:firebase-core:16.0.1'
  62. }
  63. apply plugin: 'com.google.gms.google-services'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement