Advertisement
Guest User

Untitled

a guest
Jul 16th, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.18 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2.  
  3. android {
  4. compileSdkVersion 28
  5. defaultConfig {
  6. applicationId "com.example.jadwalsholatku"
  7. minSdkVersion 21
  8. targetSdkVersion 28
  9. versionCode 1
  10. versionName "1.0"
  11. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  12. }
  13. buildTypes {
  14. release {
  15. minifyEnabled false
  16. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  17. }
  18. }
  19. }
  20.  
  21. dependencies {
  22. implementation fileTree(dir: 'libs', include: ['*.jar'])
  23. implementation 'com.android.support:appcompat-v7:28.0.0'
  24. implementation 'com.android.support.constraint:constraint-layout:1.1.3'
  25.  
  26. implementation 'com.google.code.gson:gson:2.8.5'
  27. implementation 'com.squareup.retrofit2:retrofit:2.4.0'
  28. implementation 'com.squareup.retrofit2:converter-gson:2.3.0'
  29. implementation 'com.android.support:design:28.0.0'
  30.  
  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. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement