| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- apply plugin: 'com.android.application'
- android {
- dexOptions {
- javaMaxHeapSize "2048M"
- jumboMode = true
- }
- compileSdkVersion 25
- buildToolsVersion "25.0.2"
- defaultConfig {
- multiDexEnabled true
- applicationId "kr.co.zumo.app"
- minSdkVersion 19
- targetSdkVersion 25
- versionCode 139
- versionName "2.92"
- testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- }
- productFlavors {
- dev {
- }
- product {
- }
- }
- packagingOptions {
- exclude 'META-INF/NOTICE'
- exclude 'META-INF/LICENSE'
- exclude 'META-INF/DEPENDENCIES'
- exclude 'META-INF/LICENSE'
- exclude 'META-INF/LICENSE.txt'
- exclude 'META-INF/license.txt'
- exclude 'META-INF/NOTICE'
- exclude 'META-INF/NOTICE.txt'
- exclude 'META-INF/notice.txt'
- exclude 'META-INF/ASL2.0'
- exclude 'META-INF/services/javax.annotation.processing.Processor'
- }
- }
- dependencies {
- compile fileTree(include: ['*.jar'], dir: 'libs')
- androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
- exclude group: 'com.android.support', module: 'support-annotations'
- })
- compile files('libs/jpp_plugin.jar')
- compile files('libs/gcm.jar')
- compile group: 'com.kakao.sdk', name: 'usermgmt', version: project.KAKAO_SDK_VERSION
- compile group: 'com.kakao.sdk', name: 'kakaolink', version: project.KAKAO_SDK_VERSION
- compile group: 'com.kakao.sdk', name: 'kakaotalk', version: project.KAKAO_SDK_VERSION
- compile files('libs/3rdparty_login_library_android_4.1.4.jar')
- compile files('libs/XASAPI-nonidentifer-4.1.5.21.jar')
- compile project(':xecureSmartSample')
- compile project(':likebutton')
- compile 'com.android.support:appcompat-v7:25.3.1'
- compile 'com.android.support.constraint:constraint-layout:1.0.2'
- compile 'com.facebook.android:facebook-android-sdk:4.26.0'
- compile 'com.google.android.gms:play-services-auth:11.0.1'
- compile 'com.fasterxml.jackson.core:jackson-databind:2.9.0.pr4'
- compile 'com.squareup.okhttp3:okhttp:3.9.0'
- compile 'com.android.support:multidex:1.0.0'
- compile 'com.android.support:design:25.3.1'
- compile 'com.github.bumptech.glide:glide:3.7.+'
- compile 'com.android.support:support-v4:25.3.1'
- compile 'com.android.support:recyclerview-v7:25.3.1'
- testCompile 'junit:junit:4.12'
- }
|