diff --git a/Documentation/README.md b/Documentation/README.md index 6b18f9a..bd1c30f 100644 --- a/Documentation/README.md +++ b/Documentation/README.md @@ -90,9 +90,4 @@ TapBootstrap.GetDetailUser(Action action); ### 11.登出 ```c# TapBootstrap.Logout(); -``` - -### 12.打开用户中心 -```c# -TapBootstrap.OpenUserCenter(); ``` \ No newline at end of file diff --git a/Plugins/TapTap.Bootstrap.dll b/Plugins/TapTap.Bootstrap.dll index cb8602f..e74c6fb 100644 Binary files a/Plugins/TapTap.Bootstrap.dll and b/Plugins/TapTap.Bootstrap.dll differ diff --git a/Plugins/TapTap.Bootstrap.pdb b/Plugins/TapTap.Bootstrap.pdb index af42636..0e5f579 100644 Binary files a/Plugins/TapTap.Bootstrap.pdb and b/Plugins/TapTap.Bootstrap.pdb differ diff --git a/Plugins/iOS/TapBootstrapSDK.framework/Headers/TapBootstrap.h b/Plugins/iOS/TapBootstrapSDK.framework/Headers/TapBootstrap.h index 7b9596a..0986732 100644 --- a/Plugins/iOS/TapBootstrapSDK.framework/Headers/TapBootstrap.h +++ b/Plugins/iOS/TapBootstrapSDK.framework/Headers/TapBootstrap.h @@ -15,7 +15,7 @@ #import #define TapSDK @"TapSDK" -#define TapSDK_VERSION_NUMBER @"20101006" +#define TapSDK_VERSION_NUMBER @"20101001" #define TapSDK_VERSION @"2.1.1" NS_ASSUME_NONNULL_BEGIN @@ -72,6 +72,9 @@ typedef void (^TapUserDetailsHandler)(TapUserDetails *_Nullable userDetail, NSEr /// 退出登录 + (void)logout; +/// 打开用户中心 ++ (void)openUserCenter; + /// 获取用户是否有测试资格 /// @param handler 回调 + (void)getTestQualification:(void (^)(BOOL isQualified, NSError *_Nullable error))handler; diff --git a/Plugins/iOS/TapBootstrapSDK.framework/Headers/TapUser.h b/Plugins/iOS/TapBootstrapSDK.framework/Headers/TapUser.h index c81eecd..de40d8e 100644 --- a/Plugins/iOS/TapBootstrapSDK.framework/Headers/TapUser.h +++ b/Plugins/iOS/TapBootstrapSDK.framework/Headers/TapUser.h @@ -17,8 +17,6 @@ NS_ASSUME_NONNULL_BEGIN @property (nonatomic, assign) BOOL isGuest; @property (nonatomic, assign) long gender; -- (instancetype)initWithJsonString:(NSString *)json; - - (NSString *)toJsonString; @end diff --git a/Plugins/iOS/TapBootstrapSDK.framework/TapBootstrapSDK b/Plugins/iOS/TapBootstrapSDK.framework/TapBootstrapSDK index da2722c..1ab233b 100644 Binary files a/Plugins/iOS/TapBootstrapSDK.framework/TapBootstrapSDK and b/Plugins/iOS/TapBootstrapSDK.framework/TapBootstrapSDK differ diff --git a/README.md b/README.md index fb4d156..b4700fb 100644 --- a/README.md +++ b/README.md @@ -93,7 +93,3 @@ TapBootstrap.GetDetailUser(Action action); TapBootstrap.Logout(); ``` -### 12.打开用户中心 -```c# -TapBootstrap.OpenUserCenter(); -``` \ No newline at end of file diff --git a/package.json b/package.json index a6ee961..c8fc47e 100644 --- a/package.json +++ b/package.json @@ -2,10 +2,10 @@ "name": "com.taptap.tds.bootstrap", "displayName": "TapTap Bootstrap", "description": "TapTap Develop Service", - "version": "2.1.1", + "version": "2.1.2", "unity": "2018.3", "license": "MIT", "dependencies": { - "com.taptap.tds.common": "https://github.com/TapTap/TapCommon-Unity.git#2.1.1" + "com.taptap.tds.common": "https://github.com/TapTap/TapCommon-Unity.git#2.1.2" } }