Guest User

Untitled

a guest
Jun 25th, 2018
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.35 KB | None | 0 0
  1. /*google play plugin for adMob*/
  2. compile 'com.google.android.gms:play-services:10.2.1'
  3.  
  4. compile 'com.android.support:appcompat-v7:26.+'
  5.  
  6. apply plugin: 'com.android.application'
  7.  
  8. android {
  9. compileSdkVersion 26
  10. buildToolsVersion "26.0.2"
  11. defaultConfig {
  12. applicationId "org.pctechtips.george.dailyquotes"
  13. minSdkVersion 16
  14. targetSdkVersion 26
  15. versionCode 1
  16. versionName "1.0"
  17. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  18. }
  19. buildTypes {
  20. release {
  21. minifyEnabled false
  22. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  23. }
  24. }
  25. }
  26.  
  27. dependencies {
  28. compile fileTree(dir: 'libs', include: ['*.jar'])
  29. androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
  30. exclude group: 'com.android.support', module: 'support-annotations'
  31. /*firebase */
  32. // compile 'com.google.firebase:firebase-core:10.2.1'
  33. })
  34. // compile 'com.android.support:appcompat-v7:21.0.3'
  35. compile 'com.android.support:appcompat-v7:26.+'
  36. compile 'com.android.support.constraint:constraint-layout:1.0.2'
  37. compile 'com.android.support:support-v4:26.+'
  38. testCompile 'junit:junit:4.12'
  39. /*google play plugin for adMob*/
  40. compile 'com.google.android.gms:play-services:10.2.1'
  41. }
Add Comment
Please, Sign In to add comment