build.gradle 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. apply plugin: 'com.android.application'
  2. android {
  3. dexOptions {
  4. javaMaxHeapSize "2048M"
  5. jumboMode = true
  6. }
  7. compileSdkVersion 25
  8. buildToolsVersion "25.0.2"
  9. defaultConfig {
  10. multiDexEnabled true
  11. applicationId "kr.co.zumo.app"
  12. minSdkVersion 19
  13. targetSdkVersion 25
  14. versionCode 139
  15. versionName "2.92"
  16. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  17. }
  18. buildTypes {
  19. release {
  20. minifyEnabled false
  21. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  22. }
  23. }
  24. productFlavors {
  25. dev {
  26. }
  27. product {
  28. }
  29. }
  30. packagingOptions {
  31. exclude 'META-INF/NOTICE'
  32. exclude 'META-INF/LICENSE'
  33. exclude 'META-INF/DEPENDENCIES'
  34. exclude 'META-INF/LICENSE'
  35. exclude 'META-INF/LICENSE.txt'
  36. exclude 'META-INF/license.txt'
  37. exclude 'META-INF/NOTICE'
  38. exclude 'META-INF/NOTICE.txt'
  39. exclude 'META-INF/notice.txt'
  40. exclude 'META-INF/ASL2.0'
  41. exclude 'META-INF/services/javax.annotation.processing.Processor'
  42. }
  43. }
  44. dependencies {
  45. compile fileTree(include: ['*.jar'], dir: 'libs')
  46. androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
  47. exclude group: 'com.android.support', module: 'support-annotations'
  48. })
  49. compile files('libs/jpp_plugin.jar')
  50. compile files('libs/gcm.jar')
  51. compile group: 'com.kakao.sdk', name: 'usermgmt', version: project.KAKAO_SDK_VERSION
  52. compile group: 'com.kakao.sdk', name: 'kakaolink', version: project.KAKAO_SDK_VERSION
  53. compile group: 'com.kakao.sdk', name: 'kakaotalk', version: project.KAKAO_SDK_VERSION
  54. compile files('libs/3rdparty_login_library_android_4.1.4.jar')
  55. compile files('libs/XASAPI-nonidentifer-4.1.5.21.jar')
  56. compile project(':xecureSmartSample')
  57. compile project(':likebutton')
  58. compile 'com.android.support:appcompat-v7:25.3.1'
  59. compile 'com.android.support.constraint:constraint-layout:1.0.2'
  60. compile 'com.facebook.android:facebook-android-sdk:4.26.0'
  61. compile 'com.google.android.gms:play-services-auth:11.0.1'
  62. compile 'com.fasterxml.jackson.core:jackson-databind:2.9.0.pr4'
  63. compile 'com.squareup.okhttp3:okhttp:3.9.0'
  64. compile 'com.android.support:multidex:1.0.0'
  65. compile 'com.android.support:design:25.3.1'
  66. compile 'com.github.bumptech.glide:glide:3.7.+'
  67. compile 'com.android.support:support-v4:25.3.1'
  68. compile 'com.android.support:recyclerview-v7:25.3.1'
  69. testCompile 'junit:junit:4.12'
  70. }