build.gradle 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. apply plugin: 'com.android.application'
  2. android {
  3. dexOptions {
  4. javaMaxHeapSize "2048M"
  5. jumboMode = true
  6. }
  7. compileSdkVersion 26
  8. buildToolsVersion "26.0.0"
  9. defaultConfig {
  10. multiDexEnabled true
  11. applicationId "kr.co.zumo.app"
  12. minSdkVersion 19
  13. targetSdkVersion 26
  14. versionCode 140
  15. versionName "2.93"
  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:26.+'
  59. compile 'com.facebook.android:facebook-android-sdk:4.26.0'
  60. compile 'com.google.android.gms:play-services-auth:11.0.1'
  61. compile 'com.fasterxml.jackson.core:jackson-databind:2.9.0.pr4'
  62. compile 'com.squareup.okhttp3:okhttp:3.9.0'
  63. compile 'com.android.support:multidex:1.0.0'
  64. compile 'com.android.support:design:26.+'
  65. compile 'com.github.bumptech.glide:glide:3.7.+'
  66. compile 'com.android.support:support-v4:26.+'
  67. compile 'com.android.support:recyclerview-v7:26.+'
  68. compile 'org.jsoup:jsoup:1.10.3'
  69. compile 'com.android.support.constraint:constraint-layout:1.0.2'
  70. compile 'com.appsflyer:af-android-sdk:4+@aar'
  71. testCompile 'junit:junit:4.12'
  72. compile 'com.google.android.gms:play-services-analytics:11.0.1'
  73. }