Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2020
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.87 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2.  
  3. android {
  4. compileSdkVersion 28
  5. defaultConfig {
  6. applicationId "com.avaskov.kstovohackaton"
  7. minSdkVersion 23
  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. compileOptions {
  20. sourceCompatibility JavaVersion.VERSION_1_8
  21. targetCompatibility JavaVersion.VERSION_1_8
  22. }
  23. repositories {
  24. flatDir {
  25. dirs 'libs'
  26. }
  27. }
  28. configurations {
  29. compile.exclude group: "junit", module: "junit"
  30. }
  31. }
  32.  
  33. dependencies {
  34. implementation fileTree(dir: 'libs', include: ['*.jar'])
  35. implementation 'androidx.recyclerview:recyclerview:1.0.0'
  36. implementation 'com.google.code.gson:gson:2.8.5'
  37. implementation 'com.googlecode.json-simple:json-simple:1.1.1'
  38. implementation 'androidx.appcompat:appcompat:1.1.0'
  39. implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
  40. implementation 'com.google.android.material:material:1.0.0'
  41.  
  42. // ButterKnife
  43. implementation 'com.jakewharton:butterknife:10.1.0'
  44. annotationProcessor 'com.jakewharton:butterknife-compiler:10.1.0'
  45.  
  46. // Dagger
  47. implementation 'com.google.dagger:dagger:2.18'
  48. annotationProcessor 'com.google.dagger:dagger-compiler:2.18'
  49.  
  50. // Glider
  51. implementation 'com.github.bumptech.glide:glide:4.9.0'
  52. annotationProcessor 'com.github.bumptech.glide:compiler:4.9.0'
  53.  
  54. //HERE
  55. implementation(name:'HERE-sdk', ext:'aar')
  56. implementation 'org.locationtech.jts:jts-core:1.15.0'
  57.  
  58. //VK
  59. implementation 'com.vk:androidsdk:1.6.7'
  60. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement