| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- apply plugin: 'com.android.application'
- android {
- dexOptions {
- javaMaxHeapSize "2048M"
- jumboMode = true
- }
- compileSdkVersion 26
- buildToolsVersion "26.0.0"
- defaultConfig {
- multiDexEnabled true
- applicationId "kr.co.zumo.app"
- minSdkVersion 19
- targetSdkVersion 26
- versionCode 140
- versionName "2.93"
- 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:26.+'
- 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:26.+'
- compile 'com.github.bumptech.glide:glide:3.7.+'
- compile 'com.android.support:support-v4:26.+'
- compile 'com.android.support:recyclerview-v7:26.+'
- compile 'org.jsoup:jsoup:1.10.3'
- compile 'com.android.support.constraint:constraint-layout:1.0.2'
- compile 'com.appsflyer:af-android-sdk:4+@aar'
- testCompile 'junit:junit:4.12'
- compile 'com.google.android.gms:play-services-analytics:11.0.1'
- }
|