3 Commits

Author SHA1 Message Date
liyuhua
04b72a58b2 1.5.2版本发版 此commit置顶 2023-11-23 10:56:32 +08:00
liyuhua
bd54fa6aa2 修复等级bug 2023-11-23 10:54:46 +08:00
liyuhua
2f516b8387 更换key 2023-11-22 14:30:00 +08:00
6 changed files with 11 additions and 11 deletions

View File

@@ -49,7 +49,7 @@ target 'xplan-ios' do
pod 'mob_sharesdk/ShareSDKPlatforms/WeChat_Lite'
pod 'mob_sharesdk/ShareSDKPlatforms/Apple'
pod 'mob_sharesdk/ShareSDKExtension'
pod 'SVGAPlayer', '~> 2.3'
pod 'SVGAPlayer'
# 滑动标签栏
pod 'JXCategoryView'
pod 'JXPagingView/Pager'

View File

@@ -153,7 +153,7 @@ DEPENDENCIES:
- mob_sharesdk/ShareSDKPlatforms/WeChat_Lite
- NIMSDK_LITE (~> 8.9.0)
- NTESQuickPass
- pop
- pop (~> 1.0.12)
- QGVAPlayer
- Qiniu
- QY_NIM_iOS_SDK (~> 6.6.1)
@@ -162,7 +162,7 @@ DEPENDENCIES:
- SDWebImage
- SDWebImageFLPlugin
- SSKeychain
- SVGAPlayer (~> 2.3)
- SVGAPlayer
- SZTextView
- TXLiteAVSDK_TRTC (~> 11.4.14530)
- TZImagePickerController
@@ -271,6 +271,6 @@ SPEC CHECKSUMS:
YYText: 5c461d709e24d55a182d1441c41dc639a18a4849
YYWebImage: 5f7f36aee2ae293f016d418c7d6ba05c4863e928
PODFILE CHECKSUM: f44d894b616b0165722154f819e116f0d23597ff
PODFILE CHECKSUM: 0f2e29ba8c875f839292918f612c6ec567ad4318
COCOAPODS: 1.12.1

View File

@@ -11395,7 +11395,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 1.5.0;
MARKETING_VERSION = 1.5.2;
OTHER_LDFLAGS = (
"$(inherited)",
"-ObjC",
@@ -11658,7 +11658,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 1.5.0;
MARKETING_VERSION = 1.5.2;
OTHER_LDFLAGS = (
"$(inherited)",
"-ObjC",

View File

@@ -31,7 +31,7 @@
</Testables>
</TestAction>
<LaunchAction
buildConfiguration = "Debug"
buildConfiguration = "Release"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
launchStyle = "0"

View File

@@ -133,7 +133,7 @@
if(charmList.count == 2){
NSString *charmUrl = charmList[1];
for (int i = 0;i < 110; i++) {
NSString *num = i < 10 ? [NSString stringWithFormat:@"0%d",i+1] : [NSString stringWithFormat:@"%d",i+1];
NSString *num = i < 9 ? [NSString stringWithFormat:@"0%d",i+1] : [NSString stringWithFormat:@"%d",i+1];
if([charmUrl containsString:num]){
getUrl = [NSString stringWithFormat:@"new_charm_%@",num];
break;
@@ -153,7 +153,7 @@
if(wealthList.count == 2){
NSString *wealthUrl = wealthList[1];
for (int i = 0;i < 110; i++) {
NSString *num = i < 10 ? [NSString stringWithFormat:@"0%d",i+1] : [NSString stringWithFormat:@"%d",i+1];
NSString *num = i < 9 ? [NSString stringWithFormat:@"0%d",i+1] : [NSString stringWithFormat:@"%d",i+1];
if([wealthUrl containsString:num]){
getUrl = [NSString stringWithFormat:@"new_exper_%@",num];
break;

View File

@@ -43,7 +43,7 @@ NSString * const KeyWithType(KeyType type) {
///
@(YES):@{
@(KeyType_PasswordEncode) : @"1ea53d260ecf11e7b56e00163e046a26",
@(KeyType_NTESQuickLoginBusinessId) : @"3a94ceb70b144963a03bf98cb55b812a",
@(KeyType_NTESQuickLoginBusinessId) : @"200c83103d4a413591c7969dd8d4d6e2",
@(KeyType_QQAppid) : @"102044928",
@(KeyType_QQSecret) : @"715dd2601777347cd57af77c3e28402f",
@(KeyType_WechatAppid) : @"wx4b772d5ebc964a38",
@@ -66,7 +66,7 @@ NSString * const KeyWithType(KeyType type) {
///
@(NO):@{
@(KeyType_PasswordEncode) : @"1ea53d260ecf11e7b56e00163e046a26",
@(KeyType_NTESQuickLoginBusinessId) : @"3a94ceb70b144963a03bf98cb55b812a",
@(KeyType_NTESQuickLoginBusinessId) : @"200c83103d4a413591c7969dd8d4d6e2",
@(KeyType_QQAppid) : @"102044928",
@(KeyType_QQSecret) : @"715dd2601777347cd57af77c3e28402f",
@(KeyType_WechatAppid) : @"wx4b772d5ebc964a38",