Guest User

Untitled

a guest
Nov 17th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.33 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2.  
  3. android {
  4. compileSdkVersion 27
  5. defaultConfig {
  6. applicationId "com.example.x.x"
  7. minSdkVersion 26
  8. targetSdkVersion 27
  9. versionCode 1
  10. versionName "1.0"
  11. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  12. renderscriptTargetApi 26
  13. renderscriptSupportModeEnabled true
  14. }
  15. buildTypes {
  16. release {
  17. minifyEnabled false
  18. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  19. }
  20. }
  21. }
  22.  
  23. dependencies {
  24. implementation fileTree(dir: 'libs', include: ['*.jar'])
  25. implementation 'com.google.firebase:firebase-admin:6.5.0'
  26. implementation 'com.android.support:cardview-v7:27.1.1'
  27. implementation 'com.android.support:appcompat-v7:27.1.1'
  28. implementation 'com.android.support.constraint:constraint-layout:1.1.3'
  29. implementation 'com.android.support:support-v4:27.1.1'
  30. implementation 'com.android.support:design:27.1.1'
  31. testImplementation 'junit:junit:4.12'
  32. androidTestImplementation 'com.android.support.test:runner:1.0.2'
  33. androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
  34.  
  35. implementation 'com.github.mancj:MaterialSearchBar:0.7.6'
  36.  
  37. annotationProcessor 'com.google.auto.value:auto-value:1.4'
  38. }
Add Comment
Please, Sign In to add comment