feat: update 3.0 native binary

xiaoyi 2021-07-16 12:00:43 +08:00
parent d75b10d244
commit 4c41127b9b
10 changed files with 21 additions and 29 deletions

View File

@ -1,5 +1,11 @@
# ChangeLog
## 3.0.0
### Optimization
- Bridge 新增 Task 桥接
## 2.1.7
### None
@ -8,7 +14,7 @@
### BreakingChanges
- 修改 **TapCommon.OpenReviewInTapGlobal()** 方法命名
- 修改 **TapCommon.OpenReviewInTapGlobal()** 方法命名
## 2.1.5

Binary file not shown.

View File

@ -1,9 +1,5 @@
fileFormatVersion: 2
<<<<<<< HEAD:Assets/LCLibs/Common.dll.meta
guid: 817901a263c9747569215992a60b3de2
=======
guid: fdfc96aff59854a6dbea47d109e204e1
>>>>>>> develop/2.x:Assets/TapTap/Common/Plugins/Android/libs/TapCommon_2.1.7.aar.meta
guid: 5318fe27ebddb456abd8ab5d2bec4a70
PluginImporter:
externalObjects: {}
serializedVersion: 2
@ -16,22 +12,21 @@ PluginImporter:
validateReferences: 1
platformData:
- first:
Any:
Android: Android
second:
enabled: 1
settings: {}
- first:
Any:
second:
enabled: 0
settings: {}
- first:
Editor: Editor
second:
enabled: 0
settings:
DefaultValueInitialized: true
- first:
Windows Store Apps: WindowsStoreApps
second:
enabled: 0
settings:
CPU: AnyCPU
userData:
assetBundleName:
assetBundleVariant:

View File

@ -19,11 +19,6 @@ FOUNDATION_EXPORT NSString *const LOGIN_ACTION_TAPTAP_AUTHORIZE_SUCCESS;
FOUNDATION_EXPORT NSString *const LOGIN_ACTION_TAPTAP_AUTHORIZE_FAIL;
FOUNDATION_EXPORT NSString *const LOGIN_ACTION_TAPTAP_AUTHORIZE_CANCEL;
FOUNDATION_EXPORT NSString *const LOGIN_ACTION_TDS_LOGIN_START;
FOUNDATION_EXPORT NSString *const LOGIN_ACTION_TDS_LOGIN_SUCCESS;
FOUNDATION_EXPORT NSString *const LOGIN_ACTION_TDS_LOGIN_FAIL;
FOUNDATION_EXPORT NSString *const LOGIN_ACTION_TDS_LOGIN_CANCEL;
//登录类型
FOUNDATION_EXPORT NSString *const LOGIN_TYPE_TAPTAP;
FOUNDATION_EXPORT NSString *const LOGIN_TYPE_WEBVIEW;

View File

@ -9,8 +9,8 @@
#import <TapCommonSDK/TDSAccount.h>
#define TapCommonSDK @"TapCommon"
#define TapCommonSDK_VERSION_NUMBER @"20107001"
#define TapCommonSDK_VERSION @"2.1.7"
#define TapCommonSDK_VERSION_NUMBER @"30000001"
#define TapCommonSDK_VERSION @"3.0.0"
NS_ASSUME_NONNULL_BEGIN
typedef NSString *TDSLanguage NS_STRING_ENUM;

View File

@ -17,7 +17,8 @@ typedef NS_ENUM (NSInteger, TapSDKRegionType) {
@interface TapConfig : NSObject
@property (nonatomic, copy) NSString *clientId;
@property (nonatomic, copy) NSString *clientSecret;
@property (nonatomic, copy) NSString *clientToken;
@property (nonatomic, copy) NSString *serverURL;
@property (nonatomic, assign) TapSDKRegionType region;
@property (nonatomic, strong) TapDBConfig * dbConfig;
@end

View File

@ -35,14 +35,6 @@ NS_ASSUME_NONNULL_BEGIN
+ (void)logTapCancel;
+ (void)logTdsStart;
+ (void)logTdsSuccessWithOpenID:(NSString *)openId accountProvider:(id<TDSAccountProvider>)provider isRefresh:(BOOL)isRefresh ;
+ (void)logTdsFailWithError:(NSError *)error;
+ (void)logTdsCancel;
@end
NS_ASSUME_NONNULL_END

View File

@ -0,0 +1,3 @@
### Optimization
- Bridge 新增 Task 桥接