build.gradle 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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. lintOptions {
  28. disable "ResourceType"
  29. checkReleaseBuilds false
  30. }
  31. sourceSets {
  32. main {
  33. jni.srcDirs = []
  34. }
  35. }
  36. signingConfigs {
  37. config {
  38. keyAlias 'HDC_HN_RELEASE_KEY'
  39. keyPassword 'hdchnsys1776'
  40. storeFile file('../HDC_HN_RELEASE_KEY.jks')
  41. storePassword 'hdchnsys1776'
  42. }
  43. }
  44. compileSdkVersion 28
  45. defaultConfig {
  46. applicationId "kr.co.icontrols.wallpadcall"
  47. minSdkVersion 19 // 방문객원격통화 API 적용으로 upgrade
  48. targetSdkVersion 19
  49. ndk {
  50. abiFilters "armeabi"
  51. }
  52. }
  53. applicationVariants.all { variant ->
  54. variant.outputs.all { output ->
  55. outputFileName = new File("../", "WallPadCall.apk")
  56. }
  57. }
  58. buildTypes {
  59. release {
  60. signingConfig signingConfigs.config
  61. }
  62. release_secured {
  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/bssofthns.jar')
  75. implementation files('libs/WallPadAPI.jar')
  76. implementation files('libs/WallPadSupport.jar')
  77. implementation files('libs/visitorcalllib-debug.aar')
  78. }