feat(*): update binary

xiaoyi 2021-05-14 19:16:05 +08:00
parent 109d211bda
commit be2bd30db8
8 changed files with 6 additions and 14 deletions

View File

@ -90,9 +90,4 @@ TapBootstrap.GetDetailUser(Action<TapUserDetail, TapError> action);
### 11.登出 ### 11.登出
```c# ```c#
TapBootstrap.Logout(); TapBootstrap.Logout();
```
### 12.打开用户中心
```c#
TapBootstrap.OpenUserCenter();
``` ```

Binary file not shown.

Binary file not shown.

View File

@ -15,7 +15,7 @@
#import <TapCommonSDK/TapCommonSDK.h> #import <TapCommonSDK/TapCommonSDK.h>
#define TapSDK @"TapSDK" #define TapSDK @"TapSDK"
#define TapSDK_VERSION_NUMBER @"20101006" #define TapSDK_VERSION_NUMBER @"20101001"
#define TapSDK_VERSION @"2.1.1" #define TapSDK_VERSION @"2.1.1"
NS_ASSUME_NONNULL_BEGIN NS_ASSUME_NONNULL_BEGIN
@ -72,6 +72,9 @@ typedef void (^TapUserDetailsHandler)(TapUserDetails *_Nullable userDetail, NSEr
/// 退出登录 /// 退出登录
+ (void)logout; + (void)logout;
/// 打开用户中心
+ (void)openUserCenter;
/// 获取用户是否有测试资格 /// 获取用户是否有测试资格
/// @param handler 回调 /// @param handler 回调
+ (void)getTestQualification:(void (^)(BOOL isQualified, NSError *_Nullable error))handler; + (void)getTestQualification:(void (^)(BOOL isQualified, NSError *_Nullable error))handler;

View File

@ -17,8 +17,6 @@ NS_ASSUME_NONNULL_BEGIN
@property (nonatomic, assign) BOOL isGuest; @property (nonatomic, assign) BOOL isGuest;
@property (nonatomic, assign) long gender; @property (nonatomic, assign) long gender;
- (instancetype)initWithJsonString:(NSString *)json;
- (NSString *)toJsonString; - (NSString *)toJsonString;
@end @end

View File

@ -93,7 +93,3 @@ TapBootstrap.GetDetailUser(Action<TapUserDetail, TapError> action);
TapBootstrap.Logout(); TapBootstrap.Logout();
``` ```
### 12.打开用户中心
```c#
TapBootstrap.OpenUserCenter();
```

View File

@ -2,10 +2,10 @@
"name": "com.taptap.tds.bootstrap", "name": "com.taptap.tds.bootstrap",
"displayName": "TapTap Bootstrap", "displayName": "TapTap Bootstrap",
"description": "TapTap Develop Service", "description": "TapTap Develop Service",
"version": "2.1.1", "version": "2.1.2",
"unity": "2018.3", "unity": "2018.3",
"license": "MIT", "license": "MIT",
"dependencies": { "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"
} }
} }