Commit 7f6720e0 by 刘卓鑫

提交紧急修复的3.8.2版本的bug

parent 47cc1947
...@@ -62,7 +62,7 @@ ...@@ -62,7 +62,7 @@
</AdditionalOptions> </AdditionalOptions>
</TestAction> </TestAction>
<LaunchAction <LaunchAction
buildConfiguration = "Debug" buildConfiguration = "Release"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB" selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB" selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
launchStyle = "0" launchStyle = "0"
......
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
ignoreCount = "0" ignoreCount = "0"
continueAfterRunningActions = "No" continueAfterRunningActions = "No"
filePath = "ColorfulSchool/Classes/Tool(&#x5de5;&#x5177;)/ZXTool.m" filePath = "ColorfulSchool/Classes/Tool(&#x5de5;&#x5177;)/ZXTool.m"
timestampString = "581912639.624768" timestampString = "582185487.845978"
startingColumnNumber = "9223372036854775807" startingColumnNumber = "9223372036854775807"
endingColumnNumber = "9223372036854775807" endingColumnNumber = "9223372036854775807"
startingLineNumber = "1871" startingLineNumber = "1871"
......
...@@ -72,8 +72,8 @@ ...@@ -72,8 +72,8 @@
[Bugly startWithAppId:@"d3a5bd8d35"]; [Bugly startWithAppId:@"d3a5bd8d35"];
//防止crash //防止crash
// [JJException configExceptionCategory:JJExceptionGuardAll]; [JJException configExceptionCategory:JJExceptionGuardAll];
// [JJException startGuardException]; [JJException startGuardException];
//极光推送 //极光推送
[self initPushWithOptions:launchOptions isProduct:kJPushIsProduct]; [self initPushWithOptions:launchOptions isProduct:kJPushIsProduct];
......
// //
...@@ -15,7 +15,7 @@ kSINGLETON_FOR_CLASS(APIManager) ...@@ -15,7 +15,7 @@ kSINGLETON_FOR_CLASS(APIManager)
- (void)setLauchEnvironment:(ZXColorfulSchoolEnvironmentType)lauchEnvironment { - (void)setLauchEnvironment:(ZXColorfulSchoolEnvironmentType)lauchEnvironment {
_lauchEnvironment = lauchEnvironment; _lauchEnvironment = lauchEnvironment;
//因为设置此属性有可能是强退 做了userdefaults清空 所以在这里 再次设置一下相关内容 (ps:我也很无奈) //因为设置此属性有可能是强退 做了userdefaults清空 所以在这里 再次设置一下相关内容 (ps:我也很无奈) 瑞狮的版本貌似被抛弃 可能不需要默认这段代码
[self configDefaultUserdefaults]; [self configDefaultUserdefaults];
switch (_lauchEnvironment) { switch (_lauchEnvironment) {
......
// //
...@@ -79,7 +79,9 @@ ...@@ -79,7 +79,9 @@
- (void)webView:(WKWebView *)webView didFinishNavigation:(WKNavigation *)navigation { - (void)webView:(WKWebView *)webView didFinishNavigation:(WKNavigation *)navigation {
[ZXTool hideLoadingAnimation]; [ZXTool hideLoadingAnimation];
if (self.jsStr) { if (self.jsStr) {
@weakify(self);
[self.webView evaluateJavaScript:self.jsStr completionHandler:^(id _Nullable nulls, NSError * _Nullable error) { [self.webView evaluateJavaScript:self.jsStr completionHandler:^(id _Nullable nulls, NSError * _Nullable error) {
@strongify(self);
if (error) { if (error) {
NSLog(@"%@----%@", error.description, self.jsStr); NSLog(@"%@----%@", error.description, self.jsStr);
} else { } else {
......
// //
...@@ -467,7 +467,6 @@ heightForFooterInSection:(NSInteger)section { ...@@ -467,7 +467,6 @@ heightForFooterInSection:(NSInteger)section {
} }
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { -(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
UITableViewCell * cell;
if (indexPath.section==0) { if (indexPath.section==0) {
TopupWalletCell * cell=[tableView dequeueReusableCellWithIdentifier:TopUpWalletID]; TopupWalletCell * cell=[tableView dequeueReusableCellWithIdentifier:TopUpWalletID];
......
// //
...@@ -454,16 +454,13 @@ static NSInteger seq = 0; ...@@ -454,16 +454,13 @@ static NSInteger seq = 0;
return 120 * k6Scale; return 120 * k6Scale;
} else if ([sec.styleType isEqualToString:@"SERVICE"] && sec.items.count) { } else if ([sec.styleType isEqualToString:@"SERVICE"] && sec.items.count) {
//功能区 //功能区
NSInteger rowCount = 0; NSInteger rowCount = sec.items.count / 5;
if (sec.items.count <= 5) { NSInteger j = sec.items.count % 5;
rowCount = 1; if (j != 0) {
} else { rowCount = rowCount + 1;
NSInteger count = sec.items.count + 1;
rowCount = count / 5;
NSInteger line = count % 5;
if (line != 0) {
rowCount += 1;
} }
if (rowCount > 5) {
rowCount = 5;
} }
return 85 * k6Scale * rowCount; return 85 * k6Scale * rowCount;
} else if ([sec.styleType isEqualToString:@"ANNOUNCEMENT"] && sec.items.count) { } else if ([sec.styleType isEqualToString:@"ANNOUNCEMENT"] && sec.items.count) {
...@@ -816,17 +813,7 @@ static NSInteger seq = 0; ...@@ -816,17 +813,7 @@ static NSInteger seq = 0;
info.suffix = info.title; info.suffix = info.title;
[self firstPageJumpActionWithInfo:info]; [self firstPageJumpActionWithInfo:info];
} }
//#pragma mark - ========== 点击了更多 ==========
//- (void)newmoreAction:(ZXSections *)sec {
// [self.myTableView reloadData];
//}
//- (void)moreAction:(NSArray *)infos {
// ZXPopMenuViewController *pop = [[ZXPopMenuViewController alloc] initWithMenulist:infos clickAction:^(ZXInformation *info) {
// info.suffix = info.title;
// [self firstPageJumpActionWithInfo:info];
// }];
// [pop show];
//}
#pragma mark - ========== 老版本部分内容 ========== #pragma mark - ========== 老版本部分内容 ==========
......
// //
...@@ -46,40 +46,40 @@ ...@@ -46,40 +46,40 @@
} else { } else {
cellW = kScreenWidth / 5 * 1.0f; cellW = kScreenWidth / 5 * 1.0f;
} }
CGFloat cellHeight = 85 * k6Scale; // CGFloat cellHeight = 85 * k6Scale;
//
[self.contentView gridWithCellWidth:cellW cellHeight:cellHeight numPerRow:_menuList.count < 5 ? _menuList.count : 5 totalNum:_menuList.count viewPadding:0 viewPaddingCell:0 titles:_menuList]; // [self.contentView gridWithCellWidth:cellW cellHeight:cellHeight numPerRow:_menuList.count < 5 ? _menuList.count : 5 totalNum:_menuList.count viewPadding:0 viewPaddingCell:0 titles:_menuList];
self.contentView.delegate = self; // self.contentView.delegate = self;
// ZXCuotomerView *cus = [[ZXCuotomerView alloc] initWithItems:_menuList clickAction:^(ZXInformation *info) { ZXCuotomerView *cus = [[ZXCuotomerView alloc] initWithItems:_menuList clickAction:^(ZXInformation *info) {
// if ([info isKindOfClass:[UIButton class]]) { if ([info isKindOfClass:[UIButton class]]) {
// //点击了更多 //点击了更多
// NSInteger rowCount = 0; NSInteger rowCount = 0;
// if (_menuList.count <= 6) { if (_menuList.count <= 6) {
// rowCount = 1; rowCount = 1;
// } else { } else {
// NSInteger count = _menuList.count + 1; NSInteger count = _menuList.count + 1;
// rowCount = count / 6; rowCount = count / 6;
// NSInteger line = count % 6; NSInteger line = count % 6;
// if (line != 0) { if (line != 0) {
// rowCount += 1; rowCount += 1;
// } }
// } }
// self.section.rows = rowCount; self.section.rows = rowCount;
// if ([self.delegate respondsToSelector:@selector(newmoreAction:)]) { if ([self.delegate respondsToSelector:@selector(newmoreAction:)]) {
// [self.delegate newmoreAction:self.section]; [self.delegate newmoreAction:self.section];
// } }
// } else { } else {
// if ([self.delegate respondsToSelector:@selector(clickMenuItem:)]) { if ([self.delegate respondsToSelector:@selector(clickMenuItem:)]) {
// [self.delegate clickMenuItem:info]; [self.delegate clickMenuItem:info];
// } }
// } }
// }]; }];
// cus.section = self.section; cus.section = self.section;
// cus.clipsToBounds = YES; cus.clipsToBounds = YES;
// [self.contentView addSubview:cus]; [self.contentView addSubview:cus];
// [cus mas_makeConstraints:^(MASConstraintMaker *make) { [cus mas_makeConstraints:^(MASConstraintMaker *make) {
// make.edges.equalTo(self.contentView); make.edges.equalTo(self.contentView);
// }]; }];
}); });
} }
......
// //
...@@ -143,7 +143,7 @@ ...@@ -143,7 +143,7 @@
[btn sd_setImageWithURL:[NSURL URLWithString:info.linkUrls.firstObject] forState:UIControlStateNormal]; [btn sd_setImageWithURL:[NSURL URLWithString:info.linkUrls.firstObject] forState:UIControlStateNormal];
[btn setTitle:info.title forState:UIControlStateNormal]; [btn setTitle:info.title forState:UIControlStateNormal];
} }
} else if (count > 4 && count < 7) { } else if (count > 4 && count < 6) {
JXLayoutButton *currentBtn; JXLayoutButton *currentBtn;
for (int i = 0; i < count; i++) { for (int i = 0; i < count; i++) {
JXLayoutButton *btn = [[JXLayoutButton alloc] init]; JXLayoutButton *btn = [[JXLayoutButton alloc] init];
...@@ -184,10 +184,8 @@ ...@@ -184,10 +184,8 @@
JXLayoutButton *thirdBtn; JXLayoutButton *thirdBtn;
JXLayoutButton *fourthBtn; JXLayoutButton *fourthBtn;
JXLayoutButton *fifthBtn; JXLayoutButton *fifthBtn;
NSMutableArray *newItems = [[NSMutableArray alloc] init];
[newItems addObjectsFromArray:items]; for (int i = 0; i < items.count; i++) {
[newItems insertObject:@"" atIndex:5];
for (int i = 0; i < newItems.count; i++) {
JXLayoutButton *btn = [[JXLayoutButton alloc] init]; JXLayoutButton *btn = [[JXLayoutButton alloc] init];
btn.layoutStyle = JXLayoutButtonStyleUpImageDownTitle; btn.layoutStyle = JXLayoutButtonStyleUpImageDownTitle;
btn.imageSize = CGSizeMake(35 * k6Scale, 35 * k6Scale); btn.imageSize = CGSizeMake(35 * k6Scale, 35 * k6Scale);
...@@ -195,24 +193,7 @@ ...@@ -195,24 +193,7 @@
btn.titleLabel.font = kFontSize(11 * k6Scale); btn.titleLabel.font = kFontSize(11 * k6Scale);
[btn setTitleColor:[UIColor colorWithHexString:@"#444444"] forState:UIControlStateNormal]; [btn setTitleColor:[UIColor colorWithHexString:@"#444444"] forState:UIControlStateNormal];
[self addSubview:btn]; [self addSubview:btn];
if (i == 5) { ZXInformation *info = items[i];
[btn setImage:[UIImage imageNamed:@"home_zhankai_icon"] forState:UIControlStateNormal];
[btn setImage:[UIImage imageNamed:@"home_shouqi_icon"] forState:UIControlStateSelected];
[btn setTitle:@"更多" forState:UIControlStateNormal];
[btn setTitle:@"收起" forState:UIControlStateSelected];
self.moreBtn = btn;
[[btn rac_signalForControlEvents:UIControlEventTouchUpInside] subscribeNext:^(UIButton *x) {
x.selected = !x.selected;
self.section.isExpan = x.selected;
[UIView animateWithDuration:0.2 animations:^{
x.backgroundColor = RGB(211, 211, 211);
} completion:^(BOOL finished) {
x.backgroundColor = [UIColor whiteColor];
click((ZXInformation *)x);
}];
}];
} else {
ZXInformation *info = newItems[i];
[btn sd_setImageWithURL:[NSURL URLWithString:info.linkUrls.firstObject] forState:UIControlStateNormal]; [btn sd_setImageWithURL:[NSURL URLWithString:info.linkUrls.firstObject] forState:UIControlStateNormal];
[btn setTitle:info.title forState:UIControlStateNormal]; [btn setTitle:info.title forState:UIControlStateNormal];
[[btn rac_signalForControlEvents:UIControlEventTouchUpInside] subscribeNext:^(JXLayoutButton *x) { [[btn rac_signalForControlEvents:UIControlEventTouchUpInside] subscribeNext:^(JXLayoutButton *x) {
...@@ -223,36 +204,35 @@ ...@@ -223,36 +204,35 @@
click(info); click(info);
}]; }];
}]; }];
} if (i < 5) {
if (i < 6) {
[btn mas_makeConstraints:^(MASConstraintMaker *make) { [btn mas_makeConstraints:^(MASConstraintMaker *make) {
make.left.equalTo(firstBtn?firstBtn.mas_right:self.mas_left); make.left.equalTo(firstBtn?firstBtn.mas_right:self.mas_left);
make.top.equalTo(self.mas_top); make.top.equalTo(self.mas_top);
make.width.mas_equalTo(kScreenWidth /6.0f); make.width.mas_equalTo(kScreenWidth /5.0f);
make.height.mas_equalTo(85 * k6Scale); make.height.mas_equalTo(85 * k6Scale);
}]; }];
firstBtn = btn; firstBtn = btn;
} else if (i < 12){ } else if (i < 10){
[btn mas_makeConstraints:^(MASConstraintMaker *make) { [btn mas_makeConstraints:^(MASConstraintMaker *make) {
make.left.equalTo(seconBtn?seconBtn.mas_right:self.mas_left); make.left.equalTo(seconBtn?seconBtn.mas_right:self.mas_left);
make.top.equalTo(firstBtn.mas_bottom); make.top.equalTo(firstBtn.mas_bottom);
make.width.mas_equalTo(kScreenWidth /6.0f); make.width.mas_equalTo(kScreenWidth /5.0f);
make.height.mas_equalTo(85 * k6Scale); make.height.mas_equalTo(85 * k6Scale);
}]; }];
seconBtn = btn; seconBtn = btn;
} else if (i < 18){ } else if (i < 15){
[btn mas_makeConstraints:^(MASConstraintMaker *make) { [btn mas_makeConstraints:^(MASConstraintMaker *make) {
make.left.equalTo(thirdBtn?thirdBtn.mas_right:self.mas_left); make.left.equalTo(thirdBtn?thirdBtn.mas_right:self.mas_left);
make.top.equalTo(seconBtn.mas_bottom); make.top.equalTo(seconBtn.mas_bottom);
make.width.mas_equalTo(kScreenWidth /6.0f); make.width.mas_equalTo(kScreenWidth /5.0f);
make.height.mas_equalTo(85 * k6Scale); make.height.mas_equalTo(85 * k6Scale);
}]; }];
thirdBtn = btn; thirdBtn = btn;
} else if (i < 24){ } else if (i < 20){
[btn mas_makeConstraints:^(MASConstraintMaker *make) { [btn mas_makeConstraints:^(MASConstraintMaker *make) {
make.left.equalTo(fourthBtn?fourthBtn.mas_right:self.mas_left); make.left.equalTo(fourthBtn?fourthBtn.mas_right:self.mas_left);
make.top.equalTo(thirdBtn.mas_bottom); make.top.equalTo(thirdBtn.mas_bottom);
make.width.mas_equalTo(kScreenWidth /6.0f); make.width.mas_equalTo(kScreenWidth /5.0f);
make.height.mas_equalTo(85 * k6Scale); make.height.mas_equalTo(85 * k6Scale);
}]; }];
fourthBtn = btn; fourthBtn = btn;
...@@ -261,7 +241,7 @@ ...@@ -261,7 +241,7 @@
[btn mas_makeConstraints:^(MASConstraintMaker *make) { [btn mas_makeConstraints:^(MASConstraintMaker *make) {
make.left.equalTo(fifthBtn?fifthBtn.mas_right:self.mas_left); make.left.equalTo(fifthBtn?fifthBtn.mas_right:self.mas_left);
make.top.equalTo(fourthBtn.mas_bottom); make.top.equalTo(fourthBtn.mas_bottom);
make.width.mas_equalTo(kScreenWidth /6.0f); make.width.mas_equalTo(kScreenWidth /5.0f);
make.height.mas_equalTo(85 * k6Scale); make.height.mas_equalTo(85 * k6Scale);
}]; }];
fifthBtn = btn; fifthBtn = btn;
......
// //
...@@ -717,7 +717,7 @@ ...@@ -717,7 +717,7 @@
} }
for (int i = 0; i < 4; i++) { for (int i = 0; i < 4; i++) {
NSInteger dataStr = [mutArr[i] integerValue]; NSInteger dataStr = [mutArr[i] integerValue];
[mutStr appendFormat:@"%ld",dataStr]; [mutStr appendFormat:@"%ld",(long)dataStr];
} }
} }
return mutStr; return mutStr;
......
// //
...@@ -202,6 +202,7 @@ ...@@ -202,6 +202,7 @@
} }
} }
[self.navigationController popViewControllerAnimated:YES]; [self.navigationController popViewControllerAnimated:YES];
// [self.parentViewController.childViewControllers[0] removeFromParentViewController]; // [self.parentViewController.childViewControllers[0] removeFromParentViewController];
// [self.parentViewController.childViewControllers[1] removeFromParentViewController]; // [self.parentViewController.childViewControllers[1] removeFromParentViewController];
// [self.parentViewController.childViewControllers[2] removeFromParentViewController]; // [self.parentViewController.childViewControllers[2] removeFromParentViewController];
......
...@@ -17,7 +17,7 @@ ...@@ -17,7 +17,7 @@
<key>CFBundlePackageType</key> <key>CFBundlePackageType</key>
<string>APPL</string> <string>APPL</string>
<key>CFBundleShortVersionString</key> <key>CFBundleShortVersionString</key>
<string>3.8.1</string> <string>3.8.2</string>
<key>CFBundleURLTypes</key> <key>CFBundleURLTypes</key>
<array> <array>
<dict> <dict>
...@@ -440,7 +440,7 @@ ...@@ -440,7 +440,7 @@
</dict> </dict>
</array> </array>
<key>CFBundleVersion</key> <key>CFBundleVersion</key>
<string>1.2</string> <string>1.0</string>
<key>LSApplicationQueriesSchemes</key> <key>LSApplicationQueriesSchemes</key>
<array> <array>
<string>jdlogin</string> <string>jdlogin</string>
......
...@@ -18,5 +18,5 @@ target 'ColorfulSchool' do ...@@ -18,5 +18,5 @@ target 'ColorfulSchool' do
pod 'GDTMobSDK' pod 'GDTMobSDK'
pod 'JJException' pod 'JJException'
pod 'Bugly' pod 'Bugly'
pod 'MLeaksFinder' #pod 'MLeaksFinder'
end end
...@@ -38,7 +38,6 @@ PODS: ...@@ -38,7 +38,6 @@ PODS:
- DTFoundation/Core - DTFoundation/Core
- DTFoundation/UIKit (1.7.13): - DTFoundation/UIKit (1.7.13):
- DTFoundation/Core - DTFoundation/Core
- FBRetainCycleDetector (0.1.4)
- FMDB (2.7.5): - FMDB (2.7.5):
- FMDB/standard (= 2.7.5) - FMDB/standard (= 2.7.5)
- FMDB/standard (2.7.5) - FMDB/standard (2.7.5)
...@@ -72,8 +71,6 @@ PODS: ...@@ -72,8 +71,6 @@ PODS:
- Masonry (1.1.0) - Masonry (1.1.0)
- MJExtension (3.0.15.1) - MJExtension (3.0.15.1)
- MJRefresh (3.1.15.7) - MJRefresh (3.1.15.7)
- MLeaksFinder (1.0.0):
- FBRetainCycleDetector
- Qiniu (7.2.5): - Qiniu (7.2.5):
- HappyDNS (~> 0.3) - HappyDNS (~> 0.3)
- ReactiveCocoa (2.5.2): - ReactiveCocoa (2.5.2):
...@@ -102,7 +99,6 @@ DEPENDENCIES: ...@@ -102,7 +99,6 @@ DEPENDENCIES:
- Masonry - Masonry
- MJExtension - MJExtension
- MJRefresh - MJRefresh
- MLeaksFinder
- Qiniu (~> 7.0) - Qiniu (~> 7.0)
- ReactiveCocoa (from `https://github.com/zhao0/ReactiveCocoa.git`, tag `2.5.2`) - ReactiveCocoa (from `https://github.com/zhao0/ReactiveCocoa.git`, tag `2.5.2`)
- SDWebImage (~> 3.8) - SDWebImage (~> 3.8)
...@@ -115,7 +111,6 @@ SPEC REPOS: ...@@ -115,7 +111,6 @@ SPEC REPOS:
- Bugly - Bugly
- DTCoreText - DTCoreText
- DTFoundation - DTFoundation
- FBRetainCycleDetector
- FMDB - FMDB
- GDTMobSDK - GDTMobSDK
- HappyDNS - HappyDNS
...@@ -127,7 +122,6 @@ SPEC REPOS: ...@@ -127,7 +122,6 @@ SPEC REPOS:
- Masonry - Masonry
- MJExtension - MJExtension
- MJRefresh - MJRefresh
- MLeaksFinder
- Qiniu - Qiniu
- SDWebImage - SDWebImage
- SVProgressHUD - SVProgressHUD
...@@ -148,7 +142,6 @@ SPEC CHECKSUMS: ...@@ -148,7 +142,6 @@ SPEC CHECKSUMS:
Bugly: 3ca9f255c01025582df26f9222893b383c7e4b4e Bugly: 3ca9f255c01025582df26f9222893b383c7e4b4e
DTCoreText: e5d688cffc9f6a61eddd1a4f94e2046851230de3 DTCoreText: e5d688cffc9f6a61eddd1a4f94e2046851230de3
DTFoundation: f03be9fd786f11e505bb8fc44e2a3732bf0917df DTFoundation: f03be9fd786f11e505bb8fc44e2a3732bf0917df
FBRetainCycleDetector: 46f8179bbb1c587deee3ea838a1a3ee02acf5015
FMDB: 2ce00b547f966261cd18927a3ddb07cb6f3db82a FMDB: 2ce00b547f966261cd18927a3ddb07cb6f3db82a
GDTMobSDK: cd573d3ad24736616e894ac4d9ebcccbbaf3bf1c GDTMobSDK: cd573d3ad24736616e894ac4d9ebcccbbaf3bf1c
HappyDNS: dc6a164ee81979093123c241c6353bcf0218add6 HappyDNS: dc6a164ee81979093123c241c6353bcf0218add6
...@@ -160,13 +153,12 @@ SPEC CHECKSUMS: ...@@ -160,13 +153,12 @@ SPEC CHECKSUMS:
Masonry: 678fab65091a9290e40e2832a55e7ab731aad201 Masonry: 678fab65091a9290e40e2832a55e7ab731aad201
MJExtension: 19bc33ce2eee2d319760f5622562cf581a6ff756 MJExtension: 19bc33ce2eee2d319760f5622562cf581a6ff756
MJRefresh: 697f8ec75ebdbe9207767bb682cf0f51b0d8a41f MJRefresh: 697f8ec75ebdbe9207767bb682cf0f51b0d8a41f
MLeaksFinder: 8c435bd2f6d070af18cff082b503b21adc130fc0
Qiniu: 909b408ee489ea54827e9717be90b94bc9dfbc48 Qiniu: 909b408ee489ea54827e9717be90b94bc9dfbc48
ReactiveCocoa: 3ff25b1bd992ac79c5c79b26b6c0c1713b715bb2 ReactiveCocoa: 3ff25b1bd992ac79c5c79b26b6c0c1713b715bb2
SDWebImage: 098e97e6176540799c27e804c96653ee0833d13c SDWebImage: 098e97e6176540799c27e804c96653ee0833d13c
SVProgressHUD: 1428aafac632c1f86f62aa4243ec12008d7a51d6 SVProgressHUD: 1428aafac632c1f86f62aa4243ec12008d7a51d6
XRCarouselView: d3f949d1601e7de51604cdabd6e2f35a770e0f99 XRCarouselView: d3f949d1601e7de51604cdabd6e2f35a770e0f99
PODFILE CHECKSUM: 58f8e5750a28d84cf0889312e6aa6d64663274a1 PODFILE CHECKSUM: 0ca59c0bbc7d7ab1f305c1e963070cdb31ce4f6b
COCOAPODS: 1.6.1 COCOAPODS: 1.6.1
...@@ -38,7 +38,6 @@ PODS: ...@@ -38,7 +38,6 @@ PODS:
- DTFoundation/Core - DTFoundation/Core
- DTFoundation/UIKit (1.7.13): - DTFoundation/UIKit (1.7.13):
- DTFoundation/Core - DTFoundation/Core
- FBRetainCycleDetector (0.1.4)
- FMDB (2.7.5): - FMDB (2.7.5):
- FMDB/standard (= 2.7.5) - FMDB/standard (= 2.7.5)
- FMDB/standard (2.7.5) - FMDB/standard (2.7.5)
...@@ -72,8 +71,6 @@ PODS: ...@@ -72,8 +71,6 @@ PODS:
- Masonry (1.1.0) - Masonry (1.1.0)
- MJExtension (3.0.15.1) - MJExtension (3.0.15.1)
- MJRefresh (3.1.15.7) - MJRefresh (3.1.15.7)
- MLeaksFinder (1.0.0):
- FBRetainCycleDetector
- Qiniu (7.2.5): - Qiniu (7.2.5):
- HappyDNS (~> 0.3) - HappyDNS (~> 0.3)
- ReactiveCocoa (2.5.2): - ReactiveCocoa (2.5.2):
...@@ -102,7 +99,6 @@ DEPENDENCIES: ...@@ -102,7 +99,6 @@ DEPENDENCIES:
- Masonry - Masonry
- MJExtension - MJExtension
- MJRefresh - MJRefresh
- MLeaksFinder
- Qiniu (~> 7.0) - Qiniu (~> 7.0)
- ReactiveCocoa (from `https://github.com/zhao0/ReactiveCocoa.git`, tag `2.5.2`) - ReactiveCocoa (from `https://github.com/zhao0/ReactiveCocoa.git`, tag `2.5.2`)
- SDWebImage (~> 3.8) - SDWebImage (~> 3.8)
...@@ -115,7 +111,6 @@ SPEC REPOS: ...@@ -115,7 +111,6 @@ SPEC REPOS:
- Bugly - Bugly
- DTCoreText - DTCoreText
- DTFoundation - DTFoundation
- FBRetainCycleDetector
- FMDB - FMDB
- GDTMobSDK - GDTMobSDK
- HappyDNS - HappyDNS
...@@ -127,7 +122,6 @@ SPEC REPOS: ...@@ -127,7 +122,6 @@ SPEC REPOS:
- Masonry - Masonry
- MJExtension - MJExtension
- MJRefresh - MJRefresh
- MLeaksFinder
- Qiniu - Qiniu
- SDWebImage - SDWebImage
- SVProgressHUD - SVProgressHUD
...@@ -148,7 +142,6 @@ SPEC CHECKSUMS: ...@@ -148,7 +142,6 @@ SPEC CHECKSUMS:
Bugly: 3ca9f255c01025582df26f9222893b383c7e4b4e Bugly: 3ca9f255c01025582df26f9222893b383c7e4b4e
DTCoreText: e5d688cffc9f6a61eddd1a4f94e2046851230de3 DTCoreText: e5d688cffc9f6a61eddd1a4f94e2046851230de3
DTFoundation: f03be9fd786f11e505bb8fc44e2a3732bf0917df DTFoundation: f03be9fd786f11e505bb8fc44e2a3732bf0917df
FBRetainCycleDetector: 46f8179bbb1c587deee3ea838a1a3ee02acf5015
FMDB: 2ce00b547f966261cd18927a3ddb07cb6f3db82a FMDB: 2ce00b547f966261cd18927a3ddb07cb6f3db82a
GDTMobSDK: cd573d3ad24736616e894ac4d9ebcccbbaf3bf1c GDTMobSDK: cd573d3ad24736616e894ac4d9ebcccbbaf3bf1c
HappyDNS: dc6a164ee81979093123c241c6353bcf0218add6 HappyDNS: dc6a164ee81979093123c241c6353bcf0218add6
...@@ -160,13 +153,12 @@ SPEC CHECKSUMS: ...@@ -160,13 +153,12 @@ SPEC CHECKSUMS:
Masonry: 678fab65091a9290e40e2832a55e7ab731aad201 Masonry: 678fab65091a9290e40e2832a55e7ab731aad201
MJExtension: 19bc33ce2eee2d319760f5622562cf581a6ff756 MJExtension: 19bc33ce2eee2d319760f5622562cf581a6ff756
MJRefresh: 697f8ec75ebdbe9207767bb682cf0f51b0d8a41f MJRefresh: 697f8ec75ebdbe9207767bb682cf0f51b0d8a41f
MLeaksFinder: 8c435bd2f6d070af18cff082b503b21adc130fc0
Qiniu: 909b408ee489ea54827e9717be90b94bc9dfbc48 Qiniu: 909b408ee489ea54827e9717be90b94bc9dfbc48
ReactiveCocoa: 3ff25b1bd992ac79c5c79b26b6c0c1713b715bb2 ReactiveCocoa: 3ff25b1bd992ac79c5c79b26b6c0c1713b715bb2
SDWebImage: 098e97e6176540799c27e804c96653ee0833d13c SDWebImage: 098e97e6176540799c27e804c96653ee0833d13c
SVProgressHUD: 1428aafac632c1f86f62aa4243ec12008d7a51d6 SVProgressHUD: 1428aafac632c1f86f62aa4243ec12008d7a51d6
XRCarouselView: d3f949d1601e7de51604cdabd6e2f35a770e0f99 XRCarouselView: d3f949d1601e7de51604cdabd6e2f35a770e0f99
PODFILE CHECKSUM: 58f8e5750a28d84cf0889312e6aa6d64663274a1 PODFILE CHECKSUM: 0ca59c0bbc7d7ab1f305c1e963070cdb31ce4f6b
COCOAPODS: 1.6.1 COCOAPODS: 1.6.1
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
buildForArchiving = "YES"> buildForArchiving = "YES">
<BuildableReference <BuildableReference
BuildableIdentifier = "primary" BuildableIdentifier = "primary"
BlueprintIdentifier = "60CDEF437DD81D4B1C3144C7CCCF2996" BlueprintIdentifier = "6733CDA4E009592B094363A6CFF0242D"
BuildableName = "libPods-ColorfulSchool.a" BuildableName = "libPods-ColorfulSchool.a"
BlueprintName = "Pods-ColorfulSchool" BlueprintName = "Pods-ColorfulSchool"
ReferencedContainer = "container:Pods.xcodeproj"> ReferencedContainer = "container:Pods.xcodeproj">
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
buildForArchiving = "YES"> buildForArchiving = "YES">
<BuildableReference <BuildableReference
BuildableIdentifier = "primary" BuildableIdentifier = "primary"
BlueprintIdentifier = "58A3A2B6E71FC471FC8464CDD674F7C3" BlueprintIdentifier = "0300951566085C6AE03DB80BBF4CBBA9"
BuildableName = "libQiniu.a" BuildableName = "libQiniu.a"
BlueprintName = "Qiniu" BlueprintName = "Qiniu"
ReferencedContainer = "container:Pods.xcodeproj"> ReferencedContainer = "container:Pods.xcodeproj">
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
buildForArchiving = "YES"> buildForArchiving = "YES">
<BuildableReference <BuildableReference
BuildableIdentifier = "primary" BuildableIdentifier = "primary"
BlueprintIdentifier = "3B763BCAC14229847EF82FB24B2AC518" BlueprintIdentifier = "A42A971095A8113426FF3F9B7DB3CD38"
BuildableName = "libReactiveCocoa.a" BuildableName = "libReactiveCocoa.a"
BlueprintName = "ReactiveCocoa" BlueprintName = "ReactiveCocoa"
ReferencedContainer = "container:Pods.xcodeproj"> ReferencedContainer = "container:Pods.xcodeproj">
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
buildForArchiving = "YES"> buildForArchiving = "YES">
<BuildableReference <BuildableReference
BuildableIdentifier = "primary" BuildableIdentifier = "primary"
BlueprintIdentifier = "63FC45B6064E3C80B38549BD7B52F7A3" BlueprintIdentifier = "9AFA273397F578A77BC3D43D144574EE"
BuildableName = "libSDWebImage.a" BuildableName = "libSDWebImage.a"
BlueprintName = "SDWebImage" BlueprintName = "SDWebImage"
ReferencedContainer = "container:Pods.xcodeproj"> ReferencedContainer = "container:Pods.xcodeproj">
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
buildForArchiving = "YES"> buildForArchiving = "YES">
<BuildableReference <BuildableReference
BuildableIdentifier = "primary" BuildableIdentifier = "primary"
BlueprintIdentifier = "DC36BF19E6825F8771474E24080D5B81" BlueprintIdentifier = "3A539D13BA085D4C2246C15B2A75C995"
BuildableName = "libSVProgressHUD.a" BuildableName = "libSVProgressHUD.a"
BlueprintName = "SVProgressHUD" BlueprintName = "SVProgressHUD"
ReferencedContainer = "container:Pods.xcodeproj"> ReferencedContainer = "container:Pods.xcodeproj">
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
buildForArchiving = "YES"> buildForArchiving = "YES">
<BuildableReference <BuildableReference
BuildableIdentifier = "primary" BuildableIdentifier = "primary"
BlueprintIdentifier = "74913833D72DEEAB389F89DA0E4408D7" BlueprintIdentifier = "A2844BF4532ABD87BEFDDAAD15EC4D06"
BuildableName = "libXRCarouselView.a" BuildableName = "libXRCarouselView.a"
BlueprintName = "XRCarouselView" BlueprintName = "XRCarouselView"
ReferencedContainer = "container:Pods.xcodeproj"> ReferencedContainer = "container:Pods.xcodeproj">
......
...@@ -24,11 +24,6 @@ ...@@ -24,11 +24,6 @@
<key>isShown</key> <key>isShown</key>
<false/> <false/>
</dict> </dict>
<key>FBRetainCycleDetector.xcscheme</key>
<dict>
<key>isShown</key>
<false/>
</dict>
<key>FMDB.xcscheme</key> <key>FMDB.xcscheme</key>
<dict> <dict>
<key>isShown</key> <key>isShown</key>
...@@ -79,11 +74,6 @@ ...@@ -79,11 +74,6 @@
<key>isShown</key> <key>isShown</key>
<false/> <false/>
</dict> </dict>
<key>MLeaksFinder.xcscheme</key>
<dict>
<key>isShown</key>
<false/>
</dict>
<key>Masonry.xcscheme</key> <key>Masonry.xcscheme</key>
<dict> <dict>
<key>isShown</key> <key>isShown</key>
......
...@@ -81,40 +81,6 @@ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE ...@@ -81,40 +81,6 @@ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
## FBRetainCycleDetector
License
For FBRetainCycleDetector software
Copyright (c) 2016-present, Facebook, Inc. All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* Neither the name Facebook nor the names of its contributors may be used to
endorse or promote products derived from this software without specific
prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
## FMDB ## FMDB
If you are using FMDB in your project, I'd love to hear about it. Let Gus know If you are using FMDB in your project, I'd love to hear about it. Let Gus know
...@@ -304,29 +270,6 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN ...@@ -304,29 +270,6 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE. THE SOFTWARE.
## MLeaksFinder
Copyright (c) 2016 Zeposhe <zeposhe@163.com>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
## Masonry ## Masonry
Copyright (c) 2011-2012 Masonry Team - https://github.com/Masonry Copyright (c) 2011-2012 Masonry Team - https://github.com/Masonry
......
...@@ -118,46 +118,6 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ...@@ -118,46 +118,6 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
</dict> </dict>
<dict> <dict>
<key>FooterText</key> <key>FooterText</key>
<string>License
For FBRetainCycleDetector software
Copyright (c) 2016-present, Facebook, Inc. All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* Neither the name Facebook nor the names of its contributors may be used to
endorse or promote products derived from this software without specific
prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
</string>
<key>License</key>
<string>BSD</string>
<key>Title</key>
<string>FBRetainCycleDetector</string>
<key>Type</key>
<string>PSGroupSpecifier</string>
</dict>
<dict>
<key>FooterText</key>
<string>If you are using FMDB in your project, I'd love to hear about it. Let Gus know <string>If you are using FMDB in your project, I'd love to hear about it. Let Gus know
by sending an email to gus@flyingmeat.com. by sending an email to gus@flyingmeat.com.
...@@ -407,35 +367,6 @@ THE SOFTWARE. ...@@ -407,35 +367,6 @@ THE SOFTWARE.
</dict> </dict>
<dict> <dict>
<key>FooterText</key> <key>FooterText</key>
<string>Copyright (c) 2016 Zeposhe &lt;zeposhe@163.com&gt;
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
</string>
<key>License</key>
<string>MIT</string>
<key>Title</key>
<string>MLeaksFinder</string>
<key>Type</key>
<string>PSGroupSpecifier</string>
</dict>
<dict>
<key>FooterText</key>
<string>Copyright (c) 2011-2012 Masonry Team - https://github.com/Masonry <string>Copyright (c) 2011-2012 Masonry Team - https://github.com/Masonry
Permission is hereby granted, free of charge, to any person obtaining a copy Permission is hereby granted, free of charge, to any person obtaining a copy
......
FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Bugly" FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Bugly"
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/AFNetworking" "${PODS_ROOT}/Headers/Public/DTCoreText" "${PODS_ROOT}/Headers/Public/DTFoundation" "${PODS_ROOT}/Headers/Public/FBRetainCycleDetector" "${PODS_ROOT}/Headers/Public/FMDB" "${PODS_ROOT}/Headers/Public/GDTMobSDK" "${PODS_ROOT}/Headers/Public/HappyDNS" "${PODS_ROOT}/Headers/Public/IQKeyboardManager" "${PODS_ROOT}/Headers/Public/JJException" "${PODS_ROOT}/Headers/Public/JPush" "${PODS_ROOT}/Headers/Public/JXCategoryView" "${PODS_ROOT}/Headers/Public/MJExtension" "${PODS_ROOT}/Headers/Public/MJRefresh" "${PODS_ROOT}/Headers/Public/MLeaksFinder" "${PODS_ROOT}/Headers/Public/Masonry" "${PODS_ROOT}/Headers/Public/Qiniu" "${PODS_ROOT}/Headers/Public/ReactiveCocoa" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SVProgressHUD" "${PODS_ROOT}/Headers/Public/XRCarouselView" "$(SDKROOT)/usr/include/libxml2" $(SDKROOT)/usr/include/libxml2 HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/AFNetworking" "${PODS_ROOT}/Headers/Public/DTCoreText" "${PODS_ROOT}/Headers/Public/DTFoundation" "${PODS_ROOT}/Headers/Public/FMDB" "${PODS_ROOT}/Headers/Public/GDTMobSDK" "${PODS_ROOT}/Headers/Public/HappyDNS" "${PODS_ROOT}/Headers/Public/IQKeyboardManager" "${PODS_ROOT}/Headers/Public/JJException" "${PODS_ROOT}/Headers/Public/JPush" "${PODS_ROOT}/Headers/Public/JXCategoryView" "${PODS_ROOT}/Headers/Public/MJExtension" "${PODS_ROOT}/Headers/Public/MJRefresh" "${PODS_ROOT}/Headers/Public/Masonry" "${PODS_ROOT}/Headers/Public/Qiniu" "${PODS_ROOT}/Headers/Public/ReactiveCocoa" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SVProgressHUD" "${PODS_ROOT}/Headers/Public/XRCarouselView" "$(SDKROOT)/usr/include/libxml2" $(SDKROOT)/usr/include/libxml2
LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking" "${PODS_CONFIGURATION_BUILD_DIR}/DTCoreText" "${PODS_CONFIGURATION_BUILD_DIR}/DTFoundation" "${PODS_CONFIGURATION_BUILD_DIR}/FBRetainCycleDetector" "${PODS_CONFIGURATION_BUILD_DIR}/FMDB" "${PODS_CONFIGURATION_BUILD_DIR}/HappyDNS" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardManager" "${PODS_CONFIGURATION_BUILD_DIR}/JJException" "${PODS_CONFIGURATION_BUILD_DIR}/JXCategoryView" "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension" "${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh" "${PODS_CONFIGURATION_BUILD_DIR}/MLeaksFinder" "${PODS_CONFIGURATION_BUILD_DIR}/Masonry" "${PODS_CONFIGURATION_BUILD_DIR}/Qiniu" "${PODS_CONFIGURATION_BUILD_DIR}/ReactiveCocoa" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SVProgressHUD" "${PODS_CONFIGURATION_BUILD_DIR}/XRCarouselView" "${PODS_ROOT}/GDTMobSDK/lib" "${PODS_ROOT}/JCore" "${PODS_ROOT}/JPush" LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking" "${PODS_CONFIGURATION_BUILD_DIR}/DTCoreText" "${PODS_CONFIGURATION_BUILD_DIR}/DTFoundation" "${PODS_CONFIGURATION_BUILD_DIR}/FMDB" "${PODS_CONFIGURATION_BUILD_DIR}/HappyDNS" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardManager" "${PODS_CONFIGURATION_BUILD_DIR}/JJException" "${PODS_CONFIGURATION_BUILD_DIR}/JXCategoryView" "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension" "${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh" "${PODS_CONFIGURATION_BUILD_DIR}/Masonry" "${PODS_CONFIGURATION_BUILD_DIR}/Qiniu" "${PODS_CONFIGURATION_BUILD_DIR}/ReactiveCocoa" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SVProgressHUD" "${PODS_CONFIGURATION_BUILD_DIR}/XRCarouselView" "${PODS_ROOT}/GDTMobSDK/lib" "${PODS_ROOT}/JCore" "${PODS_ROOT}/JPush"
OTHER_LDFLAGS = $(inherited) -ObjC -l"AFNetworking" -l"DTCoreText" -l"DTFoundation" -l"FBRetainCycleDetector" -l"FMDB" -l"GDTMobSDK" -l"HappyDNS" -l"IQKeyboardManager" -l"JJException" -l"JXCategoryView" -l"MJExtension" -l"MJRefresh" -l"MLeaksFinder" -l"Masonry" -l"Qiniu" -l"ReactiveCocoa" -l"SDWebImage" -l"SVProgressHUD" -l"XRCarouselView" -l"c++" -l"jcore-ios-1.2.5" -l"jpush-ios-3.1.1" -l"resolv" -l"sqlite3" -l"xml2" -l"z" -framework "AVFoundation" -framework "AdSupport" -framework "Bugly" -framework "CFNetwork" -framework "CoreFoundation" -framework "CoreGraphics" -framework "CoreLocation" -framework "CoreTelephony" -framework "CoreText" -framework "Foundation" -framework "ImageIO" -framework "MediaPlayer" -framework "MobileCoreServices" -framework "QuartzCore" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -weak_framework "UserNotifications" -weak_framework "WebKit" OTHER_LDFLAGS = $(inherited) -ObjC -l"AFNetworking" -l"DTCoreText" -l"DTFoundation" -l"FMDB" -l"GDTMobSDK" -l"HappyDNS" -l"IQKeyboardManager" -l"JJException" -l"JXCategoryView" -l"MJExtension" -l"MJRefresh" -l"Masonry" -l"Qiniu" -l"ReactiveCocoa" -l"SDWebImage" -l"SVProgressHUD" -l"XRCarouselView" -l"c++" -l"jcore-ios-1.2.5" -l"jpush-ios-3.1.1" -l"resolv" -l"sqlite3" -l"xml2" -l"z" -framework "AVFoundation" -framework "AdSupport" -framework "Bugly" -framework "CFNetwork" -framework "CoreFoundation" -framework "CoreGraphics" -framework "CoreLocation" -framework "CoreTelephony" -framework "CoreText" -framework "Foundation" -framework "ImageIO" -framework "MediaPlayer" -framework "MobileCoreServices" -framework "QuartzCore" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -weak_framework "UserNotifications" -weak_framework "WebKit"
PODS_BUILD_DIR = ${BUILD_DIR} PODS_BUILD_DIR = ${BUILD_DIR}
PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)
PODS_PODFILE_DIR_PATH = ${SRCROOT}/. PODS_PODFILE_DIR_PATH = ${SRCROOT}/.
......
FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Bugly" FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Bugly"
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/AFNetworking" "${PODS_ROOT}/Headers/Public/DTCoreText" "${PODS_ROOT}/Headers/Public/DTFoundation" "${PODS_ROOT}/Headers/Public/FBRetainCycleDetector" "${PODS_ROOT}/Headers/Public/FMDB" "${PODS_ROOT}/Headers/Public/GDTMobSDK" "${PODS_ROOT}/Headers/Public/HappyDNS" "${PODS_ROOT}/Headers/Public/IQKeyboardManager" "${PODS_ROOT}/Headers/Public/JJException" "${PODS_ROOT}/Headers/Public/JPush" "${PODS_ROOT}/Headers/Public/JXCategoryView" "${PODS_ROOT}/Headers/Public/MJExtension" "${PODS_ROOT}/Headers/Public/MJRefresh" "${PODS_ROOT}/Headers/Public/MLeaksFinder" "${PODS_ROOT}/Headers/Public/Masonry" "${PODS_ROOT}/Headers/Public/Qiniu" "${PODS_ROOT}/Headers/Public/ReactiveCocoa" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SVProgressHUD" "${PODS_ROOT}/Headers/Public/XRCarouselView" "$(SDKROOT)/usr/include/libxml2" $(SDKROOT)/usr/include/libxml2 HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/AFNetworking" "${PODS_ROOT}/Headers/Public/DTCoreText" "${PODS_ROOT}/Headers/Public/DTFoundation" "${PODS_ROOT}/Headers/Public/FMDB" "${PODS_ROOT}/Headers/Public/GDTMobSDK" "${PODS_ROOT}/Headers/Public/HappyDNS" "${PODS_ROOT}/Headers/Public/IQKeyboardManager" "${PODS_ROOT}/Headers/Public/JJException" "${PODS_ROOT}/Headers/Public/JPush" "${PODS_ROOT}/Headers/Public/JXCategoryView" "${PODS_ROOT}/Headers/Public/MJExtension" "${PODS_ROOT}/Headers/Public/MJRefresh" "${PODS_ROOT}/Headers/Public/Masonry" "${PODS_ROOT}/Headers/Public/Qiniu" "${PODS_ROOT}/Headers/Public/ReactiveCocoa" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SVProgressHUD" "${PODS_ROOT}/Headers/Public/XRCarouselView" "$(SDKROOT)/usr/include/libxml2" $(SDKROOT)/usr/include/libxml2
LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking" "${PODS_CONFIGURATION_BUILD_DIR}/DTCoreText" "${PODS_CONFIGURATION_BUILD_DIR}/DTFoundation" "${PODS_CONFIGURATION_BUILD_DIR}/FBRetainCycleDetector" "${PODS_CONFIGURATION_BUILD_DIR}/FMDB" "${PODS_CONFIGURATION_BUILD_DIR}/HappyDNS" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardManager" "${PODS_CONFIGURATION_BUILD_DIR}/JJException" "${PODS_CONFIGURATION_BUILD_DIR}/JXCategoryView" "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension" "${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh" "${PODS_CONFIGURATION_BUILD_DIR}/MLeaksFinder" "${PODS_CONFIGURATION_BUILD_DIR}/Masonry" "${PODS_CONFIGURATION_BUILD_DIR}/Qiniu" "${PODS_CONFIGURATION_BUILD_DIR}/ReactiveCocoa" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SVProgressHUD" "${PODS_CONFIGURATION_BUILD_DIR}/XRCarouselView" "${PODS_ROOT}/GDTMobSDK/lib" "${PODS_ROOT}/JCore" "${PODS_ROOT}/JPush" LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking" "${PODS_CONFIGURATION_BUILD_DIR}/DTCoreText" "${PODS_CONFIGURATION_BUILD_DIR}/DTFoundation" "${PODS_CONFIGURATION_BUILD_DIR}/FMDB" "${PODS_CONFIGURATION_BUILD_DIR}/HappyDNS" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardManager" "${PODS_CONFIGURATION_BUILD_DIR}/JJException" "${PODS_CONFIGURATION_BUILD_DIR}/JXCategoryView" "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension" "${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh" "${PODS_CONFIGURATION_BUILD_DIR}/Masonry" "${PODS_CONFIGURATION_BUILD_DIR}/Qiniu" "${PODS_CONFIGURATION_BUILD_DIR}/ReactiveCocoa" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SVProgressHUD" "${PODS_CONFIGURATION_BUILD_DIR}/XRCarouselView" "${PODS_ROOT}/GDTMobSDK/lib" "${PODS_ROOT}/JCore" "${PODS_ROOT}/JPush"
OTHER_LDFLAGS = $(inherited) -ObjC -l"AFNetworking" -l"DTCoreText" -l"DTFoundation" -l"FBRetainCycleDetector" -l"FMDB" -l"GDTMobSDK" -l"HappyDNS" -l"IQKeyboardManager" -l"JJException" -l"JXCategoryView" -l"MJExtension" -l"MJRefresh" -l"MLeaksFinder" -l"Masonry" -l"Qiniu" -l"ReactiveCocoa" -l"SDWebImage" -l"SVProgressHUD" -l"XRCarouselView" -l"c++" -l"jcore-ios-1.2.5" -l"jpush-ios-3.1.1" -l"resolv" -l"sqlite3" -l"xml2" -l"z" -framework "AVFoundation" -framework "AdSupport" -framework "Bugly" -framework "CFNetwork" -framework "CoreFoundation" -framework "CoreGraphics" -framework "CoreLocation" -framework "CoreTelephony" -framework "CoreText" -framework "Foundation" -framework "ImageIO" -framework "MediaPlayer" -framework "MobileCoreServices" -framework "QuartzCore" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -weak_framework "UserNotifications" -weak_framework "WebKit" OTHER_LDFLAGS = $(inherited) -ObjC -l"AFNetworking" -l"DTCoreText" -l"DTFoundation" -l"FMDB" -l"GDTMobSDK" -l"HappyDNS" -l"IQKeyboardManager" -l"JJException" -l"JXCategoryView" -l"MJExtension" -l"MJRefresh" -l"Masonry" -l"Qiniu" -l"ReactiveCocoa" -l"SDWebImage" -l"SVProgressHUD" -l"XRCarouselView" -l"c++" -l"jcore-ios-1.2.5" -l"jpush-ios-3.1.1" -l"resolv" -l"sqlite3" -l"xml2" -l"z" -framework "AVFoundation" -framework "AdSupport" -framework "Bugly" -framework "CFNetwork" -framework "CoreFoundation" -framework "CoreGraphics" -framework "CoreLocation" -framework "CoreTelephony" -framework "CoreText" -framework "Foundation" -framework "ImageIO" -framework "MediaPlayer" -framework "MobileCoreServices" -framework "QuartzCore" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -weak_framework "UserNotifications" -weak_framework "WebKit"
PODS_BUILD_DIR = ${BUILD_DIR} PODS_BUILD_DIR = ${BUILD_DIR}
PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)
PODS_PODFILE_DIR_PATH = ${SRCROOT}/. PODS_PODFILE_DIR_PATH = ${SRCROOT}/.
......
FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Bugly" FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Bugly"
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/AFNetworking" "${PODS_ROOT}/Headers/Public/DTCoreText" "${PODS_ROOT}/Headers/Public/DTFoundation" "${PODS_ROOT}/Headers/Public/FBRetainCycleDetector" "${PODS_ROOT}/Headers/Public/FMDB" "${PODS_ROOT}/Headers/Public/GDTMobSDK" "${PODS_ROOT}/Headers/Public/HappyDNS" "${PODS_ROOT}/Headers/Public/IQKeyboardManager" "${PODS_ROOT}/Headers/Public/JJException" "${PODS_ROOT}/Headers/Public/JPush" "${PODS_ROOT}/Headers/Public/JXCategoryView" "${PODS_ROOT}/Headers/Public/MJExtension" "${PODS_ROOT}/Headers/Public/MJRefresh" "${PODS_ROOT}/Headers/Public/MLeaksFinder" "${PODS_ROOT}/Headers/Public/Masonry" "${PODS_ROOT}/Headers/Public/Qiniu" "${PODS_ROOT}/Headers/Public/ReactiveCocoa" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SVProgressHUD" "${PODS_ROOT}/Headers/Public/XRCarouselView" "$(SDKROOT)/usr/include/libxml2" $(SDKROOT)/usr/include/libxml2 HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/AFNetworking" "${PODS_ROOT}/Headers/Public/DTCoreText" "${PODS_ROOT}/Headers/Public/DTFoundation" "${PODS_ROOT}/Headers/Public/FMDB" "${PODS_ROOT}/Headers/Public/GDTMobSDK" "${PODS_ROOT}/Headers/Public/HappyDNS" "${PODS_ROOT}/Headers/Public/IQKeyboardManager" "${PODS_ROOT}/Headers/Public/JJException" "${PODS_ROOT}/Headers/Public/JPush" "${PODS_ROOT}/Headers/Public/JXCategoryView" "${PODS_ROOT}/Headers/Public/MJExtension" "${PODS_ROOT}/Headers/Public/MJRefresh" "${PODS_ROOT}/Headers/Public/Masonry" "${PODS_ROOT}/Headers/Public/Qiniu" "${PODS_ROOT}/Headers/Public/ReactiveCocoa" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/SVProgressHUD" "${PODS_ROOT}/Headers/Public/XRCarouselView" "$(SDKROOT)/usr/include/libxml2" $(SDKROOT)/usr/include/libxml2
LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking" "${PODS_CONFIGURATION_BUILD_DIR}/DTCoreText" "${PODS_CONFIGURATION_BUILD_DIR}/DTFoundation" "${PODS_CONFIGURATION_BUILD_DIR}/FBRetainCycleDetector" "${PODS_CONFIGURATION_BUILD_DIR}/FMDB" "${PODS_CONFIGURATION_BUILD_DIR}/HappyDNS" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardManager" "${PODS_CONFIGURATION_BUILD_DIR}/JJException" "${PODS_CONFIGURATION_BUILD_DIR}/JXCategoryView" "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension" "${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh" "${PODS_CONFIGURATION_BUILD_DIR}/MLeaksFinder" "${PODS_CONFIGURATION_BUILD_DIR}/Masonry" "${PODS_CONFIGURATION_BUILD_DIR}/Qiniu" "${PODS_CONFIGURATION_BUILD_DIR}/ReactiveCocoa" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SVProgressHUD" "${PODS_CONFIGURATION_BUILD_DIR}/XRCarouselView" "${PODS_ROOT}/GDTMobSDK/lib" "${PODS_ROOT}/JCore" "${PODS_ROOT}/JPush" LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking" "${PODS_CONFIGURATION_BUILD_DIR}/DTCoreText" "${PODS_CONFIGURATION_BUILD_DIR}/DTFoundation" "${PODS_CONFIGURATION_BUILD_DIR}/FMDB" "${PODS_CONFIGURATION_BUILD_DIR}/HappyDNS" "${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardManager" "${PODS_CONFIGURATION_BUILD_DIR}/JJException" "${PODS_CONFIGURATION_BUILD_DIR}/JXCategoryView" "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension" "${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh" "${PODS_CONFIGURATION_BUILD_DIR}/Masonry" "${PODS_CONFIGURATION_BUILD_DIR}/Qiniu" "${PODS_CONFIGURATION_BUILD_DIR}/ReactiveCocoa" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_CONFIGURATION_BUILD_DIR}/SVProgressHUD" "${PODS_CONFIGURATION_BUILD_DIR}/XRCarouselView" "${PODS_ROOT}/GDTMobSDK/lib" "${PODS_ROOT}/JCore" "${PODS_ROOT}/JPush"
OTHER_LDFLAGS = $(inherited) -ObjC -l"AFNetworking" -l"DTCoreText" -l"DTFoundation" -l"FBRetainCycleDetector" -l"FMDB" -l"GDTMobSDK" -l"HappyDNS" -l"IQKeyboardManager" -l"JJException" -l"JXCategoryView" -l"MJExtension" -l"MJRefresh" -l"MLeaksFinder" -l"Masonry" -l"Qiniu" -l"ReactiveCocoa" -l"SDWebImage" -l"SVProgressHUD" -l"XRCarouselView" -l"c++" -l"jcore-ios-1.2.5" -l"jpush-ios-3.1.1" -l"resolv" -l"sqlite3" -l"xml2" -l"z" -framework "AVFoundation" -framework "AdSupport" -framework "Bugly" -framework "CFNetwork" -framework "CoreFoundation" -framework "CoreGraphics" -framework "CoreLocation" -framework "CoreTelephony" -framework "CoreText" -framework "Foundation" -framework "ImageIO" -framework "MediaPlayer" -framework "MobileCoreServices" -framework "QuartzCore" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -weak_framework "UserNotifications" -weak_framework "WebKit" OTHER_LDFLAGS = $(inherited) -ObjC -l"AFNetworking" -l"DTCoreText" -l"DTFoundation" -l"FMDB" -l"GDTMobSDK" -l"HappyDNS" -l"IQKeyboardManager" -l"JJException" -l"JXCategoryView" -l"MJExtension" -l"MJRefresh" -l"Masonry" -l"Qiniu" -l"ReactiveCocoa" -l"SDWebImage" -l"SVProgressHUD" -l"XRCarouselView" -l"c++" -l"jcore-ios-1.2.5" -l"jpush-ios-3.1.1" -l"resolv" -l"sqlite3" -l"xml2" -l"z" -framework "AVFoundation" -framework "AdSupport" -framework "Bugly" -framework "CFNetwork" -framework "CoreFoundation" -framework "CoreGraphics" -framework "CoreLocation" -framework "CoreTelephony" -framework "CoreText" -framework "Foundation" -framework "ImageIO" -framework "MediaPlayer" -framework "MobileCoreServices" -framework "QuartzCore" -framework "Security" -framework "StoreKit" -framework "SystemConfiguration" -framework "UIKit" -weak_framework "UserNotifications" -weak_framework "WebKit"
PODS_BUILD_DIR = ${BUILD_DIR} PODS_BUILD_DIR = ${BUILD_DIR}
PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)
PODS_PODFILE_DIR_PATH = ${SRCROOT}/. PODS_PODFILE_DIR_PATH = ${SRCROOT}/.
......
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