Advertisement
Guest User

Untitled

a guest
May 26th, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2.  
  3. android {
  4. compileSdkVersion 23
  5. buildToolsVersion '25.0.0'
  6.  
  7. defaultConfig {
  8. applicationId "example.comtest.cloudsensor_android"
  9. minSdkVersion 19
  10. targetSdkVersion 23
  11. versionCode 1
  12. versionName "1.0"
  13. }
  14. buildTypes {
  15. release {
  16. minifyEnabled false
  17. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  18. }
  19. }
  20. }
  21.  
  22. dependencies {
  23. compile fileTree(dir: 'libs', include: ['*.jar'])
  24.  
  25. compile 'com.android.support:appcompat-v7:23.3.0'
  26. compile 'com.google.android.gms:play-services-auth:9.8.0'
  27. compile 'com.github.bumptech.glide:glide:3.7.0'
  28. compile 'com.android.support:design:23.0.0'
  29. compile 'com.android.support.constraint:constraint-layout:1.0.2'
  30. testCompile 'junit:junit:4.12'
  31. }
  32. apply plugin: 'com.google.gms.google-services'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement