build.gradle 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. apply plugin: 'com.android.application'
  2. android {
  3. compileSdkVersion 26
  4. defaultConfig {
  5. applicationId "kr.co.hanwha.hifive"
  6. minSdkVersion 21
  7. targetSdkVersion 26
  8. versionCode 1
  9. versionName "0.1.0"
  10. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  11. buildConfigField "String", "DEV_URL", "\"https://qtalk-dev.dreamplus.center/newgw\""
  12. buildConfigField "String", "DEV_LOGIN_ID", "\"201703776\""
  13. }
  14. buildTypes {
  15. release {
  16. minifyEnabled false
  17. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  18. }
  19. }
  20. }
  21. dependencies {
  22. implementation fileTree(include: ['*.jar'], dir: 'libs')
  23. implementation 'com.android.support:appcompat-v7:26.1.0'
  24. implementation 'com.android.support.constraint:constraint-layout:1.0.2'
  25. testImplementation 'junit:junit:4.12'
  26. androidTestImplementation 'com.android.support.test:runner:1.0.1'
  27. androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
  28. /**
  29. * Network
  30. */
  31. compile 'com.squareup.okhttp3:okhttp:3.7.0'
  32. /**
  33. * Json
  34. */
  35. compile 'com.google.code.gson:gson:2.8.1'
  36. compile 'com.android.support:design:26.1.0'
  37. compile 'com.github.bumptech.glide:glide:3.+'
  38. }