build.gradle.bak 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. buildscript {
  2. repositories {
  3. jcenter() // or mavenCentral()
  4. google()
  5. }
  6. dependencies {
  7. classpath 'com.android.tools.build:gradle:4.0.2'
  8. }
  9. }
  10. allprojects {
  11. repositories {
  12. jcenter()
  13. google()
  14. }
  15. }
  16. apply plugin: 'com.android.application'
  17. android {
  18. splits {
  19. abi {
  20. enable true
  21. reset()
  22. include 'armeabi-v7a'
  23. }
  24. }
  25. lintOptions {
  26. disable "ResourceType"
  27. checkReleaseBuilds false
  28. }
  29. compileSdkVersion 23
  30. defaultConfig {
  31. applicationId "kr.co.icontrols.ilp300_700"
  32. minSdkVersion 19
  33. targetSdkVersion 19
  34. multiDexEnabled true
  35. ndk {
  36. moduleName "iLP300_700_JNI"
  37. }
  38. }
  39. signingConfigs {
  40. config {
  41. keyAlias 'HDC_HN_RELEASE_KEY'
  42. keyPassword 'hdchnsys1776'
  43. storeFile file('../HDC_HN_RELEASE_KEY.jks')
  44. storePassword 'hdchnsys1776'
  45. }
  46. }
  47. buildTypes {
  48. debug {
  49. signingConfig signingConfigs.config
  50. }
  51. release {
  52. signingConfig signingConfigs.config
  53. }
  54. release_secured {
  55. signingConfig signingConfigs.config
  56. minifyEnabled true
  57. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  58. }
  59. }
  60. applicationVariants.all { variant ->
  61. variant.outputs.all { output ->
  62. outputFileName = new File("../", "ILP300_700.apk");
  63. }
  64. }
  65. }
  66. dependencies {
  67. implementation 'com.android.support:support-v4:23.4.0'
  68. implementation files('libs/daum-speech-openapi-2.1.jar')
  69. implementation files('libs/iencryptor.jar')
  70. implementation files('libs/SttTTsAPI.jar')
  71. implementation files('libs/WallPadAPI.jar')
  72. implementation files('libs/WallPadSupport.jar')
  73. implementation files('libs/milsiplib.aar')
  74. }