Skip to content

Commit

Permalink
Added plugin-specific content to the QuickStart documentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
yuyu04 committed Jul 9, 2024
1 parent f7ce35a commit bf4917c
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 16 deletions.
4 changes: 4 additions & 0 deletions doc/QuickStart_en.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
36 changes: 20 additions & 16 deletions doc/QuickStart_kr.md
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand All @@ -86,8 +90,8 @@
// Secure
implementation "androidx.security:security-crypto-ktx:1.1.0-alpha03"
}
```
}
```

5. MainActivity에 PallyConEventListener를 구현합니다. (샘플 소스 참조)

Expand Down

0 comments on commit bf4917c

Please sign in to comment.