Skip to content

Live 설정

Gyeonghwan edited this page Sep 26, 2017 · 1 revision

1. Android Studio 프로젝트로 export 합니다.

2. libs/ 폴더에 제공한 라이브러리를 복사합니다.

3. build.gradle 파일에 아래 설정을 추가합니다.

android {
  defaultConfig {
    ndk {
      abiFilters 'armeabi-v7a', 'x86'
    }
  }
}

dependencies {
  compile fileTree(dir: 'libs', include: ['*.jar'])
  compile(name: 'cafeSdk-3.0.0', ext: 'aar')
  compile(name: 'kaleido-android-1.3.4-SNAPSHOT', ext: 'aar')
  compile(name: 'android-database-sqlcipher-3.5.7', ext: 'aar')
  compile(name: 'androidasync-2.2.1', ext: 'aar')
  compile(name: 'appcompat-v7-23.1.0', ext: 'aar')
}

4. 만약 multidex 오류가 발생한다면, 아래 설정을 추가합니다.

dependencies {
  compile 'com.android.support:multidex:1.0.1'
}

android {
  defaultConfig {
    multiDexEnabled true
  }
}
  • AndroidManifext.xml에 application 설정을 android.support.multidex.MultiDexApplication로 합니다.

Other NAVER CAFE SDK Documents.

Unity

Unreal

Cocos-2dx

iOS

Clone this wiki locally