Advertisement
Guest User

Untitled

a guest
Oct 17th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.24 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2.  
  3. apply plugin: 'kotlin-android'
  4.  
  5. apply plugin: 'kotlin-android-extensions'
  6.  
  7. android {
  8. compileSdkVersion 28
  9. defaultConfig {
  10. applicationId "com.agungbesti.bola"
  11. minSdkVersion 27
  12. targetSdkVersion 28
  13. versionCode 1
  14. versionName "1.0"
  15. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  16. }
  17. buildTypes {
  18. release {
  19. minifyEnabled false
  20. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  21. }
  22. }
  23. }
  24.  
  25. dependencies {
  26. implementation fileTree(dir: 'libs', include: ['*.jar'])
  27. implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
  28. //noinspection GradleCompatible
  29. implementation 'com.android.support:appcompat-v7:28.0.0'
  30. implementation 'com.android.support.constraint:constraint-layout:1.1.3'
  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. implementation 'com.android.support:recyclerview-v7:28.0.0'
  35. implementation 'com.squareup.picasso:picasso:2.71828'
  36. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement