SDK Integration
PointPub SDK 설정 및 관련 작업을 진행합니다.
0. 최소 지원 사양
1. Android SDK 추가
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven { url "https://jitpack.io"} // 추가
}
}<application
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/Theme.Test">
<activity
android:name="kr.pointpub.sample.MainActivity"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<!-- PointPub APP ID 필수 입력 -->
<meta-data
android:name="pointpub_app_id"
android:value="your_app_id" />
</application>2. 광고 목록 노출
3. 가상화폐
1) 가상화폐 조회
2) 가상화폐 사용
4. 콜백 파라미터
Last updated