build.gradle 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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.6.0'
  10. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  11. // buildConfigField "String", "DEV_WEB_URL", "\"http://192.168.0.27:38999/b/v2/test/webview\""
  12. buildConfigField "String", "DEV_WEB_URL", "\"https://qtalk-dev.dreamplus.center/newgw/b/v2/test/webview\""
  13. buildConfigField "String", "DEV_URL", "\"https://qtalk-dev.dreamplus.center/newgw/a/v2\""
  14. buildConfigField "String", "LOCAL_URL", "\"http://192.168.0.35:38999/a/v2\""
  15. buildConfigField "String", "DEV_URL_OLD", "\"https://qtalk-dev.dreamplus.center/newgw\""
  16. buildConfigField "String", "DEV_LOGIN_ID", "\"201703776\""
  17. buildConfigField "String", "DOWNLOAD_URL", "\"http://qtalk.dreamplus.center/downloads/\""
  18. }
  19. buildTypes {
  20. release {
  21. minifyEnabled false
  22. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  23. }
  24. }
  25. }
  26. dependencies {
  27. implementation fileTree(include: ['*.jar'], dir: 'libs')
  28. implementation 'com.android.support:appcompat-v7:26.1.0'
  29. implementation 'com.android.support.constraint:constraint-layout:1.0.2'
  30. testImplementation 'junit:junit:4.12'
  31. androidTestImplementation 'com.android.support.test:runner:1.0.1'
  32. androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
  33. /**
  34. * Network
  35. */
  36. compile 'com.squareup.okhttp3:okhttp:3.7.0'
  37. /**
  38. * Json
  39. */
  40. compile 'com.google.code.gson:gson:2.8.1'
  41. compile 'com.android.support:design:26.1.0'
  42. compile 'com.github.bumptech.glide:glide:3.+'
  43. }