feat: update achievement binary , update tds user get func

xiaoyi 2021-07-21 16:45:56 +08:00
parent e8d133f96f
commit 17d22545fc
18 changed files with 65 additions and 3 deletions

View File

@ -1,3 +1,4 @@
using System.IO;
using UnityEditor;
using UnityEditor.Callbacks;
using UnityEditor.iOS.Xcode;
@ -32,7 +33,7 @@ namespace TapTap.Common.Editor
proj.SetBuildProperty(target, "ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES", "YES");
proj.SetBuildProperty(target, "SWIFT_VERSION", "5.0");
proj.SetBuildProperty(target, "CLANG_ENABLE_MODULES", "YES");
proj.SetBuildProperty(unityFrameworkTarget, "ENABLE_BITCODE", "NO");
proj.SetBuildProperty(unityFrameworkTarget, "ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES", "NO");
proj.SetBuildProperty(unityFrameworkTarget, "SWIFT_VERSION", "5.0");

Binary file not shown.

Binary file not shown.

View File

@ -14,7 +14,7 @@ typedef NS_ENUM (NSInteger, TDSAccountType) {
XD,
XDG,
TYPE_TDS,
LC
LC
};
@interface TDSAccount : NSObject

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: fc572b4efd2dc4e1793e116e45e82737
guid: 16820ca87456c4439baffbcafb143967
DefaultImporter:
externalObjects: {}
userData:

View File

@ -110,3 +110,5 @@ FOUNDATION_EXPORT const unsigned char TapCommonSDKVersionString[];
#import <TapCommonSDK/NetworkStateModel.h>
#import <TapCommonSDK/TDSTrackerEvent.h>
#import <TapCommonSDK/TapLoginLogManager.h>
#import <TapCommonSDK/TapPropertiesHolder.h>

View File

@ -0,0 +1,22 @@
//
// TapDBDynamicPropertiesDelegate.h
// TapDB
//
// Created by xe on 2021/4/13.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
typedef const char* _Nullable (*TapPropertiesDelegate)(const char*);
@interface TapPropertiesDelegateProxy : NSObject
- (instancetype)initWithDelegate: (TapPropertiesDelegate)delegate key:(const char*)key;
- (NSString*) getProperties;
@end
NS_ASSUME_NONNULL_END

View File

@ -0,0 +1,7 @@
fileFormatVersion: 2
guid: e08e018270afe41678366fc6e797f2e5
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,23 @@
//
// TapDBDynamicPropertiesProxy.h
// TapDB
//
// Created by xe on 2021/4/13.
//
#import <Foundation/Foundation.h>
#import <TapCommonSDK/TapPropertiesDelegateProxy.h>
NS_ASSUME_NONNULL_BEGIN
@interface TapPropertiesHolder : NSObject
@property NSMutableDictionary<NSString*,TapPropertiesDelegateProxy*> *dic;
+ (TapPropertiesHolder*)shareInstance;
- (NSString*)getProperty:(NSString*)key;
@end
NS_ASSUME_NONNULL_END

View File

@ -0,0 +1,7 @@
fileFormatVersion: 2
guid: 19c8e3e7ae0e94aad85e86f8ab7f5bad
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

Binary file not shown.

Binary file not shown.