From bf4917c2359297e64c41f8379fb4620fe6f197c9 Mon Sep 17 00:00:00 2001 From: sungju Yun Date: Wed, 10 Jul 2024 06:42:19 +0900 Subject: [PATCH] Added plugin-specific content to the QuickStart documentation. --- doc/QuickStart_en.md | 4 ++++ doc/QuickStart_kr.md | 36 ++++++++++++++++++++---------------- 2 files changed, 24 insertions(+), 16 deletions(-) diff --git a/doc/QuickStart_en.md b/doc/QuickStart_en.md index 77878f0..b01639b 100644 --- a/doc/QuickStart_en.md +++ b/doc/QuickStart_en.md @@ -46,6 +46,10 @@ You can add the Pallycon SDK to your development project by following these step 4. Apply the below configuration in build.gradle (app). ```gradle + plugins { + id 'kotlin-parcelize' + } + android { defaultConfig { minSdkVersion 21 diff --git a/doc/QuickStart_kr.md b/doc/QuickStart_kr.md index 20838e2..3e9cb43 100644 --- a/doc/QuickStart_kr.md +++ b/doc/QuickStart_kr.md @@ -45,22 +45,26 @@ 4. build.gradle (module)에 다음 사항을 반영합니다. - ```gradle - android { - defaultConfig { - minSdkVersion 21 - targetSdkVersion 33 - multiDexEnabled true - } + ```gradle + plugins { + id 'kotlin-parcelize' + } + + android { + defaultConfig { + minSdkVersion 21 + targetSdkVersion 33 + multiDexEnabled true + } - compileOptions { - sourceCompatibility JavaVersion.VERSION_1_8 - targetCompatibility JavaVersion.VERSION_1_8 - } - } + compileOptions { + sourceCompatibility JavaVersion.VERSION_1_8 + targetCompatibility JavaVersion.VERSION_1_8 + } + } - dependencies { - implementation 'androidx.core:core-ktx:1.8.0' + dependencies { + implementation 'androidx.core:core-ktx:1.8.0' implementation 'com.google.android.material:material:1.6.1' implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4' implementation 'androidx.appcompat:appcompat:1.4.2' @@ -86,8 +90,8 @@ // Secure implementation "androidx.security:security-crypto-ktx:1.1.0-alpha03" - } - ``` + } + ``` 5. MainActivity에 PallyConEventListener를 구현합니다. (샘플 소스 참조)