Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2018
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.39 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2.  
  3. android {
  4. signingConfigs {
  5. config {
  6. keyAlias 'UploaderAlias'
  7. keyPassword 'paswrd'
  8. storeFile file('C:/Users/jitendra/Downloads/wally-master/Uploader/config/Uploader.jks')
  9. storePassword 'paswrd'
  10. }
  11. }
  12. compileSdkVersion 27
  13. defaultConfig {
  14. applicationId "com.littleapps.uploader"
  15. minSdkVersion 20
  16. targetSdkVersion 27
  17. versionCode 1
  18. versionName "1.0"
  19. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  20. signingConfig signingConfigs.config
  21. }
  22. buildTypes {
  23. release {
  24. minifyEnabled true
  25. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  26. }
  27. }
  28. productFlavors {
  29. }
  30. }
  31.  
  32. dependencies {
  33. implementation fileTree(include: ['*.jar'], dir: 'libs')
  34. implementation 'com.android.support:appcompat-v7:27.0.2'
  35. implementation 'com.android.support.constraint:constraint-layout:1.0.2'
  36. implementation 'com.google.firebase:firebase-database:11.8.0'
  37. implementation 'com.google.firebase:firebase-storage:11.8.0'
  38. implementation 'com.google.firebase:firebase-auth:11.8.0'
  39. implementation 'com.github.bumptech.glide:glide:4.5.0'
  40. annotationProcessor 'com.github.bumptech.glide:compiler:4.5.0'
  41. }
  42. apply plugin: 'com.google.gms.google-services'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement