修改版本号
This commit is contained in:
parent
097699400e
commit
cce27928e8
|
|
@ -16025,7 +16025,7 @@
|
||||||
CODE_SIGN_IDENTITY = "iPhone Developer";
|
CODE_SIGN_IDENTITY = "iPhone Developer";
|
||||||
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
||||||
CODE_SIGN_STYLE = Automatic;
|
CODE_SIGN_STYLE = Automatic;
|
||||||
CURRENT_PROJECT_VERSION = 1;
|
CURRENT_PROJECT_VERSION = 2;
|
||||||
DEVELOPMENT_TEAM = WFX8GD5HFX;
|
DEVELOPMENT_TEAM = WFX8GD5HFX;
|
||||||
ENABLE_BITCODE = NO;
|
ENABLE_BITCODE = NO;
|
||||||
ENABLE_TESTABILITY = YES;
|
ENABLE_TESTABILITY = YES;
|
||||||
|
|
@ -16145,7 +16145,7 @@
|
||||||
CODE_SIGN_IDENTITY = "Apple Development";
|
CODE_SIGN_IDENTITY = "Apple Development";
|
||||||
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "Apple Development";
|
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "Apple Development";
|
||||||
CODE_SIGN_STYLE = Automatic;
|
CODE_SIGN_STYLE = Automatic;
|
||||||
CURRENT_PROJECT_VERSION = 1;
|
CURRENT_PROJECT_VERSION = 2;
|
||||||
DEVELOPMENT_TEAM = WFX8GD5HFX;
|
DEVELOPMENT_TEAM = WFX8GD5HFX;
|
||||||
ENABLE_BITCODE = NO;
|
ENABLE_BITCODE = NO;
|
||||||
ENABLE_TESTABILITY = YES;
|
ENABLE_TESTABILITY = YES;
|
||||||
|
|
|
||||||
|
|
@ -25,7 +25,7 @@
|
||||||
// CFShow((__bridge CFTypeRef)(infoDic));
|
// CFShow((__bridge CFTypeRef)(infoDic));
|
||||||
NSString *app_Version=[infoDic objectForKey:@"CFBundleShortVersionString"];
|
NSString *app_Version=[infoDic objectForKey:@"CFBundleShortVersionString"];
|
||||||
NSLog(@"app_Version%@",app_Version);
|
NSLog(@"app_Version%@",app_Version);
|
||||||
app_Version=@"4.7.22";
|
app_Version=[app_Version stringByReplacingCharactersInRange:NSMakeRange(0, 3) withString:@"4.7"];
|
||||||
NSString *versionStr = [NSString stringWithFormat:@"v%@",app_Version];
|
NSString *versionStr = [NSString stringWithFormat:@"v%@",app_Version];
|
||||||
NSString *buildVersion = [infoDic objectForKey:@"CFBundleVersion"];
|
NSString *buildVersion = [infoDic objectForKey:@"CFBundleVersion"];
|
||||||
if (buildVersion.length > 0) {
|
if (buildVersion.length > 0) {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue