build.gradle 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. // This buildscript{} block configures the code driving the build
  2. buildscript {
  3. /**
  4. * The nested repositories{} block declares that this build uses the
  5. * jcenter repository.
  6. */
  7. repositories {
  8. jcenter()
  9. google()
  10. }
  11. /**
  12. * This block declares a dependency on the 2.3.3 version
  13. * of the Gradle plugin for the buildscript.
  14. */
  15. dependencies {
  16. classpath 'com.android.tools.build:gradle:4.1.1'
  17. }
  18. }
  19. allprojects {
  20. repositories {
  21. google()
  22. jcenter()
  23. }
  24. }
  25. apply plugin: 'com.android.application'
  26. android {
  27. signingConfigs {
  28. config {
  29. keyAlias 'HDC_HN_RELEASE_KEY'
  30. keyPassword 'hdchnsys1776'
  31. storeFile file('../HDC_HN_RELEASE_KEY.jks')
  32. storePassword 'hdchnsys1776'
  33. }
  34. }
  35. compileSdkVersion 28
  36. defaultConfig {
  37. applicationId "com.artncore.managersetting"
  38. minSdkVersion 19 // 방문객원격통화 API 적용으로 upgrade
  39. targetSdkVersion 19
  40. }
  41. applicationVariants.all { variant ->
  42. variant.outputs.all { output ->
  43. outputFileName = new File("../", "ManagerSetting.apk")
  44. }
  45. }
  46. buildTypes {
  47. release {
  48. lintOptions {
  49. disable 'MissingTranslation'
  50. checkReleaseBuilds false
  51. abortOnError false
  52. }
  53. signingConfig signingConfigs.config
  54. // minifyEnabled true
  55. // proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  56. }
  57. release_secured {
  58. lintOptions {
  59. disable 'MissingTranslation'
  60. checkReleaseBuilds false
  61. abortOnError false
  62. }
  63. signingConfig signingConfigs.config
  64. minifyEnabled true
  65. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  66. }
  67. debug {
  68. signingConfig signingConfigs.config
  69. }
  70. }
  71. }
  72. dependencies {
  73. implementation 'androidx.legacy:legacy-support-v4:1.0.0'
  74. implementation files('libs/WallPadAPI.jar')
  75. implementation files('libs/WallPadSupport.jar')
  76. implementation files('libs\\WallPadAPI.jar')
  77. implementation files('libs\\WallPadAPI.jar')
  78. }