Skip to content

Translate update for Jun #307

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: alpha
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 13 additions & 3 deletions en/ios-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,15 +46,14 @@ Then, include corresponding SDK files to a target of your project.
| | GamebaseAuthTwitterAdapter.xcframework | | Supports Twitter login | iOS 12 or later |
| | GamebaseAuthLineAdapter.xcframework | LineSDK 5.11.0 | Supports LINE login | iOS 13 or later |
| | GamebaseAuthAppleidAdapter.xcframework | | Sign In with Apple | iOS 12 or later |
| | GamebaseAuthHangameAdapter.xcframework | HangameID SDK 1.8.6 | Supports Hangame login | iOS 12 or later |
| | GamebaseAuthHangameAdapter.xcframework | HangameID SDK 1.13.1 | Supports Hangame login | iOS 12 or later |
| | GamebaseAuthWeiboAdapter.xcframework | weibo_ios_sdk-3.3.4 | Supports Weibo login | iOS 12 or later |
| | GamebaseAuthKakaogameAdapter.xcframework | KakaoGame 3.17.5 | Supports Kakao login | iOS 12 or later |
| Gamebase IAP Adapters | GamebasePurchaseIAPAdapter.xcframework | StoreKit<br/>NHNCloudIAP 1.8.1 | Supports in-game purchase | iOS 12 or later |
| Gamebase Push Adapters | GamebasePushAdapter.xcframework | NHNCloudPush 1.8.1 | Supports Push | iOS 12 or later |


> <font color="red">[Caution]</font><br/>
>
>
> Gamebase SDK iOS 2.13.0 or later supports Sign In with Apple in iOS 9 or later, and additionally the Service ID needs to be set in the Gamebase Console.

Expand Down Expand Up @@ -106,7 +105,6 @@ By decompression, following SDKs will show, including Gamebase.xcframework.
![Other Linker Flags](https://static.toastoven.net/prod_gamebase/iOSDevelopersGuide/ios-developers-guide-installation-006_1.0.0.png)
* 6) When using NaverAuthAdapter, the **NaverThirdPartyLogin.xcframework** file provided by NAVER SDK should be added to **Target > Build Phases > Embeded Frameworks**.
![Naver Embeded Frameworks](https://static.toastoven.net/prod_gamebase/iOSDevelopersGuide/ios-developers-guide-started-001_2.59.0.png)
![Naver Embeded Frameworks](https://static.toastoven.net/prod_gamebase/iOSDevelopersGuide/ios-developers-guide-started-001_1.8.0.png)
* 7) When using LineAuthAdapter, the **LineSDK.xcframework** file provided by LINE SDK should be added to **Target > Build Phases > Embeded Frameworks**.
![LINE Embeded Frameworks](https://static.toastoven.net/prod_gamebase/iOSDevelopersGuide/ios-developers-guide-started-001_1.9.1.png)

Expand Down Expand Up @@ -138,6 +136,8 @@ You can set the Gamebase iOS SDK with CocoaPods.
platform :ios, '12.0'

target 'SampleApplication' do
use_frameworks!

pod 'Gamebase'
pod 'GamebaseAuthFacebookAdapter'
pod 'GamebaseAuthGamecenterAdapter'
Expand Down Expand Up @@ -205,6 +205,16 @@ end
</array>
```

* Register FacebookAppID, FacebookClientToken, FacebookDisplayName to the Info.plist file.
```
<key>FacebookAppID</key>
<string>{FACEBOOK_APP_ID}</string>
<key>FacebookClientToken</key>
<string>{FACEBOOK_CLIENT_TOKEN}</string>
<key>FacebookDisplayName</key>
<string>{FACEBOOK_DISPLAY_NAME}</string>
```

#### Google

* URL Scheme must be configured.
Expand Down
6 changes: 3 additions & 3 deletions en/release-notes-ios.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@
### 2.63.1 (2024. 05. 14.)
[SDK Download](https://static.toastoven.net/toastcloud/sdk_download/gamebase/v2.63.1/GamebaseSDK-iOS.zip)

#### 기능 개선/변경
* 외부 SDK 업데이트
#### Feature Updates
* External SDK update
* Hangame iOS SDK (1.13.1)
* 내부 로직 개선
* Improved internal logic

### 2.63.0 (2024. 04. 23.)
[SDK Download](https://static.toastoven.net/toastcloud/sdk_download/gamebase/v2.63.0/GamebaseSDK-iOS.zip)
Expand Down
13 changes: 13 additions & 0 deletions en/upgrade-guide.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
## Game > Gamebase > Upgrade Guide

## 2.63.0

### iOS

* With the Facebook SDK updated to 17.0.0, you need to add FacebookClientToken and FacebookDisplayName to the Info.plist file.

```
<key>FacebookClientToken</key>
<string>{FACEBOOK_CLIENT_TOKEN}</string>
<key>FacebookDisplayName</key>
<string>{FACEBOOK_DISPLAY_NAME}</string>
```

## 2.62.0

### Android
Expand Down