Skip to content

Commit

Permalink
NaverGameSDK 1.3.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
nerycat32 committed Mar 9, 2023
1 parent 85f67bf commit 3107c90
Show file tree
Hide file tree
Showing 15 changed files with 36 additions and 19 deletions.
15 changes: 0 additions & 15 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,3 @@
v.1.3.2
-------------
Android
onNaverLoggedIn() ,onNaverLoggedOut() 콜백 제거
로그인후에 네이버로그인연결 해제시 에러 나는 현상 수정
iOS
인증을 위해 사용하는 앱 이름 및 스킴 값 설정 가능하도록 변경

v.1.3.1
-------------
버그수정 :
카메라를 통해 사진을 첨부하는 경우 글쓰기 실패하는 사항 수정



v.1.3.0
-------------
개선사항 :
Expand Down
Binary file modified Plugins/navergamesdk/platform/ios/NNGSDK.bundle/Info.plist
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,14 @@
@property (strong, nonatomic, readonly) NSString *version;

/**
* Your App Scheme. It is set automatically.
* Your App Name. It is initialized automatically by using CFBundleName.
*/
@property (strong, nonatomic) NSString *appScheme;
@property (nonatomic) NSString *appName;

/**
* Your App Scheme. It is initialized automatically.
*/
@property (nonatomic) NSString *appScheme;

/**
* The flag which determines whether the shortcut to write feed is presented after capturing screen or not. YES as default.
Expand All @@ -60,6 +65,17 @@
*/
@property (weak, nonatomic) id <NNGSDKDelegate> delegate;

/**
* The description of settings for the authorization which has the following format:
*
* clientId: ACTUAL_CLIENT_ID (CLIENT_ID_CACHE)
* clientSecret: ACTUAL_CLIENT_SECRET (CLIENT_SECRET_CACHE)
* appName: ACTUAL_APP_NAME (APP_NAME_CACHE)
* appScheme: ACTUAL_APP_SCHEME (APP_SCHEME_CACHE)
*
* Each actual value, cache, and the value on the NAVER ID Login website have to be same.
*/
@property (nonatomic, readonly) NSString *authSettingDescription;

/**
* Set client ID, client secret, and lounge ID for SDK.
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,14 @@
@property (strong, nonatomic, readonly) NSString *version;

/**
* Your App Scheme. It is set automatically.
* Your App Name. It is initialized automatically by using CFBundleName.
*/
@property (strong, nonatomic) NSString *appScheme;
@property (nonatomic) NSString *appName;

/**
* Your App Scheme. It is initialized automatically.
*/
@property (nonatomic) NSString *appScheme;

/**
* The flag which determines whether the shortcut to write feed is presented after capturing screen or not. YES as default.
Expand All @@ -60,6 +65,17 @@
*/
@property (weak, nonatomic) id <NNGSDKDelegate> delegate;

/**
* The description of settings for the authorization which has the following format:
*
* clientId: ACTUAL_CLIENT_ID (CLIENT_ID_CACHE)
* clientSecret: ACTUAL_CLIENT_SECRET (CLIENT_SECRET_CACHE)
* appName: ACTUAL_APP_NAME (APP_NAME_CACHE)
* appScheme: ACTUAL_APP_SCHEME (APP_SCHEME_CACHE)
*
* Each actual value, cache, and the value on the NAVER ID Login website have to be same.
*/
@property (nonatomic, readonly) NSString *authSettingDescription;

/**
* Set client ID, client secret, and lounge ID for SDK.
Expand Down
Binary file not shown.

0 comments on commit 3107c90

Please sign in to comment.