Guest User

Untitled

a guest
Mar 22nd, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.12 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2.  
  3. android {
  4. compileSdkVersion 27
  5. buildToolsVersion "27.0.1"
  6. defaultConfig {
  7. applicationId "com.landdrops.cricketfantacy.androidbottom"
  8. minSdkVersion 21
  9. targetSdkVersion 27
  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. }
  21.  
  22. dependencies {
  23. implementation fileTree(include: ['*.jar'], dir: 'libs')
  24. implementation 'com.android.support:appcompat-v7:27.0.1'
  25. implementation 'com.android.support:design:27.0.1'
  26. implementation 'com.android.support.constraint:constraint-layout:1.0.2'
  27. testImplementation 'junit:junit:4.12'
  28. androidTestImplementation 'com.android.support.test.runner:1.0.2'
  29. androidTestImplementation 'com.android.support.test.espresso:espresso-core:2.2.2'
  30. }
Add Comment
Please, Sign In to add comment