feat: update 3.0 native binary
parent
d75b10d244
commit
4c41127b9b
|
@ -1,5 +1,11 @@
|
||||||
# ChangeLog
|
# ChangeLog
|
||||||
|
|
||||||
|
## 3.0.0
|
||||||
|
|
||||||
|
### Optimization
|
||||||
|
|
||||||
|
- Bridge 新增 Task 桥接
|
||||||
|
|
||||||
## 2.1.7
|
## 2.1.7
|
||||||
|
|
||||||
### None
|
### None
|
||||||
|
@ -8,7 +14,7 @@
|
||||||
|
|
||||||
### BreakingChanges
|
### BreakingChanges
|
||||||
|
|
||||||
- 修改 **TapCommon.OpenReviewInTapGlobal()** 方法命名
|
- 修改 **TapCommon.OpenReviewInTapGlobal()** 方法命名
|
||||||
|
|
||||||
## 2.1.5
|
## 2.1.5
|
||||||
|
|
||||||
|
|
Binary file not shown.
Binary file not shown.
|
@ -1,9 +1,5 @@
|
||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
<<<<<<< HEAD:Assets/LCLibs/Common.dll.meta
|
guid: 5318fe27ebddb456abd8ab5d2bec4a70
|
||||||
guid: 817901a263c9747569215992a60b3de2
|
|
||||||
=======
|
|
||||||
guid: fdfc96aff59854a6dbea47d109e204e1
|
|
||||||
>>>>>>> develop/2.x:Assets/TapTap/Common/Plugins/Android/libs/TapCommon_2.1.7.aar.meta
|
|
||||||
PluginImporter:
|
PluginImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
|
@ -16,22 +12,21 @@ PluginImporter:
|
||||||
validateReferences: 1
|
validateReferences: 1
|
||||||
platformData:
|
platformData:
|
||||||
- first:
|
- first:
|
||||||
Any:
|
Android: Android
|
||||||
second:
|
second:
|
||||||
enabled: 1
|
enabled: 1
|
||||||
settings: {}
|
settings: {}
|
||||||
|
- first:
|
||||||
|
Any:
|
||||||
|
second:
|
||||||
|
enabled: 0
|
||||||
|
settings: {}
|
||||||
- first:
|
- first:
|
||||||
Editor: Editor
|
Editor: Editor
|
||||||
second:
|
second:
|
||||||
enabled: 0
|
enabled: 0
|
||||||
settings:
|
settings:
|
||||||
DefaultValueInitialized: true
|
DefaultValueInitialized: true
|
||||||
- first:
|
|
||||||
Windows Store Apps: WindowsStoreApps
|
|
||||||
second:
|
|
||||||
enabled: 0
|
|
||||||
settings:
|
|
||||||
CPU: AnyCPU
|
|
||||||
userData:
|
userData:
|
||||||
assetBundleName:
|
assetBundleName:
|
||||||
assetBundleVariant:
|
assetBundleVariant:
|
|
@ -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_FAIL;
|
||||||
FOUNDATION_EXPORT NSString *const LOGIN_ACTION_TAPTAP_AUTHORIZE_CANCEL;
|
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_TAPTAP;
|
||||||
FOUNDATION_EXPORT NSString *const LOGIN_TYPE_WEBVIEW;
|
FOUNDATION_EXPORT NSString *const LOGIN_TYPE_WEBVIEW;
|
||||||
|
|
|
@ -9,8 +9,8 @@
|
||||||
#import <TapCommonSDK/TDSAccount.h>
|
#import <TapCommonSDK/TDSAccount.h>
|
||||||
|
|
||||||
#define TapCommonSDK @"TapCommon"
|
#define TapCommonSDK @"TapCommon"
|
||||||
#define TapCommonSDK_VERSION_NUMBER @"20107001"
|
#define TapCommonSDK_VERSION_NUMBER @"30000001"
|
||||||
#define TapCommonSDK_VERSION @"2.1.7"
|
#define TapCommonSDK_VERSION @"3.0.0"
|
||||||
|
|
||||||
NS_ASSUME_NONNULL_BEGIN
|
NS_ASSUME_NONNULL_BEGIN
|
||||||
typedef NSString *TDSLanguage NS_STRING_ENUM;
|
typedef NSString *TDSLanguage NS_STRING_ENUM;
|
||||||
|
|
|
@ -17,7 +17,8 @@ typedef NS_ENUM (NSInteger, TapSDKRegionType) {
|
||||||
|
|
||||||
@interface TapConfig : NSObject
|
@interface TapConfig : NSObject
|
||||||
@property (nonatomic, copy) NSString *clientId;
|
@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, assign) TapSDKRegionType region;
|
||||||
@property (nonatomic, strong) TapDBConfig * dbConfig;
|
@property (nonatomic, strong) TapDBConfig * dbConfig;
|
||||||
@end
|
@end
|
||||||
|
|
|
@ -35,14 +35,6 @@ NS_ASSUME_NONNULL_BEGIN
|
||||||
|
|
||||||
+ (void)logTapCancel;
|
+ (void)logTapCancel;
|
||||||
|
|
||||||
+ (void)logTdsStart;
|
|
||||||
|
|
||||||
+ (void)logTdsSuccessWithOpenID:(NSString *)openId accountProvider:(id<TDSAccountProvider>)provider isRefresh:(BOOL)isRefresh ;
|
|
||||||
|
|
||||||
+ (void)logTdsFailWithError:(NSError *)error;
|
|
||||||
|
|
||||||
+ (void)logTdsCancel;
|
|
||||||
|
|
||||||
@end
|
@end
|
||||||
|
|
||||||
NS_ASSUME_NONNULL_END
|
NS_ASSUME_NONNULL_END
|
||||||
|
|
Binary file not shown.
|
@ -0,0 +1,3 @@
|
||||||
|
### Optimization
|
||||||
|
|
||||||
|
- Bridge 新增 Task 桥接
|
Loading…
Reference in New Issue