Commit a848d58b authored by IOS-张 博's avatar IOS-张 博

修改版本号

parent ef1e3266
......@@ -17,7 +17,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<string>6.5.27</string>
<key>CFBundleURLTypes</key>
<array>
<dict>
......
......@@ -67,7 +67,10 @@
// UserInfo 的 isLogin 方法是用于获取 App 当前的登录状态
BOOL isLogin = [QGUserInfo isLogin];
return @{@"appState":[NSNumber numberWithInteger:appState],@"isLogin":[NSNumber numberWithBool:isLogin],@"app_channel":appChannel,@"app_name":@"真享花",@"app_version_code":XcodeAppVersion,@"channel_code":registerFrom,@"os":@"ios",@"package_name":XcodeAppBundleIdentifier
NSString * app_version_codeStr = [NSString stringWithFormat:@"%@",XcodeAppVersion];
NSNumber * app_version_codeNum = @([app_version_codeStr stringByReplacingOccurrencesOfString:@"." withString:@""].integerValue);
return @{@"appState":[NSNumber numberWithInteger:appState],@"isLogin":[NSNumber numberWithBool:isLogin],@"app_channel":appChannel,@"app_name":@"真享花",@"app_version_code":app_version_codeNum,@"channel_code":registerFrom,@"os":@"ios",@"package_name":XcodeAppBundleIdentifier
};
}];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment