Advertisement
Guest User

Untitled

a guest
Jul 25th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.47 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2.  
  3. android {
  4. compileSdkVersion 25
  5. buildToolsVersion "25.0.2"
  6. useLibrary 'org.apache.http.legacy'
  7. defaultConfig {
  8. applicationId "es.aandg.demo"
  9. minSdkVersion 21
  10. targetSdkVersion 25
  11. versionCode 2
  12. versionName "1.01"
  13. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  14. }
  15. buildTypes {
  16. release {
  17. minifyEnabled false
  18. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  19. }
  20. }
  21. }
  22.  
  23. dependencies {
  24. compile fileTree(dir: 'libs', include: ['*.jar'])
  25. androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2',
  26. {
  27. exclude group: 'com.android.support', module: 'support-annotations'
  28. })
  29. compile fileTree(dir: 'libs', include: ['*.jar'])
  30.  
  31. compile 'com.android.support:appcompat-v7:25.3.1'
  32. compile 'com.android.support.constraint:constraint-layout:1.0.0-beta4'
  33. compile 'com.android.support:design:25.3.1'
  34. compile 'com.android.support:cardview-v7:25.3.1'
  35. compile 'com.android.support:recyclerview-v7:25.3.1'
  36. compile 'com.google.firebase:firebase-auth:9.0.2'
  37. compile 'com.google.firebase:firebase-messaging:9.0.2'
  38. compile 'com.github.bumptech.glide:glide:3.6.0'
  39. compile 'com.github.jd-alexander:LikeButton:0.2.1'
  40. compile 'com.squareup.okhttp3:okhttp:3.8.1'
  41. compile group: 'org.apache.httpcomponents', name: 'httpclient', version:
  42. '4.5.3'
  43. testCompile 'junit:junit:4.12'
  44. }
  45.  
  46. apply plugin: 'com.google.gms.google-services'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement