Skip to content

Commit 90d8bb9

Browse files
committed
fix pr
1 parent 4a522e5 commit 90d8bb9

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

iOS/DoraemonKit/Src/Core/Define/DoraemonDefine.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
#import "DoraemonToastUtil.h"
1818
#import "DoraemonAlertUtil.h"
1919

20-
#define DokitVersion @"V1.2.3"
20+
#define DoKitVersion @"1.2.3"
2121

2222
#define DoraemonScreenWidth [UIScreen mainScreen].bounds.size.width
2323
#define DoraemonScreenHeight [UIScreen mainScreen].bounds.size.height

iOS/DoraemonKit/Src/Core/Entry/DoraemonHomeEntry.m

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,9 @@ - (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollection
6868

6969
- (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout referenceSizeForFooterInSection:(NSInteger)section {
7070
if (section < _dataArray.count) {
71-
return CGSizeMake(DoraemonScreenHeight, 20);
71+
return CGSizeMake(DoraemonScreenWidth, 20);
7272
} else {
73-
return CGSizeMake(DoraemonScreenHeight, 40);
73+
return CGSizeMake(DoraemonScreenWidth, 40);
7474
}
7575
}
7676

@@ -127,7 +127,7 @@ - (UICollectionReusableView *)collectionView:(UICollectionView *)collectionView
127127

128128
if(indexPath.section >= _dataArray.count){
129129
NSString *str = DoraemonLocalizedString(@"当前版本");
130-
NSString *last = [NSString stringWithFormat:@"%@%@",str,DokitVersion];
130+
NSString *last = [NSString stringWithFormat:@"%@V%@",str,DoKitVersion];
131131
foot.title.text = last;
132132
foot.title.textColor = [UIColor doraemon_colorWithString:@"#999999"];
133133
foot.title.textAlignment = NSTextAlignmentCenter;

iOS/DoraemonKit/Src/Core/Util/DoraemonStatisticsUtil.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ - (void)upLoadUserInfo{
2626

2727
NSString *appId = [[NSBundle mainBundle] bundleIdentifier];;
2828
NSString *appName = [[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleDisplayName"];
29-
NSString *doKitVersion = @"1.2.3";
29+
NSString *doKitVersion = DoKitVersion;
3030
NSString *type = @"iOS";
3131
NSString *from = @"1";
3232

iOS/DoraemonKitDemo/DoraemonKitDemo.xcodeproj/project.pbxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -615,13 +615,13 @@
615615
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
616616
CODE_SIGN_IDENTITY = "iPhone Developer";
617617
CODE_SIGN_STYLE = Automatic;
618-
DEVELOPMENT_TEAM = 7D5BQQH49H;
618+
DEVELOPMENT_TEAM = 2M632FEG3H;
619619
ENABLE_BITCODE = YES;
620620
GCC_PRECOMPILE_PREFIX_HEADER = YES;
621621
GCC_PREFIX_HEADER = "DoraemonKitDemo/DoraemonKitDemo-PrefixHeader.pch";
622622
INFOPLIST_FILE = DoraemonKitDemo/Info.plist;
623623
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
624-
PRODUCT_BUNDLE_IDENTIFIER = yixiang.DoraemonKitDemommm;
624+
PRODUCT_BUNDLE_IDENTIFIER = yixiang.DoraemonKitDemoXX;
625625
PRODUCT_NAME = "$(TARGET_NAME)";
626626
PROVISIONING_PROFILE_SPECIFIER = "";
627627
TARGETED_DEVICE_FAMILY = "1,2";
@@ -635,13 +635,13 @@
635635
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
636636
CODE_SIGN_IDENTITY = "iPhone Developer";
637637
CODE_SIGN_STYLE = Automatic;
638-
DEVELOPMENT_TEAM = 7D5BQQH49H;
638+
DEVELOPMENT_TEAM = 2M632FEG3H;
639639
ENABLE_BITCODE = YES;
640640
GCC_PRECOMPILE_PREFIX_HEADER = YES;
641641
GCC_PREFIX_HEADER = "DoraemonKitDemo/DoraemonKitDemo-PrefixHeader.pch";
642642
INFOPLIST_FILE = DoraemonKitDemo/Info.plist;
643643
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
644-
PRODUCT_BUNDLE_IDENTIFIER = yixiang.DoraemonKitDemommm;
644+
PRODUCT_BUNDLE_IDENTIFIER = yixiang.DoraemonKitDemoXX;
645645
PRODUCT_NAME = "$(TARGET_NAME)";
646646
PROVISIONING_PROFILE_SPECIFIER = "";
647647
TARGETED_DEVICE_FAMILY = "1,2";

0 commit comments

Comments
 (0)