Guest User

Untitled

a guest
Nov 18th, 2017
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.67 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2.  
  3. android {
  4. compileSdkVersion 26
  5. buildToolsVersion '26.0.2'
  6. defaultConfig {
  7. applicationId "com.example.lado.chatapp"
  8. minSdkVersion 21
  9. targetSdkVersion 26
  10. versionCode 1
  11. versionName "1.0"
  12. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  13. }
  14. buildTypes {
  15. release {
  16. minifyEnabled false
  17. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  18. }
  19. }
  20. sourceSets{
  21. main{
  22. jniLibs.srcDirs = ['libs']
  23. }
  24. }
  25. packagingOptions {
  26. exclude 'META-INF/DEPENDENCIES.txt'
  27. exclude 'META-INF/LICENSE.txt'
  28. exclude 'META-INF/NOTICE.txt'
  29. exclude 'META-INF/NOTICE'
  30. exclude 'META-INF/LICENSE'
  31. exclude 'META-INF/DEPENDENCIES'
  32. exclude 'META-INF/notice.txt'
  33. exclude 'META-INF/license.txt'
  34. exclude 'META-INF/dependencies.txt'
  35. exclude 'META-INF/LGPL2.1'
  36. }
  37. }
  38.  
  39. dependencies {
  40. compile fileTree(dir: 'libs', include: ['*.jar'])
  41. androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
  42. exclude group: 'com.android.support', module: 'support-annotations'
  43. })
  44. compile 'com.android.support:appcompat-v7:26.+'
  45. compile 'com.android.support.constraint:constraint-layout:1.0.2'
  46. compile 'com.google.firebase:firebase-messaging:10.0.1'
  47. compile 'com.android.volley:volley:1.0.0'
  48. compile 'com.google.firebase:firebase-database:10.0.1'
  49. compile 'com.google.firebase:firebase-auth:10.0.1'
  50. compile 'com.firebase:firebase-client-android:2.5.2'
  51. compile 'com.google.firebase:firebase-storage:10.0.1'
  52.  
  53. compile 'com.github.liuguangqiang.swipeback:library:1.0.2@aar'
  54. testCompile 'junit:junit:4.12'
  55. }
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62. apply plugin: 'com.google.gms.google-services'
Add Comment
Please, Sign In to add comment