Commit 3266f0215643315f279e04c0272c2bfbd42c354a
0 parents
0.0.1
Showing
75 changed files
with
3348 additions
and
0 deletions
DSAddressModuleF.podspec
0 → 100644
| 1 | +++ a/DSAddressModuleF.podspec | ||
| 1 | +Pod::Spec.new do |s| | ||
| 2 | + | ||
| 3 | + s.name = "DSAddressModuleF" | ||
| 4 | + s.version = "0.0.1" | ||
| 5 | + s.summary = "DSAddressModuleF" | ||
| 6 | + s.homepage = "http://bj.gitlab.cnlive.com/DSIOSTeam" | ||
| 7 | + s.authors = { "DSIOSTeam" => "694092596@qq.com" } | ||
| 8 | + s.license = "MIT" | ||
| 9 | + s.source = { :git => 'http://bj.gitlab.cnlive.com/DSIOSTeam/DSAddressModuleF.git', :tag => s.version.to_s } | ||
| 10 | + s.ios.deployment_target = '9.0' | ||
| 11 | + s.vendored_frameworks = "DSAddressModuleF/Frameworks/DSAddressModule.framework" | ||
| 12 | + s.frameworks = 'Foundation', 'UIKit' | ||
| 13 | + | ||
| 14 | + s.dependency 'DSBaseModuleF', '>=0.0.0', '<1.0.0' | ||
| 15 | + s.dependency 'DSExtensionModuleF', '>=0.0.0', '<1.0.0' | ||
| 16 | + s.dependency 'DSToolsModuleF', '>=0.0.0', '<1.0.0' | ||
| 17 | + s.dependency 'DSBaseControlsModuleF', '>=0.0.0', '<1.0.0' | ||
| 18 | + s.dependency 'DSCnliveShopSDKToolsModuleF', '>=0.0.0', '<1.0.0' | ||
| 19 | + s.dependency 'DSMapModuleF', '>=0.0.0', '<1.0.0' | ||
| 20 | + | ||
| 21 | +end |
DSAddressModuleF/Frameworks/DSAddressModule.framework/DSAddressModule
0 → 100755
No preview for this file type
DSAddressModuleF/Frameworks/DSAddressModule.framework/DSAddressModule.bundle/Assets.car
0 → 100644
No preview for this file type
DSAddressModuleF/Frameworks/DSAddressModule.framework/DSAddressModule.bundle/Info.plist
0 → 100644
No preview for this file type
DSAddressModuleF/Frameworks/DSAddressModule.framework/Headers/DSAddrAreaModel.h
0 → 100644
| 1 | +++ a/DSAddressModuleF/Frameworks/DSAddressModule.framework/Headers/DSAddrAreaModel.h | ||
| 1 | +// | ||
| 2 | +// DSAddrAreaModel.h | ||
| 3 | +// DSCnliveShopSDK | ||
| 4 | +// | ||
| 5 | +// Created by zhaolin on 2019/5/6. | ||
| 6 | +// Copyright © 2019 BIKE. All rights reserved. | ||
| 7 | +// | ||
| 8 | + | ||
| 9 | +#import <Foundation/Foundation.h> | ||
| 10 | + | ||
| 11 | +NS_ASSUME_NONNULL_BEGIN | ||
| 12 | + | ||
| 13 | +@interface DSAddrAreaModel : NSObject | ||
| 14 | + | ||
| 15 | +/** | ||
| 16 | + id | ||
| 17 | + */ | ||
| 18 | +@property (nonatomic,copy) NSString * id; | ||
| 19 | +/** | ||
| 20 | + 名称 | ||
| 21 | + */ | ||
| 22 | +@property (nonatomic,copy) NSString * name; | ||
| 23 | +/** | ||
| 24 | + 父级id(最上级为0) | ||
| 25 | + */ | ||
| 26 | +@property (nonatomic,copy) NSString * pid; | ||
| 27 | +/** | ||
| 28 | + 1省 2市 3区(县) | ||
| 29 | + */ | ||
| 30 | +@property (nonatomic,copy) NSString * level; | ||
| 31 | + | ||
| 32 | +@end | ||
| 33 | + | ||
| 34 | +NS_ASSUME_NONNULL_END |
DSAddressModuleF/Frameworks/DSAddressModule.framework/Headers/DSAddrSelectAreaViewController.h
0 → 100644
| 1 | +++ a/DSAddressModuleF/Frameworks/DSAddressModule.framework/Headers/DSAddrSelectAreaViewController.h | ||
| 1 | +// | ||
| 2 | +// DSAddrSelectAreaViewController.h | ||
| 3 | +// DSCnliveShopSDK | ||
| 4 | +// | ||
| 5 | +// Created by zhaolin on 2019/5/6. | ||
| 6 | +// Copyright © 2019 BIKE. All rights reserved. | ||
| 7 | +// | ||
| 8 | + | ||
| 9 | +#import <DSBaseControlsModule/DSBaseControlsModule.h> | ||
| 10 | +#import "DSAddressEnum.h" | ||
| 11 | + | ||
| 12 | +NS_ASSUME_NONNULL_BEGIN | ||
| 13 | + | ||
| 14 | +@interface DSAddrSelectAreaViewController : DSBaseViewController | ||
| 15 | + | ||
| 16 | +@property (nonatomic,assign) DSAddressStyle style; | ||
| 17 | + | ||
| 18 | +@property (nonatomic,copy) NSString * provinceId; | ||
| 19 | +@property (nonatomic,copy) NSString * province; | ||
| 20 | +@property (nonatomic,copy) NSString * cityId; | ||
| 21 | +@property (nonatomic,copy) NSString * city; | ||
| 22 | +@property (nonatomic,copy) NSString * areaId; | ||
| 23 | +@property (nonatomic,copy) NSString * area; | ||
| 24 | + | ||
| 25 | +-(void)display; | ||
| 26 | + | ||
| 27 | +@property (nonatomic,copy) void (^finishSelectAreaCallBack)(void); | ||
| 28 | + | ||
| 29 | +@end | ||
| 30 | + | ||
| 31 | +NS_ASSUME_NONNULL_END |
DSAddressModuleF/Frameworks/DSAddressModule.framework/Headers/DSAddressEnum.h
0 → 100644
| 1 | +++ a/DSAddressModuleF/Frameworks/DSAddressModule.framework/Headers/DSAddressEnum.h | ||
| 1 | +// | ||
| 2 | +// DSAddressEnum.h | ||
| 3 | +// DSCnliveShopSDK | ||
| 4 | +// | ||
| 5 | +// Created by zhaolin on 2019/8/23. | ||
| 6 | +// Copyright © 2019 BIKE. All rights reserved. | ||
| 7 | +// | ||
| 8 | + | ||
| 9 | +#ifndef DSAddressEnum_h | ||
| 10 | +#define DSAddressEnum_h | ||
| 11 | + | ||
| 12 | +#import <Foundation/Foundation.h> | ||
| 13 | +#import <UIKit/UIkit.h> | ||
| 14 | + | ||
| 15 | +typedef NS_ENUM(NSUInteger, DSAddressStyle) { | ||
| 16 | + DSAddressStyleNormal = 0, //默认地址样式 | ||
| 17 | + DSAddressStyleShop, //电商 | ||
| 18 | + DSAddressStyleRepast, //餐厅 | ||
| 19 | +}; | ||
| 20 | + | ||
| 21 | +#endif /* DSAddressEnum_h */ |
DSAddressModuleF/Frameworks/DSAddressModule.framework/Headers/DSAddressModel.h
0 → 100644
| 1 | +++ a/DSAddressModuleF/Frameworks/DSAddressModule.framework/Headers/DSAddressModel.h | ||
| 1 | +// | ||
| 2 | +// DSAddressModel.h | ||
| 3 | +// iosZhaoLinNeighbouraide | ||
| 4 | +// | ||
| 5 | +// Created by 张魁 on 2017/3/14. | ||
| 6 | +// Copyright © 2017年 BIKE. All rights reserved. | ||
| 7 | +// | ||
| 8 | + | ||
| 9 | +#import <Foundation/Foundation.h> | ||
| 10 | + | ||
| 11 | +@interface DSAddressModel : NSObject | ||
| 12 | + | ||
| 13 | +/** | ||
| 14 | + 地址id | ||
| 15 | + */ | ||
| 16 | +@property (nonatomic,copy) NSString * id; | ||
| 17 | +/** | ||
| 18 | + 名称 | ||
| 19 | + */ | ||
| 20 | +@property (nonatomic,copy) NSString * name; | ||
| 21 | +/** | ||
| 22 | + 联系电话 | ||
| 23 | + */ | ||
| 24 | +@property (nonatomic,copy) NSString * phone; | ||
| 25 | +/** | ||
| 26 | + 用户填写的详细地址 | ||
| 27 | + */ | ||
| 28 | +@property (nonatomic,copy) NSString * write_address; | ||
| 29 | +/** | ||
| 30 | + 详细地址 | ||
| 31 | + */ | ||
| 32 | +@property (nonatomic,copy) NSString * address; | ||
| 33 | +/** | ||
| 34 | + 省id 0为没选择 | ||
| 35 | + */ | ||
| 36 | +@property (nonatomic,copy) NSString * province_id; | ||
| 37 | +/** | ||
| 38 | + 市id 0为没选择 | ||
| 39 | + */ | ||
| 40 | +@property (nonatomic,copy) NSString * city_id; | ||
| 41 | +/** | ||
| 42 | + 区县id 0为没选择 | ||
| 43 | + */ | ||
| 44 | +@property (nonatomic,copy) NSString * area_id; | ||
| 45 | +/** | ||
| 46 | + 2为默认地址 其他为普通 | ||
| 47 | + */ | ||
| 48 | +@property (nonatomic,assign) NSUInteger state; | ||
| 49 | +/** | ||
| 50 | + 用户id | ||
| 51 | + */ | ||
| 52 | +@property (nonatomic,copy) NSString * uid; | ||
| 53 | +/** | ||
| 54 | + 省市县名称 | ||
| 55 | + */ | ||
| 56 | +@property (nonatomic,copy) NSString * city_name; | ||
| 57 | +/** | ||
| 58 | + 定位地址 | ||
| 59 | + */ | ||
| 60 | +@property (nonatomic,copy) NSString * position_address; | ||
| 61 | +/** | ||
| 62 | + 1男 2女 | ||
| 63 | + */ | ||
| 64 | +@property (nonatomic,assign) NSUInteger sex; | ||
| 65 | +/** | ||
| 66 | + 经度 | ||
| 67 | + */ | ||
| 68 | +@property (nonatomic,assign) double longitude; | ||
| 69 | +/** | ||
| 70 | + 纬度 | ||
| 71 | + */ | ||
| 72 | +@property (nonatomic,assign) double latitude; | ||
| 73 | + | ||
| 74 | +@end |
DSAddressModuleF/Frameworks/DSAddressModule.framework/Headers/DSAddressModule-umbrella.h
0 → 100644
| 1 | +++ a/DSAddressModuleF/Frameworks/DSAddressModule.framework/Headers/DSAddressModule-umbrella.h | ||
| 1 | +#ifdef __OBJC__ | ||
| 2 | +#import <UIKit/UIKit.h> | ||
| 3 | +#else | ||
| 4 | +#ifndef FOUNDATION_EXPORT | ||
| 5 | +#if defined(__cplusplus) | ||
| 6 | +#define FOUNDATION_EXPORT extern "C" | ||
| 7 | +#else | ||
| 8 | +#define FOUNDATION_EXPORT extern | ||
| 9 | +#endif | ||
| 10 | +#endif | ||
| 11 | +#endif | ||
| 12 | + | ||
| 13 | +#import "DSAddressModulePCH.h" | ||
| 14 | +#import "UIImage+DSAddressModule.h" | ||
| 15 | +#import "DSAddressRequest.h" | ||
| 16 | +#import "DSAddressViewController.h" | ||
| 17 | +#import "DSAddrSelectAreaViewController.h" | ||
| 18 | +#import "DSEditAddressViewController.h" | ||
| 19 | +#import "DSAddrAreaModel.h" | ||
| 20 | +#import "DSAddressEnum.h" | ||
| 21 | +#import "DSAddressModel.h" | ||
| 22 | +#import "DSAddressStateModel.h" | ||
| 23 | +#import "DSAddressTableViewCell.h" | ||
| 24 | +#import "DSEditAddressTableViewCell.h" | ||
| 25 | +#import "DSRAddressTableViewCell.h" | ||
| 26 | + | ||
| 27 | +FOUNDATION_EXPORT double DSAddressModuleVersionNumber; | ||
| 28 | +FOUNDATION_EXPORT const unsigned char DSAddressModuleVersionString[]; | ||
| 29 | + |
DSAddressModuleF/Frameworks/DSAddressModule.framework/Headers/DSAddressModulePCH.h
0 → 100644
| 1 | +++ a/DSAddressModuleF/Frameworks/DSAddressModule.framework/Headers/DSAddressModulePCH.h | ||
| 1 | +// | ||
| 2 | +// DSAddressModulePCH.h | ||
| 3 | +// DSAddressModule | ||
| 4 | +// | ||
| 5 | +// Created by zhaolin on 2020/3/7. | ||
| 6 | +// | ||
| 7 | + | ||
| 8 | +#ifndef DSAddressModulePCH_h | ||
| 9 | +#define DSAddressModulePCH_h | ||
| 10 | + | ||
| 11 | +#import <DSBaseModule/DSBaseModule.h> | ||
| 12 | +#import <DSExtensionModule/DSExtensionModule.h> | ||
| 13 | +#import <DSToolsModule/DSToolsModule.h> | ||
| 14 | +#import <DSBaseControlsModule/DSBaseControlsModule.h> | ||
| 15 | +#import <DSCnliveShopSDKToolsModule/DSCnliveShopSDKToolsModule.h> | ||
| 16 | + | ||
| 17 | +#import "UIImage+DSAddressModule.h" | ||
| 18 | + | ||
| 19 | +#endif /* DSAddressModulePCH_h */ |
DSAddressModuleF/Frameworks/DSAddressModule.framework/Headers/DSAddressRequest.h
0 → 100644
| 1 | +++ a/DSAddressModuleF/Frameworks/DSAddressModule.framework/Headers/DSAddressRequest.h | ||
| 1 | +// | ||
| 2 | +// DSAddressRequest.h | ||
| 3 | +// DSCnliveShopSDK | ||
| 4 | +// | ||
| 5 | +// Created by zhaolin on 2019/4/24. | ||
| 6 | +// Copyright © 2019 BIKE. All rights reserved. | ||
| 7 | +// | ||
| 8 | +// | ||
| 9 | +// 如果[errorMessage length]>0时为接口请求失败 当errorMessage=="网络不给力"时为接口请求失败 其余为接口请求成功,但是后台返回错误 | ||
| 10 | +// | ||
| 11 | + | ||
| 12 | +#import <Foundation/Foundation.h> | ||
| 13 | +#import "DSAddressStateModel.h" | ||
| 14 | +#import "DSAddrAreaModel.h" | ||
| 15 | + | ||
| 16 | +NS_ASSUME_NONNULL_BEGIN | ||
| 17 | + | ||
| 18 | +@interface DSAddressRequest : NSObject | ||
| 19 | + | ||
| 20 | +/** | ||
| 21 | + 获取我的地址列表 | ||
| 22 | + | ||
| 23 | + @param uid 用户id | ||
| 24 | + @param storeId 店铺id 外卖用 | ||
| 25 | + @param result 回调 | ||
| 26 | + */ | ||
| 27 | ++(void)postMyAddressNewWithUid:(NSString*)uid storeId:(nullable NSString*)storeId result:(void (^)(DSAddressStateModel * model, NSString * errorMessage))result; | ||
| 28 | + | ||
| 29 | +/** | ||
| 30 | + 获取地址详情 | ||
| 31 | + | ||
| 32 | + @param addressId 地址id | ||
| 33 | + @param result 地址详情 | ||
| 34 | + */ | ||
| 35 | ++(void)postAddressInfoWithAddressId:(NSString*)addressId result:(void (^)(DSAddressModel * model, NSString * errorMessage))result; | ||
| 36 | + | ||
| 37 | +/** | ||
| 38 | + 获取省市县列表 | ||
| 39 | + | ||
| 40 | + @param pid 对应级id | ||
| 41 | + @param result 结果 | ||
| 42 | + */ | ||
| 43 | ++(void)postGetCityListWithPid:(NSString*)pid result:(void (^)(NSArray<DSAddrAreaModel*> * dataArr, NSString * errorMessage))result; | ||
| 44 | + | ||
| 45 | +/** | ||
| 46 | + 添加地址 | ||
| 47 | + | ||
| 48 | + @param uid 用户id | ||
| 49 | + @param contactPhone 电话 | ||
| 50 | + @param contactName 名称 | ||
| 51 | + @param address 详细地址 | ||
| 52 | + @param positionAddress 定位的地址 | ||
| 53 | + @param provinceId 省id | ||
| 54 | + @param cityId 市id | ||
| 55 | + @param areaId 区(县)id | ||
| 56 | + @param state 2默认地址 其他为普通 | ||
| 57 | + @param longitude 经度 | ||
| 58 | + @param latitude 纬度 | ||
| 59 | + @param sex 1 先生 2 女士 | ||
| 60 | + @param result 结果 | ||
| 61 | + */ | ||
| 62 | ++(void)postAddAddressNewWithUid:(NSString*)uid contactPhone:(NSString*)contactPhone contactName:(NSString*)contactName address:(NSString*)address positionAddress:(NSString*)positionAddress provinceId:(NSString*)provinceId cityId:(NSString*)cityId areaId:(NSString*)areaId state:(NSUInteger)state longitude:(double)longitude latitude:(double)latitude sex:(NSUInteger)sex result:(void (^)(DSAddressModel * model, NSString * errorMessage))result; | ||
| 63 | + | ||
| 64 | +/** | ||
| 65 | + 修改地址 | ||
| 66 | + | ||
| 67 | + @param addressId 地址id | ||
| 68 | + @param uid 用户id | ||
| 69 | + @param contactPhone 电话 | ||
| 70 | + @param contactName 名称 | ||
| 71 | + @param address 详细地址 | ||
| 72 | + @param provinceId 省id | ||
| 73 | + @param cityId 市id | ||
| 74 | + @param areaId 区(县)id | ||
| 75 | + @param state 2默认地址 其他为普通 | ||
| 76 | + @param sex 1 先生 2 女士 | ||
| 77 | + @param positionAddress 定位的地址 | ||
| 78 | + @param longitude 经度 | ||
| 79 | + @param latitude 纬度 | ||
| 80 | + @param result 结果 | ||
| 81 | + */ | ||
| 82 | ++(void)postEditAddressNewWithAddressId:(NSString*)addressId uid:(NSString*)uid contactPhone:(nullable NSString*)contactPhone contactName:(nullable NSString*)contactName address:(nullable NSString*)address provinceId:(nullable NSString*)provinceId cityId:(nullable NSString*)cityId areaId:(nullable NSString*)areaId state:(NSUInteger)state sex:(NSUInteger)sex positionAddress:(nullable NSString*)positionAddress longitude:(double)longitude latitude:(double)latitude result:(void (^)(DSAddressModel * model, NSString * errorMessage))result; | ||
| 83 | + | ||
| 84 | +/** | ||
| 85 | + 删除地址 | ||
| 86 | + | ||
| 87 | + @param uid 用户id | ||
| 88 | + @param addressId 地址id | ||
| 89 | + @param result 回调 | ||
| 90 | + */ | ||
| 91 | ++(void)postDelAddressWithUid:(NSString*)uid addressId:(NSString*)addressId result:(void (^)(NSString * errorMessage))result; | ||
| 92 | + | ||
| 93 | +/** | ||
| 94 | + 我的首选地址 | ||
| 95 | + | ||
| 96 | + @param uid 用户id | ||
| 97 | + @param storeId 店铺id 店铺id 外卖用 | ||
| 98 | + @param result 回调 | ||
| 99 | + */ | ||
| 100 | ++(void)postMyFirstAddressWithUid:(NSString*)uid storeId:(nullable NSString*)storeId result:(void (^)(DSAddressModel * addressModel, NSString * errorMessage))result; | ||
| 101 | + | ||
| 102 | +@end | ||
| 103 | + | ||
| 104 | +NS_ASSUME_NONNULL_END |
DSAddressModuleF/Frameworks/DSAddressModule.framework/Headers/DSAddressStateModel.h
0 → 100644
| 1 | +++ a/DSAddressModuleF/Frameworks/DSAddressModule.framework/Headers/DSAddressStateModel.h | ||
| 1 | +// | ||
| 2 | +// DSAddressStateModel.h | ||
| 3 | +// DSCnliveShopSDK | ||
| 4 | +// | ||
| 5 | +// Created by zhaolin on 2019/8/23. | ||
| 6 | +// Copyright © 2019 BIKE. All rights reserved. | ||
| 7 | +// | ||
| 8 | + | ||
| 9 | +#import <Foundation/Foundation.h> | ||
| 10 | +#import "DSAddressModel.h" | ||
| 11 | + | ||
| 12 | +NS_ASSUME_NONNULL_BEGIN | ||
| 13 | + | ||
| 14 | +@interface DSAddressStateModel : NSObject | ||
| 15 | + | ||
| 16 | +/** | ||
| 17 | + 可用地址 | ||
| 18 | + */ | ||
| 19 | +@property (nonatomic,copy) NSArray<DSAddressModel*> * enable; | ||
| 20 | +/** | ||
| 21 | + 不可用地址 | ||
| 22 | + */ | ||
| 23 | +@property (nonatomic,copy) NSArray<DSAddressModel*> * unable; | ||
| 24 | + | ||
| 25 | +@end | ||
| 26 | + | ||
| 27 | +NS_ASSUME_NONNULL_END |
DSAddressModuleF/Frameworks/DSAddressModule.framework/Headers/DSAddressTableViewCell.h
0 → 100644
| 1 | +++ a/DSAddressModuleF/Frameworks/DSAddressModule.framework/Headers/DSAddressTableViewCell.h | ||
| 1 | +// | ||
| 2 | +// DSAddressTableViewCell.h | ||
| 3 | +// iosZhaoLinNeighbouraide | ||
| 4 | +// | ||
| 5 | +// Created by 张魁 on 2017/2/20. | ||
| 6 | +// Copyright © 2017年 张魁. All rights reserved. | ||
| 7 | +// | ||
| 8 | + | ||
| 9 | +#import <DSBaseControlsModule/DSBaseControlsModule.h> | ||
| 10 | +#import "DSAddressModel.h" | ||
| 11 | +#import "DSAddressEnum.h" | ||
| 12 | + | ||
| 13 | +@interface DSAddressTableViewCell : DSTableViewCell | ||
| 14 | + | ||
| 15 | +#pragma mark - 赋值 | ||
| 16 | + | ||
| 17 | +@property (nonatomic,strong,readonly) DSAddressModel * model; | ||
| 18 | +@property (nonatomic,assign,readonly) DSAddressStyle addressStyle; | ||
| 19 | + | ||
| 20 | +-(void)setModel:(DSAddressModel*)model addressStyle:(DSAddressStyle)addressStyle; | ||
| 21 | + | ||
| 22 | +#pragma mark - 回调 | ||
| 23 | + | ||
| 24 | +@property (nonatomic,copy) void (^clickEditCallBack)(DSAddressModel * addressModel); | ||
| 25 | +@property (nonatomic,copy) void (^clickDeleteCallBack)(DSAddressModel * addressModel); | ||
| 26 | + | ||
| 27 | +@end |
DSAddressModuleF/Frameworks/DSAddressModule.framework/Headers/DSAddressViewController.h
0 → 100644
| 1 | +++ a/DSAddressModuleF/Frameworks/DSAddressModule.framework/Headers/DSAddressViewController.h | ||
| 1 | +// | ||
| 2 | +// DSAddressViewController.h | ||
| 3 | +// iosZhaoLinNeighbouraide | ||
| 4 | +// | ||
| 5 | +// Created by 张魁 on 2017/2/20. | ||
| 6 | +// Copyright © 2017年 张魁. All rights reserved. | ||
| 7 | +// | ||
| 8 | + | ||
| 9 | +#import <DSBaseControlsModule/DSBaseControlsModule.h> | ||
| 10 | +#import "DSAddressModel.h" | ||
| 11 | +#import "DSAddressEnum.h" | ||
| 12 | + | ||
| 13 | +@interface DSAddressViewController : DSBaseViewController | ||
| 14 | + | ||
| 15 | +/** | ||
| 16 | + 样式 | ||
| 17 | + */ | ||
| 18 | +@property (nonatomic,assign) DSAddressStyle style; | ||
| 19 | +/** | ||
| 20 | + 店铺id 餐厅传入 | ||
| 21 | + */ | ||
| 22 | +@property (nonatomic,copy) NSString * storeId; | ||
| 23 | +/** | ||
| 24 | + 上一次选取的地址 餐厅传入 | ||
| 25 | + */ | ||
| 26 | +@property (nonatomic,strong) DSAddressModel * lastSelectModel; | ||
| 27 | + | ||
| 28 | +#pragma mark - 回调 | ||
| 29 | + | ||
| 30 | +/** | ||
| 31 | + 选择地址对象回调 (有此方法才会点击cell返回上一页) | ||
| 32 | + */ | ||
| 33 | +@property (nonatomic,copy) void (^selectAddressCallBack)(DSAddressModel *addressObj); | ||
| 34 | + | ||
| 35 | +@end |
DSAddressModuleF/Frameworks/DSAddressModule.framework/Headers/DSEditAddressTableViewCell.h
0 → 100644
| 1 | +++ a/DSAddressModuleF/Frameworks/DSAddressModule.framework/Headers/DSEditAddressTableViewCell.h | ||
| 1 | +// | ||
| 2 | +// DSEditAddressTableViewCell.h | ||
| 3 | +// iosZhaoLinNeighbouraide | ||
| 4 | +// | ||
| 5 | +// Created by 张魁 on 2017/2/21. | ||
| 6 | +// Copyright © 2017年 张魁. All rights reserved. | ||
| 7 | +// | ||
| 8 | + | ||
| 9 | +#import <DSBaseControlsModule/DSBaseControlsModule.h> | ||
| 10 | +#import "DSAddressModel.h" | ||
| 11 | +#import "DSAddressEnum.h" | ||
| 12 | + | ||
| 13 | +@interface DSEditAddressTableViewCell : DSTableViewCell | ||
| 14 | + | ||
| 15 | +#pragma mark - UI | ||
| 16 | + | ||
| 17 | +@property (nonatomic,strong) UILabel * markTitleLab; | ||
| 18 | +@property (nonatomic,strong) UITextField * contentTextField; | ||
| 19 | +@property (nonatomic,strong) UIView * sexView; //tag=1为先生 tag=2为女士 | ||
| 20 | +@property (nonatomic,strong) DSImageView * rightImageView; | ||
| 21 | + | ||
| 22 | +#pragma mark - 赋值 | ||
| 23 | + | ||
| 24 | +@property (nonatomic,strong,readonly) DSAddressModel * model; | ||
| 25 | +@property (nonatomic,assign,readonly) DSAddressStyle style; | ||
| 26 | + | ||
| 27 | +-(void)setModel:(DSAddressModel *)model style:(DSAddressStyle)style; | ||
| 28 | + | ||
| 29 | +#pragma mark - 回调 | ||
| 30 | + | ||
| 31 | +/** | ||
| 32 | + 切换性别回调 sex=1为先生 sex=2为女士 | ||
| 33 | + */ | ||
| 34 | +@property (nonatomic,copy) void (^switchSexCallBack)(NSUInteger sex); | ||
| 35 | + | ||
| 36 | +@end |
DSAddressModuleF/Frameworks/DSAddressModule.framework/Headers/DSEditAddressViewController.h
0 → 100644
| 1 | +++ a/DSAddressModuleF/Frameworks/DSAddressModule.framework/Headers/DSEditAddressViewController.h | ||
| 1 | +// | ||
| 2 | +// ZKEditAddressViewController.h | ||
| 3 | +// iosZhaoLinNeighbouraide | ||
| 4 | +// | ||
| 5 | +// Created by 张魁 on 2017/2/21. | ||
| 6 | +// Copyright © 2017年 张魁. All rights reserved. | ||
| 7 | +// | ||
| 8 | + | ||
| 9 | +#import <DSBaseControlsModule/DSBaseControlsModule.h> | ||
| 10 | +#import "DSAddressEnum.h" | ||
| 11 | + | ||
| 12 | +@interface DSEditAddressViewController : DSBaseViewController | ||
| 13 | + | ||
| 14 | +/** | ||
| 15 | + 地址id 根据地址id有还是没有来判断是否是编辑还是添加 | ||
| 16 | + */ | ||
| 17 | +@property (nonatomic,copy) NSString * addressId; | ||
| 18 | +/** | ||
| 19 | + 样式 | ||
| 20 | + */ | ||
| 21 | +@property (nonatomic,assign) DSAddressStyle style; | ||
| 22 | + | ||
| 23 | +@end |
DSAddressModuleF/Frameworks/DSAddressModule.framework/Headers/DSRAddressTableViewCell.h
0 → 100644
| 1 | +++ a/DSAddressModuleF/Frameworks/DSAddressModule.framework/Headers/DSRAddressTableViewCell.h | ||
| 1 | +// | ||
| 2 | +// DSRAddressTableViewCell.h | ||
| 3 | +// DSCnliveShopSDK | ||
| 4 | +// | ||
| 5 | +// Created by zhaolin on 2019/7/26. | ||
| 6 | +// Copyright © 2019 BIKE. All rights reserved. | ||
| 7 | +// | ||
| 8 | + | ||
| 9 | +#import <DSBaseControlsModule/DSBaseControlsModule.h> | ||
| 10 | +#import "DSAddressModel.h" | ||
| 11 | + | ||
| 12 | +NS_ASSUME_NONNULL_BEGIN | ||
| 13 | + | ||
| 14 | +@interface DSRAddressTableViewCell : DSTableViewCell | ||
| 15 | + | ||
| 16 | +#pragma mark - 赋值 | ||
| 17 | + | ||
| 18 | +@property (nonatomic,strong,readonly) DSAddressModel * model; | ||
| 19 | +@property (nonatomic,assign,readonly) BOOL isSelect; | ||
| 20 | +@property (nonatomic,assign,readonly) BOOL isCanSelect; | ||
| 21 | + | ||
| 22 | +-(void)setModel:(DSAddressModel*)model isSelect:(BOOL)isSelect isCanSelect:(BOOL)isCanSelect; | ||
| 23 | + | ||
| 24 | +#pragma mark - 回调 | ||
| 25 | + | ||
| 26 | +/** | ||
| 27 | + 点击编辑回调 | ||
| 28 | + */ | ||
| 29 | +@property (nonatomic,copy) void (^clickEditCallBack)(DSAddressModel * model); | ||
| 30 | + | ||
| 31 | +@end | ||
| 32 | + | ||
| 33 | +NS_ASSUME_NONNULL_END |
DSAddressModuleF/Frameworks/DSAddressModule.framework/Headers/UIImage+DSAddressModule.h
0 → 100644
| 1 | +++ a/DSAddressModuleF/Frameworks/DSAddressModule.framework/Headers/UIImage+DSAddressModule.h | ||
| 1 | +// | ||
| 2 | +// UIImage+DSAddressModule.h | ||
| 3 | +// DSAddressModule | ||
| 4 | +// | ||
| 5 | +// Created by zhaolin on 2020/3/7. | ||
| 6 | +// | ||
| 7 | + | ||
| 8 | +#import <UIKit/UIKit.h> | ||
| 9 | + | ||
| 10 | +NS_ASSUME_NONNULL_BEGIN | ||
| 11 | + | ||
| 12 | +@interface UIImage (DSAddressModule) | ||
| 13 | + | ||
| 14 | +#pragma mark - 获取图片 | ||
| 15 | + | ||
| 16 | +/// DSAddressModule获取图片 | ||
| 17 | +/// @param imageName 图片名称 | ||
| 18 | ++(UIImage*)imageWithDSAddressModuleImageName:(NSString*)imageName; | ||
| 19 | + | ||
| 20 | +@end | ||
| 21 | + | ||
| 22 | +NS_ASSUME_NONNULL_END |
DSAddressModuleF/Frameworks/DSAddressModule.framework/Info.plist
0 → 100644
No preview for this file type
DSAddressModuleF/Frameworks/DSAddressModule.framework/Modules/module.modulemap
0 → 100644
Example/DSAddressModuleF.xcodeproj/project.pbxproj
0 → 100644
| 1 | +++ a/Example/DSAddressModuleF.xcodeproj/project.pbxproj | ||
| 1 | +// !$*UTF8*$! | ||
| 2 | +{ | ||
| 3 | + archiveVersion = 1; | ||
| 4 | + classes = { | ||
| 5 | + }; | ||
| 6 | + objectVersion = 46; | ||
| 7 | + objects = { | ||
| 8 | + | ||
| 9 | +/* Begin PBXBuildFile section */ | ||
| 10 | + 172661A88A1D9B8AE3A08664 /* Pods_DSAddressModuleF_Tests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5B92081E74063CA1BF36DF8D /* Pods_DSAddressModuleF_Tests.framework */; }; | ||
| 11 | + 6003F58E195388D20070C39A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58D195388D20070C39A /* Foundation.framework */; }; | ||
| 12 | + 6003F590195388D20070C39A /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58F195388D20070C39A /* CoreGraphics.framework */; }; | ||
| 13 | + 6003F592195388D20070C39A /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F591195388D20070C39A /* UIKit.framework */; }; | ||
| 14 | + 6003F598195388D20070C39A /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 6003F596195388D20070C39A /* InfoPlist.strings */; }; | ||
| 15 | + 6003F59A195388D20070C39A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F599195388D20070C39A /* main.m */; }; | ||
| 16 | + 6003F59E195388D20070C39A /* DSAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F59D195388D20070C39A /* DSAppDelegate.m */; }; | ||
| 17 | + 6003F5A7195388D20070C39A /* DSViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F5A6195388D20070C39A /* DSViewController.m */; }; | ||
| 18 | + 6003F5A9195388D20070C39A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 6003F5A8195388D20070C39A /* Images.xcassets */; }; | ||
| 19 | + 6003F5B0195388D20070C39A /* XCTest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F5AF195388D20070C39A /* XCTest.framework */; }; | ||
| 20 | + 6003F5B1195388D20070C39A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58D195388D20070C39A /* Foundation.framework */; }; | ||
| 21 | + 6003F5B2195388D20070C39A /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F591195388D20070C39A /* UIKit.framework */; }; | ||
| 22 | + 6003F5BA195388D20070C39A /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 6003F5B8195388D20070C39A /* InfoPlist.strings */; }; | ||
| 23 | + 6003F5BC195388D20070C39A /* Tests.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F5BB195388D20070C39A /* Tests.m */; }; | ||
| 24 | + 71719F9F1E33DC2100824A3D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 71719F9D1E33DC2100824A3D /* LaunchScreen.storyboard */; }; | ||
| 25 | + 873B8AEB1B1F5CCA007FD442 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 873B8AEA1B1F5CCA007FD442 /* Main.storyboard */; }; | ||
| 26 | + 9D574D31B1E72C7860C5EA87 /* Pods_DSAddressModuleF_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 548A782D37FAFC5BFD60023D /* Pods_DSAddressModuleF_Example.framework */; }; | ||
| 27 | +/* End PBXBuildFile section */ | ||
| 28 | + | ||
| 29 | +/* Begin PBXContainerItemProxy section */ | ||
| 30 | + 6003F5B3195388D20070C39A /* PBXContainerItemProxy */ = { | ||
| 31 | + isa = PBXContainerItemProxy; | ||
| 32 | + containerPortal = 6003F582195388D10070C39A /* Project object */; | ||
| 33 | + proxyType = 1; | ||
| 34 | + remoteGlobalIDString = 6003F589195388D20070C39A; | ||
| 35 | + remoteInfo = DSAddressModuleF; | ||
| 36 | + }; | ||
| 37 | +/* End PBXContainerItemProxy section */ | ||
| 38 | + | ||
| 39 | +/* Begin PBXFileReference section */ | ||
| 40 | + 2A8D56FF04B653EA53136D81 /* Pods-DSAddressModuleF_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-DSAddressModuleF_Tests.debug.xcconfig"; path = "Target Support Files/Pods-DSAddressModuleF_Tests/Pods-DSAddressModuleF_Tests.debug.xcconfig"; sourceTree = "<group>"; }; | ||
| 41 | + 3A7E46720AF952ABA10BF3C9 /* Pods-DSAddressModuleF_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-DSAddressModuleF_Tests.release.xcconfig"; path = "Target Support Files/Pods-DSAddressModuleF_Tests/Pods-DSAddressModuleF_Tests.release.xcconfig"; sourceTree = "<group>"; }; | ||
| 42 | + 3E5648A6A989EDEFA11637AF /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; name = LICENSE; path = ../LICENSE; sourceTree = "<group>"; }; | ||
| 43 | + 4E4D45DFF1158E413291D38E /* DSAddressModuleF.podspec */ = {isa = PBXFileReference; includeInIndex = 1; name = DSAddressModuleF.podspec; path = ../DSAddressModuleF.podspec; sourceTree = "<group>"; }; | ||
| 44 | + 548A782D37FAFC5BFD60023D /* Pods_DSAddressModuleF_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_DSAddressModuleF_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; | ||
| 45 | + 5B92081E74063CA1BF36DF8D /* Pods_DSAddressModuleF_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_DSAddressModuleF_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; | ||
| 46 | + 6003F58A195388D20070C39A /* DSAddressModuleF_Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = DSAddressModuleF_Example.app; sourceTree = BUILT_PRODUCTS_DIR; }; | ||
| 47 | + 6003F58D195388D20070C39A /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; }; | ||
| 48 | + 6003F58F195388D20070C39A /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; }; | ||
| 49 | + 6003F591195388D20070C39A /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; }; | ||
| 50 | + 6003F595195388D20070C39A /* DSAddressModuleF-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "DSAddressModuleF-Info.plist"; sourceTree = "<group>"; }; | ||
| 51 | + 6003F597195388D20070C39A /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; }; | ||
| 52 | + 6003F599195388D20070C39A /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; }; | ||
| 53 | + 6003F59B195388D20070C39A /* DSAddressModuleF-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "DSAddressModuleF-Prefix.pch"; sourceTree = "<group>"; }; | ||
| 54 | + 6003F59C195388D20070C39A /* DSAppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DSAppDelegate.h; sourceTree = "<group>"; }; | ||
| 55 | + 6003F59D195388D20070C39A /* DSAppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DSAppDelegate.m; sourceTree = "<group>"; }; | ||
| 56 | + 6003F5A5195388D20070C39A /* DSViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DSViewController.h; sourceTree = "<group>"; }; | ||
| 57 | + 6003F5A6195388D20070C39A /* DSViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DSViewController.m; sourceTree = "<group>"; }; | ||
| 58 | + 6003F5A8195388D20070C39A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = "<group>"; }; | ||
| 59 | + 6003F5AE195388D20070C39A /* DSAddressModuleF_Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = DSAddressModuleF_Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; | ||
| 60 | + 6003F5AF195388D20070C39A /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; }; | ||
| 61 | + 6003F5B7195388D20070C39A /* Tests-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "Tests-Info.plist"; sourceTree = "<group>"; }; | ||
| 62 | + 6003F5B9195388D20070C39A /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; }; | ||
| 63 | + 6003F5BB195388D20070C39A /* Tests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Tests.m; sourceTree = "<group>"; }; | ||
| 64 | + 606FC2411953D9B200FFA9A0 /* Tests-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Tests-Prefix.pch"; sourceTree = "<group>"; }; | ||
| 65 | + 71719F9E1E33DC2100824A3D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; }; | ||
| 66 | + 7176488270FBE296A6AECDF4 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; name = README.md; path = ../README.md; sourceTree = "<group>"; }; | ||
| 67 | + 83CFD98D44413D1BA6C87E2A /* Pods-DSAddressModuleF_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-DSAddressModuleF_Example.release.xcconfig"; path = "Target Support Files/Pods-DSAddressModuleF_Example/Pods-DSAddressModuleF_Example.release.xcconfig"; sourceTree = "<group>"; }; | ||
| 68 | + 873B8AEA1B1F5CCA007FD442 /* Main.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = Main.storyboard; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; }; | ||
| 69 | + 88436AA8ED55A6C796DE6B2A /* Pods-DSAddressModuleF_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-DSAddressModuleF_Example.debug.xcconfig"; path = "Target Support Files/Pods-DSAddressModuleF_Example/Pods-DSAddressModuleF_Example.debug.xcconfig"; sourceTree = "<group>"; }; | ||
| 70 | +/* End PBXFileReference section */ | ||
| 71 | + | ||
| 72 | +/* Begin PBXFrameworksBuildPhase section */ | ||
| 73 | + 6003F587195388D20070C39A /* Frameworks */ = { | ||
| 74 | + isa = PBXFrameworksBuildPhase; | ||
| 75 | + buildActionMask = 2147483647; | ||
| 76 | + files = ( | ||
| 77 | + 6003F590195388D20070C39A /* CoreGraphics.framework in Frameworks */, | ||
| 78 | + 6003F592195388D20070C39A /* UIKit.framework in Frameworks */, | ||
| 79 | + 6003F58E195388D20070C39A /* Foundation.framework in Frameworks */, | ||
| 80 | + 9D574D31B1E72C7860C5EA87 /* Pods_DSAddressModuleF_Example.framework in Frameworks */, | ||
| 81 | + ); | ||
| 82 | + runOnlyForDeploymentPostprocessing = 0; | ||
| 83 | + }; | ||
| 84 | + 6003F5AB195388D20070C39A /* Frameworks */ = { | ||
| 85 | + isa = PBXFrameworksBuildPhase; | ||
| 86 | + buildActionMask = 2147483647; | ||
| 87 | + files = ( | ||
| 88 | + 6003F5B0195388D20070C39A /* XCTest.framework in Frameworks */, | ||
| 89 | + 6003F5B2195388D20070C39A /* UIKit.framework in Frameworks */, | ||
| 90 | + 6003F5B1195388D20070C39A /* Foundation.framework in Frameworks */, | ||
| 91 | + 172661A88A1D9B8AE3A08664 /* Pods_DSAddressModuleF_Tests.framework in Frameworks */, | ||
| 92 | + ); | ||
| 93 | + runOnlyForDeploymentPostprocessing = 0; | ||
| 94 | + }; | ||
| 95 | +/* End PBXFrameworksBuildPhase section */ | ||
| 96 | + | ||
| 97 | +/* Begin PBXGroup section */ | ||
| 98 | + 2A002B5C4AFC9572045E136D /* Pods */ = { | ||
| 99 | + isa = PBXGroup; | ||
| 100 | + children = ( | ||
| 101 | + 88436AA8ED55A6C796DE6B2A /* Pods-DSAddressModuleF_Example.debug.xcconfig */, | ||
| 102 | + 83CFD98D44413D1BA6C87E2A /* Pods-DSAddressModuleF_Example.release.xcconfig */, | ||
| 103 | + 2A8D56FF04B653EA53136D81 /* Pods-DSAddressModuleF_Tests.debug.xcconfig */, | ||
| 104 | + 3A7E46720AF952ABA10BF3C9 /* Pods-DSAddressModuleF_Tests.release.xcconfig */, | ||
| 105 | + ); | ||
| 106 | + name = Pods; | ||
| 107 | + path = Pods; | ||
| 108 | + sourceTree = "<group>"; | ||
| 109 | + }; | ||
| 110 | + 6003F581195388D10070C39A = { | ||
| 111 | + isa = PBXGroup; | ||
| 112 | + children = ( | ||
| 113 | + 60FF7A9C1954A5C5007DD14C /* Podspec Metadata */, | ||
| 114 | + 6003F593195388D20070C39A /* Example for DSAddressModuleF */, | ||
| 115 | + 6003F5B5195388D20070C39A /* Tests */, | ||
| 116 | + 6003F58C195388D20070C39A /* Frameworks */, | ||
| 117 | + 6003F58B195388D20070C39A /* Products */, | ||
| 118 | + 2A002B5C4AFC9572045E136D /* Pods */, | ||
| 119 | + ); | ||
| 120 | + sourceTree = "<group>"; | ||
| 121 | + }; | ||
| 122 | + 6003F58B195388D20070C39A /* Products */ = { | ||
| 123 | + isa = PBXGroup; | ||
| 124 | + children = ( | ||
| 125 | + 6003F58A195388D20070C39A /* DSAddressModuleF_Example.app */, | ||
| 126 | + 6003F5AE195388D20070C39A /* DSAddressModuleF_Tests.xctest */, | ||
| 127 | + ); | ||
| 128 | + name = Products; | ||
| 129 | + sourceTree = "<group>"; | ||
| 130 | + }; | ||
| 131 | + 6003F58C195388D20070C39A /* Frameworks */ = { | ||
| 132 | + isa = PBXGroup; | ||
| 133 | + children = ( | ||
| 134 | + 6003F58D195388D20070C39A /* Foundation.framework */, | ||
| 135 | + 6003F58F195388D20070C39A /* CoreGraphics.framework */, | ||
| 136 | + 6003F591195388D20070C39A /* UIKit.framework */, | ||
| 137 | + 6003F5AF195388D20070C39A /* XCTest.framework */, | ||
| 138 | + 548A782D37FAFC5BFD60023D /* Pods_DSAddressModuleF_Example.framework */, | ||
| 139 | + 5B92081E74063CA1BF36DF8D /* Pods_DSAddressModuleF_Tests.framework */, | ||
| 140 | + ); | ||
| 141 | + name = Frameworks; | ||
| 142 | + sourceTree = "<group>"; | ||
| 143 | + }; | ||
| 144 | + 6003F593195388D20070C39A /* Example for DSAddressModuleF */ = { | ||
| 145 | + isa = PBXGroup; | ||
| 146 | + children = ( | ||
| 147 | + 6003F59C195388D20070C39A /* DSAppDelegate.h */, | ||
| 148 | + 6003F59D195388D20070C39A /* DSAppDelegate.m */, | ||
| 149 | + 873B8AEA1B1F5CCA007FD442 /* Main.storyboard */, | ||
| 150 | + 6003F5A5195388D20070C39A /* DSViewController.h */, | ||
| 151 | + 6003F5A6195388D20070C39A /* DSViewController.m */, | ||
| 152 | + 71719F9D1E33DC2100824A3D /* LaunchScreen.storyboard */, | ||
| 153 | + 6003F5A8195388D20070C39A /* Images.xcassets */, | ||
| 154 | + 6003F594195388D20070C39A /* Supporting Files */, | ||
| 155 | + ); | ||
| 156 | + name = "Example for DSAddressModuleF"; | ||
| 157 | + path = DSAddressModuleF; | ||
| 158 | + sourceTree = "<group>"; | ||
| 159 | + }; | ||
| 160 | + 6003F594195388D20070C39A /* Supporting Files */ = { | ||
| 161 | + isa = PBXGroup; | ||
| 162 | + children = ( | ||
| 163 | + 6003F595195388D20070C39A /* DSAddressModuleF-Info.plist */, | ||
| 164 | + 6003F596195388D20070C39A /* InfoPlist.strings */, | ||
| 165 | + 6003F599195388D20070C39A /* main.m */, | ||
| 166 | + 6003F59B195388D20070C39A /* DSAddressModuleF-Prefix.pch */, | ||
| 167 | + ); | ||
| 168 | + name = "Supporting Files"; | ||
| 169 | + sourceTree = "<group>"; | ||
| 170 | + }; | ||
| 171 | + 6003F5B5195388D20070C39A /* Tests */ = { | ||
| 172 | + isa = PBXGroup; | ||
| 173 | + children = ( | ||
| 174 | + 6003F5BB195388D20070C39A /* Tests.m */, | ||
| 175 | + 6003F5B6195388D20070C39A /* Supporting Files */, | ||
| 176 | + ); | ||
| 177 | + path = Tests; | ||
| 178 | + sourceTree = "<group>"; | ||
| 179 | + }; | ||
| 180 | + 6003F5B6195388D20070C39A /* Supporting Files */ = { | ||
| 181 | + isa = PBXGroup; | ||
| 182 | + children = ( | ||
| 183 | + 6003F5B7195388D20070C39A /* Tests-Info.plist */, | ||
| 184 | + 6003F5B8195388D20070C39A /* InfoPlist.strings */, | ||
| 185 | + 606FC2411953D9B200FFA9A0 /* Tests-Prefix.pch */, | ||
| 186 | + ); | ||
| 187 | + name = "Supporting Files"; | ||
| 188 | + sourceTree = "<group>"; | ||
| 189 | + }; | ||
| 190 | + 60FF7A9C1954A5C5007DD14C /* Podspec Metadata */ = { | ||
| 191 | + isa = PBXGroup; | ||
| 192 | + children = ( | ||
| 193 | + 4E4D45DFF1158E413291D38E /* DSAddressModuleF.podspec */, | ||
| 194 | + 7176488270FBE296A6AECDF4 /* README.md */, | ||
| 195 | + 3E5648A6A989EDEFA11637AF /* LICENSE */, | ||
| 196 | + ); | ||
| 197 | + name = "Podspec Metadata"; | ||
| 198 | + sourceTree = "<group>"; | ||
| 199 | + }; | ||
| 200 | +/* End PBXGroup section */ | ||
| 201 | + | ||
| 202 | +/* Begin PBXNativeTarget section */ | ||
| 203 | + 6003F589195388D20070C39A /* DSAddressModuleF_Example */ = { | ||
| 204 | + isa = PBXNativeTarget; | ||
| 205 | + buildConfigurationList = 6003F5BF195388D20070C39A /* Build configuration list for PBXNativeTarget "DSAddressModuleF_Example" */; | ||
| 206 | + buildPhases = ( | ||
| 207 | + A6B06AD546E191CB792BBFA8 /* [CP] Check Pods Manifest.lock */, | ||
| 208 | + 6003F586195388D20070C39A /* Sources */, | ||
| 209 | + 6003F587195388D20070C39A /* Frameworks */, | ||
| 210 | + 6003F588195388D20070C39A /* Resources */, | ||
| 211 | + 1879D4BB33891E8146445D5D /* [CP] Embed Pods Frameworks */, | ||
| 212 | + ); | ||
| 213 | + buildRules = ( | ||
| 214 | + ); | ||
| 215 | + dependencies = ( | ||
| 216 | + ); | ||
| 217 | + name = DSAddressModuleF_Example; | ||
| 218 | + productName = DSAddressModuleF; | ||
| 219 | + productReference = 6003F58A195388D20070C39A /* DSAddressModuleF_Example.app */; | ||
| 220 | + productType = "com.apple.product-type.application"; | ||
| 221 | + }; | ||
| 222 | + 6003F5AD195388D20070C39A /* DSAddressModuleF_Tests */ = { | ||
| 223 | + isa = PBXNativeTarget; | ||
| 224 | + buildConfigurationList = 6003F5C2195388D20070C39A /* Build configuration list for PBXNativeTarget "DSAddressModuleF_Tests" */; | ||
| 225 | + buildPhases = ( | ||
| 226 | + E0BA8E5E14734E80FB472C69 /* [CP] Check Pods Manifest.lock */, | ||
| 227 | + 6003F5AA195388D20070C39A /* Sources */, | ||
| 228 | + 6003F5AB195388D20070C39A /* Frameworks */, | ||
| 229 | + 6003F5AC195388D20070C39A /* Resources */, | ||
| 230 | + ); | ||
| 231 | + buildRules = ( | ||
| 232 | + ); | ||
| 233 | + dependencies = ( | ||
| 234 | + 6003F5B4195388D20070C39A /* PBXTargetDependency */, | ||
| 235 | + ); | ||
| 236 | + name = DSAddressModuleF_Tests; | ||
| 237 | + productName = DSAddressModuleFTests; | ||
| 238 | + productReference = 6003F5AE195388D20070C39A /* DSAddressModuleF_Tests.xctest */; | ||
| 239 | + productType = "com.apple.product-type.bundle.unit-test"; | ||
| 240 | + }; | ||
| 241 | +/* End PBXNativeTarget section */ | ||
| 242 | + | ||
| 243 | +/* Begin PBXProject section */ | ||
| 244 | + 6003F582195388D10070C39A /* Project object */ = { | ||
| 245 | + isa = PBXProject; | ||
| 246 | + attributes = { | ||
| 247 | + CLASSPREFIX = DS; | ||
| 248 | + LastUpgradeCheck = 0720; | ||
| 249 | + ORGANIZATIONNAME = "694092596@qq.com"; | ||
| 250 | + TargetAttributes = { | ||
| 251 | + 6003F5AD195388D20070C39A = { | ||
| 252 | + TestTargetID = 6003F589195388D20070C39A; | ||
| 253 | + }; | ||
| 254 | + }; | ||
| 255 | + }; | ||
| 256 | + buildConfigurationList = 6003F585195388D10070C39A /* Build configuration list for PBXProject "DSAddressModuleF" */; | ||
| 257 | + compatibilityVersion = "Xcode 3.2"; | ||
| 258 | + developmentRegion = English; | ||
| 259 | + hasScannedForEncodings = 0; | ||
| 260 | + knownRegions = ( | ||
| 261 | + en, | ||
| 262 | + Base, | ||
| 263 | + ); | ||
| 264 | + mainGroup = 6003F581195388D10070C39A; | ||
| 265 | + productRefGroup = 6003F58B195388D20070C39A /* Products */; | ||
| 266 | + projectDirPath = ""; | ||
| 267 | + projectRoot = ""; | ||
| 268 | + targets = ( | ||
| 269 | + 6003F589195388D20070C39A /* DSAddressModuleF_Example */, | ||
| 270 | + 6003F5AD195388D20070C39A /* DSAddressModuleF_Tests */, | ||
| 271 | + ); | ||
| 272 | + }; | ||
| 273 | +/* End PBXProject section */ | ||
| 274 | + | ||
| 275 | +/* Begin PBXResourcesBuildPhase section */ | ||
| 276 | + 6003F588195388D20070C39A /* Resources */ = { | ||
| 277 | + isa = PBXResourcesBuildPhase; | ||
| 278 | + buildActionMask = 2147483647; | ||
| 279 | + files = ( | ||
| 280 | + 873B8AEB1B1F5CCA007FD442 /* Main.storyboard in Resources */, | ||
| 281 | + 71719F9F1E33DC2100824A3D /* LaunchScreen.storyboard in Resources */, | ||
| 282 | + 6003F5A9195388D20070C39A /* Images.xcassets in Resources */, | ||
| 283 | + 6003F598195388D20070C39A /* InfoPlist.strings in Resources */, | ||
| 284 | + ); | ||
| 285 | + runOnlyForDeploymentPostprocessing = 0; | ||
| 286 | + }; | ||
| 287 | + 6003F5AC195388D20070C39A /* Resources */ = { | ||
| 288 | + isa = PBXResourcesBuildPhase; | ||
| 289 | + buildActionMask = 2147483647; | ||
| 290 | + files = ( | ||
| 291 | + 6003F5BA195388D20070C39A /* InfoPlist.strings in Resources */, | ||
| 292 | + ); | ||
| 293 | + runOnlyForDeploymentPostprocessing = 0; | ||
| 294 | + }; | ||
| 295 | +/* End PBXResourcesBuildPhase section */ | ||
| 296 | + | ||
| 297 | +/* Begin PBXShellScriptBuildPhase section */ | ||
| 298 | + 1879D4BB33891E8146445D5D /* [CP] Embed Pods Frameworks */ = { | ||
| 299 | + isa = PBXShellScriptBuildPhase; | ||
| 300 | + buildActionMask = 2147483647; | ||
| 301 | + files = ( | ||
| 302 | + ); | ||
| 303 | + inputPaths = ( | ||
| 304 | + "${PODS_ROOT}/Target Support Files/Pods-DSAddressModuleF_Example/Pods-DSAddressModuleF_Example-frameworks.sh", | ||
| 305 | + "${BUILT_PRODUCTS_DIR}/DSAddressModuleF/DSAddressModuleF.framework", | ||
| 306 | + ); | ||
| 307 | + name = "[CP] Embed Pods Frameworks"; | ||
| 308 | + outputPaths = ( | ||
| 309 | + "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/DSAddressModuleF.framework", | ||
| 310 | + ); | ||
| 311 | + runOnlyForDeploymentPostprocessing = 0; | ||
| 312 | + shellPath = /bin/sh; | ||
| 313 | + shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-DSAddressModuleF_Example/Pods-DSAddressModuleF_Example-frameworks.sh\"\n"; | ||
| 314 | + showEnvVarsInLog = 0; | ||
| 315 | + }; | ||
| 316 | + A6B06AD546E191CB792BBFA8 /* [CP] Check Pods Manifest.lock */ = { | ||
| 317 | + isa = PBXShellScriptBuildPhase; | ||
| 318 | + buildActionMask = 2147483647; | ||
| 319 | + files = ( | ||
| 320 | + ); | ||
| 321 | + inputFileListPaths = ( | ||
| 322 | + ); | ||
| 323 | + inputPaths = ( | ||
| 324 | + "${PODS_PODFILE_DIR_PATH}/Podfile.lock", | ||
| 325 | + "${PODS_ROOT}/Manifest.lock", | ||
| 326 | + ); | ||
| 327 | + name = "[CP] Check Pods Manifest.lock"; | ||
| 328 | + outputFileListPaths = ( | ||
| 329 | + ); | ||
| 330 | + outputPaths = ( | ||
| 331 | + "$(DERIVED_FILE_DIR)/Pods-DSAddressModuleF_Example-checkManifestLockResult.txt", | ||
| 332 | + ); | ||
| 333 | + runOnlyForDeploymentPostprocessing = 0; | ||
| 334 | + shellPath = /bin/sh; | ||
| 335 | + shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; | ||
| 336 | + showEnvVarsInLog = 0; | ||
| 337 | + }; | ||
| 338 | + E0BA8E5E14734E80FB472C69 /* [CP] Check Pods Manifest.lock */ = { | ||
| 339 | + isa = PBXShellScriptBuildPhase; | ||
| 340 | + buildActionMask = 2147483647; | ||
| 341 | + files = ( | ||
| 342 | + ); | ||
| 343 | + inputFileListPaths = ( | ||
| 344 | + ); | ||
| 345 | + inputPaths = ( | ||
| 346 | + "${PODS_PODFILE_DIR_PATH}/Podfile.lock", | ||
| 347 | + "${PODS_ROOT}/Manifest.lock", | ||
| 348 | + ); | ||
| 349 | + name = "[CP] Check Pods Manifest.lock"; | ||
| 350 | + outputFileListPaths = ( | ||
| 351 | + ); | ||
| 352 | + outputPaths = ( | ||
| 353 | + "$(DERIVED_FILE_DIR)/Pods-DSAddressModuleF_Tests-checkManifestLockResult.txt", | ||
| 354 | + ); | ||
| 355 | + runOnlyForDeploymentPostprocessing = 0; | ||
| 356 | + shellPath = /bin/sh; | ||
| 357 | + shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; | ||
| 358 | + showEnvVarsInLog = 0; | ||
| 359 | + }; | ||
| 360 | +/* End PBXShellScriptBuildPhase section */ | ||
| 361 | + | ||
| 362 | +/* Begin PBXSourcesBuildPhase section */ | ||
| 363 | + 6003F586195388D20070C39A /* Sources */ = { | ||
| 364 | + isa = PBXSourcesBuildPhase; | ||
| 365 | + buildActionMask = 2147483647; | ||
| 366 | + files = ( | ||
| 367 | + 6003F59E195388D20070C39A /* DSAppDelegate.m in Sources */, | ||
| 368 | + 6003F5A7195388D20070C39A /* DSViewController.m in Sources */, | ||
| 369 | + 6003F59A195388D20070C39A /* main.m in Sources */, | ||
| 370 | + ); | ||
| 371 | + runOnlyForDeploymentPostprocessing = 0; | ||
| 372 | + }; | ||
| 373 | + 6003F5AA195388D20070C39A /* Sources */ = { | ||
| 374 | + isa = PBXSourcesBuildPhase; | ||
| 375 | + buildActionMask = 2147483647; | ||
| 376 | + files = ( | ||
| 377 | + 6003F5BC195388D20070C39A /* Tests.m in Sources */, | ||
| 378 | + ); | ||
| 379 | + runOnlyForDeploymentPostprocessing = 0; | ||
| 380 | + }; | ||
| 381 | +/* End PBXSourcesBuildPhase section */ | ||
| 382 | + | ||
| 383 | +/* Begin PBXTargetDependency section */ | ||
| 384 | + 6003F5B4195388D20070C39A /* PBXTargetDependency */ = { | ||
| 385 | + isa = PBXTargetDependency; | ||
| 386 | + target = 6003F589195388D20070C39A /* DSAddressModuleF_Example */; | ||
| 387 | + targetProxy = 6003F5B3195388D20070C39A /* PBXContainerItemProxy */; | ||
| 388 | + }; | ||
| 389 | +/* End PBXTargetDependency section */ | ||
| 390 | + | ||
| 391 | +/* Begin PBXVariantGroup section */ | ||
| 392 | + 6003F596195388D20070C39A /* InfoPlist.strings */ = { | ||
| 393 | + isa = PBXVariantGroup; | ||
| 394 | + children = ( | ||
| 395 | + 6003F597195388D20070C39A /* en */, | ||
| 396 | + ); | ||
| 397 | + name = InfoPlist.strings; | ||
| 398 | + sourceTree = "<group>"; | ||
| 399 | + }; | ||
| 400 | + 6003F5B8195388D20070C39A /* InfoPlist.strings */ = { | ||
| 401 | + isa = PBXVariantGroup; | ||
| 402 | + children = ( | ||
| 403 | + 6003F5B9195388D20070C39A /* en */, | ||
| 404 | + ); | ||
| 405 | + name = InfoPlist.strings; | ||
| 406 | + sourceTree = "<group>"; | ||
| 407 | + }; | ||
| 408 | + 71719F9D1E33DC2100824A3D /* LaunchScreen.storyboard */ = { | ||
| 409 | + isa = PBXVariantGroup; | ||
| 410 | + children = ( | ||
| 411 | + 71719F9E1E33DC2100824A3D /* Base */, | ||
| 412 | + ); | ||
| 413 | + name = LaunchScreen.storyboard; | ||
| 414 | + sourceTree = "<group>"; | ||
| 415 | + }; | ||
| 416 | +/* End PBXVariantGroup section */ | ||
| 417 | + | ||
| 418 | +/* Begin XCBuildConfiguration section */ | ||
| 419 | + 6003F5BD195388D20070C39A /* Debug */ = { | ||
| 420 | + isa = XCBuildConfiguration; | ||
| 421 | + buildSettings = { | ||
| 422 | + ALWAYS_SEARCH_USER_PATHS = NO; | ||
| 423 | + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; | ||
| 424 | + CLANG_CXX_LIBRARY = "libc++"; | ||
| 425 | + CLANG_ENABLE_MODULES = YES; | ||
| 426 | + CLANG_ENABLE_OBJC_ARC = YES; | ||
| 427 | + CLANG_WARN_BOOL_CONVERSION = YES; | ||
| 428 | + CLANG_WARN_CONSTANT_CONVERSION = YES; | ||
| 429 | + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; | ||
| 430 | + CLANG_WARN_EMPTY_BODY = YES; | ||
| 431 | + CLANG_WARN_ENUM_CONVERSION = YES; | ||
| 432 | + CLANG_WARN_INT_CONVERSION = YES; | ||
| 433 | + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; | ||
| 434 | + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; | ||
| 435 | + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; | ||
| 436 | + COPY_PHASE_STRIP = NO; | ||
| 437 | + ENABLE_TESTABILITY = YES; | ||
| 438 | + GCC_C_LANGUAGE_STANDARD = gnu99; | ||
| 439 | + GCC_DYNAMIC_NO_PIC = NO; | ||
| 440 | + GCC_OPTIMIZATION_LEVEL = 0; | ||
| 441 | + GCC_PREPROCESSOR_DEFINITIONS = ( | ||
| 442 | + "DEBUG=1", | ||
| 443 | + "$(inherited)", | ||
| 444 | + ); | ||
| 445 | + GCC_SYMBOLS_PRIVATE_EXTERN = NO; | ||
| 446 | + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; | ||
| 447 | + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; | ||
| 448 | + GCC_WARN_UNDECLARED_SELECTOR = YES; | ||
| 449 | + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; | ||
| 450 | + GCC_WARN_UNUSED_FUNCTION = YES; | ||
| 451 | + GCC_WARN_UNUSED_VARIABLE = YES; | ||
| 452 | + IPHONEOS_DEPLOYMENT_TARGET = 9.3; | ||
| 453 | + ONLY_ACTIVE_ARCH = YES; | ||
| 454 | + SDKROOT = iphoneos; | ||
| 455 | + TARGETED_DEVICE_FAMILY = "1,2"; | ||
| 456 | + }; | ||
| 457 | + name = Debug; | ||
| 458 | + }; | ||
| 459 | + 6003F5BE195388D20070C39A /* Release */ = { | ||
| 460 | + isa = XCBuildConfiguration; | ||
| 461 | + buildSettings = { | ||
| 462 | + ALWAYS_SEARCH_USER_PATHS = NO; | ||
| 463 | + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; | ||
| 464 | + CLANG_CXX_LIBRARY = "libc++"; | ||
| 465 | + CLANG_ENABLE_MODULES = YES; | ||
| 466 | + CLANG_ENABLE_OBJC_ARC = YES; | ||
| 467 | + CLANG_WARN_BOOL_CONVERSION = YES; | ||
| 468 | + CLANG_WARN_CONSTANT_CONVERSION = YES; | ||
| 469 | + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; | ||
| 470 | + CLANG_WARN_EMPTY_BODY = YES; | ||
| 471 | + CLANG_WARN_ENUM_CONVERSION = YES; | ||
| 472 | + CLANG_WARN_INT_CONVERSION = YES; | ||
| 473 | + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; | ||
| 474 | + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; | ||
| 475 | + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; | ||
| 476 | + COPY_PHASE_STRIP = YES; | ||
| 477 | + ENABLE_NS_ASSERTIONS = NO; | ||
| 478 | + GCC_C_LANGUAGE_STANDARD = gnu99; | ||
| 479 | + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; | ||
| 480 | + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; | ||
| 481 | + GCC_WARN_UNDECLARED_SELECTOR = YES; | ||
| 482 | + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; | ||
| 483 | + GCC_WARN_UNUSED_FUNCTION = YES; | ||
| 484 | + GCC_WARN_UNUSED_VARIABLE = YES; | ||
| 485 | + IPHONEOS_DEPLOYMENT_TARGET = 9.3; | ||
| 486 | + SDKROOT = iphoneos; | ||
| 487 | + TARGETED_DEVICE_FAMILY = "1,2"; | ||
| 488 | + VALIDATE_PRODUCT = YES; | ||
| 489 | + }; | ||
| 490 | + name = Release; | ||
| 491 | + }; | ||
| 492 | + 6003F5C0195388D20070C39A /* Debug */ = { | ||
| 493 | + isa = XCBuildConfiguration; | ||
| 494 | + baseConfigurationReference = 88436AA8ED55A6C796DE6B2A /* Pods-DSAddressModuleF_Example.debug.xcconfig */; | ||
| 495 | + buildSettings = { | ||
| 496 | + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; | ||
| 497 | + GCC_PRECOMPILE_PREFIX_HEADER = YES; | ||
| 498 | + GCC_PREFIX_HEADER = "DSAddressModuleF/DSAddressModuleF-Prefix.pch"; | ||
| 499 | + INFOPLIST_FILE = "DSAddressModuleF/DSAddressModuleF-Info.plist"; | ||
| 500 | + MODULE_NAME = ExampleApp; | ||
| 501 | + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}"; | ||
| 502 | + PRODUCT_NAME = "$(TARGET_NAME)"; | ||
| 503 | + SWIFT_VERSION = 4.0; | ||
| 504 | + WRAPPER_EXTENSION = app; | ||
| 505 | + }; | ||
| 506 | + name = Debug; | ||
| 507 | + }; | ||
| 508 | + 6003F5C1195388D20070C39A /* Release */ = { | ||
| 509 | + isa = XCBuildConfiguration; | ||
| 510 | + baseConfigurationReference = 83CFD98D44413D1BA6C87E2A /* Pods-DSAddressModuleF_Example.release.xcconfig */; | ||
| 511 | + buildSettings = { | ||
| 512 | + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; | ||
| 513 | + GCC_PRECOMPILE_PREFIX_HEADER = YES; | ||
| 514 | + GCC_PREFIX_HEADER = "DSAddressModuleF/DSAddressModuleF-Prefix.pch"; | ||
| 515 | + INFOPLIST_FILE = "DSAddressModuleF/DSAddressModuleF-Info.plist"; | ||
| 516 | + MODULE_NAME = ExampleApp; | ||
| 517 | + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}"; | ||
| 518 | + PRODUCT_NAME = "$(TARGET_NAME)"; | ||
| 519 | + SWIFT_VERSION = 4.0; | ||
| 520 | + WRAPPER_EXTENSION = app; | ||
| 521 | + }; | ||
| 522 | + name = Release; | ||
| 523 | + }; | ||
| 524 | + 6003F5C3195388D20070C39A /* Debug */ = { | ||
| 525 | + isa = XCBuildConfiguration; | ||
| 526 | + baseConfigurationReference = 2A8D56FF04B653EA53136D81 /* Pods-DSAddressModuleF_Tests.debug.xcconfig */; | ||
| 527 | + buildSettings = { | ||
| 528 | + BUNDLE_LOADER = "$(TEST_HOST)"; | ||
| 529 | + FRAMEWORK_SEARCH_PATHS = ( | ||
| 530 | + "$(PLATFORM_DIR)/Developer/Library/Frameworks", | ||
| 531 | + "$(inherited)", | ||
| 532 | + "$(DEVELOPER_FRAMEWORKS_DIR)", | ||
| 533 | + ); | ||
| 534 | + GCC_PRECOMPILE_PREFIX_HEADER = YES; | ||
| 535 | + GCC_PREFIX_HEADER = "Tests/Tests-Prefix.pch"; | ||
| 536 | + GCC_PREPROCESSOR_DEFINITIONS = ( | ||
| 537 | + "DEBUG=1", | ||
| 538 | + "$(inherited)", | ||
| 539 | + ); | ||
| 540 | + INFOPLIST_FILE = "Tests/Tests-Info.plist"; | ||
| 541 | + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}"; | ||
| 542 | + PRODUCT_NAME = "$(TARGET_NAME)"; | ||
| 543 | + SWIFT_VERSION = 4.0; | ||
| 544 | + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/DSAddressModuleF_Example.app/DSAddressModuleF_Example"; | ||
| 545 | + WRAPPER_EXTENSION = xctest; | ||
| 546 | + }; | ||
| 547 | + name = Debug; | ||
| 548 | + }; | ||
| 549 | + 6003F5C4195388D20070C39A /* Release */ = { | ||
| 550 | + isa = XCBuildConfiguration; | ||
| 551 | + baseConfigurationReference = 3A7E46720AF952ABA10BF3C9 /* Pods-DSAddressModuleF_Tests.release.xcconfig */; | ||
| 552 | + buildSettings = { | ||
| 553 | + BUNDLE_LOADER = "$(TEST_HOST)"; | ||
| 554 | + FRAMEWORK_SEARCH_PATHS = ( | ||
| 555 | + "$(PLATFORM_DIR)/Developer/Library/Frameworks", | ||
| 556 | + "$(inherited)", | ||
| 557 | + "$(DEVELOPER_FRAMEWORKS_DIR)", | ||
| 558 | + ); | ||
| 559 | + GCC_PRECOMPILE_PREFIX_HEADER = YES; | ||
| 560 | + GCC_PREFIX_HEADER = "Tests/Tests-Prefix.pch"; | ||
| 561 | + INFOPLIST_FILE = "Tests/Tests-Info.plist"; | ||
| 562 | + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}"; | ||
| 563 | + PRODUCT_NAME = "$(TARGET_NAME)"; | ||
| 564 | + SWIFT_VERSION = 4.0; | ||
| 565 | + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/DSAddressModuleF_Example.app/DSAddressModuleF_Example"; | ||
| 566 | + WRAPPER_EXTENSION = xctest; | ||
| 567 | + }; | ||
| 568 | + name = Release; | ||
| 569 | + }; | ||
| 570 | +/* End XCBuildConfiguration section */ | ||
| 571 | + | ||
| 572 | +/* Begin XCConfigurationList section */ | ||
| 573 | + 6003F585195388D10070C39A /* Build configuration list for PBXProject "DSAddressModuleF" */ = { | ||
| 574 | + isa = XCConfigurationList; | ||
| 575 | + buildConfigurations = ( | ||
| 576 | + 6003F5BD195388D20070C39A /* Debug */, | ||
| 577 | + 6003F5BE195388D20070C39A /* Release */, | ||
| 578 | + ); | ||
| 579 | + defaultConfigurationIsVisible = 0; | ||
| 580 | + defaultConfigurationName = Release; | ||
| 581 | + }; | ||
| 582 | + 6003F5BF195388D20070C39A /* Build configuration list for PBXNativeTarget "DSAddressModuleF_Example" */ = { | ||
| 583 | + isa = XCConfigurationList; | ||
| 584 | + buildConfigurations = ( | ||
| 585 | + 6003F5C0195388D20070C39A /* Debug */, | ||
| 586 | + 6003F5C1195388D20070C39A /* Release */, | ||
| 587 | + ); | ||
| 588 | + defaultConfigurationIsVisible = 0; | ||
| 589 | + defaultConfigurationName = Release; | ||
| 590 | + }; | ||
| 591 | + 6003F5C2195388D20070C39A /* Build configuration list for PBXNativeTarget "DSAddressModuleF_Tests" */ = { | ||
| 592 | + isa = XCConfigurationList; | ||
| 593 | + buildConfigurations = ( | ||
| 594 | + 6003F5C3195388D20070C39A /* Debug */, | ||
| 595 | + 6003F5C4195388D20070C39A /* Release */, | ||
| 596 | + ); | ||
| 597 | + defaultConfigurationIsVisible = 0; | ||
| 598 | + defaultConfigurationName = Release; | ||
| 599 | + }; | ||
| 600 | +/* End XCConfigurationList section */ | ||
| 601 | + }; | ||
| 602 | + rootObject = 6003F582195388D10070C39A /* Project object */; | ||
| 603 | +} |
Example/DSAddressModuleF.xcodeproj/project.xcworkspace/contents.xcworkspacedata
0 → 100644
Example/DSAddressModuleF.xcodeproj/xcshareddata/xcschemes/DSAddressModuleF-Example.xcscheme
0 → 100644
| 1 | +++ a/Example/DSAddressModuleF.xcodeproj/xcshareddata/xcschemes/DSAddressModuleF-Example.xcscheme | ||
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | ||
| 2 | +<Scheme | ||
| 3 | + LastUpgradeVersion = "0720" | ||
| 4 | + version = "1.3"> | ||
| 5 | + <BuildAction | ||
| 6 | + parallelizeBuildables = "YES" | ||
| 7 | + buildImplicitDependencies = "YES"> | ||
| 8 | + <BuildActionEntries> | ||
| 9 | + <BuildActionEntry | ||
| 10 | + buildForTesting = "YES" | ||
| 11 | + buildForRunning = "YES" | ||
| 12 | + buildForProfiling = "YES" | ||
| 13 | + buildForArchiving = "YES" | ||
| 14 | + buildForAnalyzing = "YES"> | ||
| 15 | + <BuildableReference | ||
| 16 | + BuildableIdentifier = "primary" | ||
| 17 | + BlueprintIdentifier = "6003F589195388D20070C39A" | ||
| 18 | + BuildableName = "DSAddressModuleF_Example.app" | ||
| 19 | + BlueprintName = "DSAddressModuleF_Example" | ||
| 20 | + ReferencedContainer = "container:DSAddressModuleF.xcodeproj"> | ||
| 21 | + </BuildableReference> | ||
| 22 | + </BuildActionEntry> | ||
| 23 | + </BuildActionEntries> | ||
| 24 | + </BuildAction> | ||
| 25 | + <TestAction | ||
| 26 | + buildConfiguration = "Debug" | ||
| 27 | + selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB" | ||
| 28 | + selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB" | ||
| 29 | + shouldUseLaunchSchemeArgsEnv = "YES"> | ||
| 30 | + <Testables> | ||
| 31 | + <TestableReference | ||
| 32 | + skipped = "NO"> | ||
| 33 | + <BuildableReference | ||
| 34 | + BuildableIdentifier = "primary" | ||
| 35 | + BlueprintIdentifier = "6003F5AD195388D20070C39A" | ||
| 36 | + BuildableName = "DSAddressModuleF_Tests.xctest" | ||
| 37 | + BlueprintName = "DSAddressModuleF_Tests" | ||
| 38 | + ReferencedContainer = "container:DSAddressModuleF.xcodeproj"> | ||
| 39 | + </BuildableReference> | ||
| 40 | + </TestableReference> | ||
| 41 | + </Testables> | ||
| 42 | + <MacroExpansion> | ||
| 43 | + <BuildableReference | ||
| 44 | + BuildableIdentifier = "primary" | ||
| 45 | + BlueprintIdentifier = "6003F589195388D20070C39A" | ||
| 46 | + BuildableName = "DSAddressModuleF_Example.app" | ||
| 47 | + BlueprintName = "DSAddressModuleF_Example" | ||
| 48 | + ReferencedContainer = "container:DSAddressModuleF.xcodeproj"> | ||
| 49 | + </BuildableReference> | ||
| 50 | + </MacroExpansion> | ||
| 51 | + <AdditionalOptions> | ||
| 52 | + </AdditionalOptions> | ||
| 53 | + </TestAction> | ||
| 54 | + <LaunchAction | ||
| 55 | + buildConfiguration = "Debug" | ||
| 56 | + selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB" | ||
| 57 | + selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB" | ||
| 58 | + launchStyle = "0" | ||
| 59 | + useCustomWorkingDirectory = "NO" | ||
| 60 | + ignoresPersistentStateOnLaunch = "NO" | ||
| 61 | + debugDocumentVersioning = "YES" | ||
| 62 | + debugServiceExtension = "internal" | ||
| 63 | + allowLocationSimulation = "YES"> | ||
| 64 | + <BuildableProductRunnable | ||
| 65 | + runnableDebuggingMode = "0"> | ||
| 66 | + <BuildableReference | ||
| 67 | + BuildableIdentifier = "primary" | ||
| 68 | + BlueprintIdentifier = "6003F589195388D20070C39A" | ||
| 69 | + BuildableName = "DSAddressModuleF_Example.app" | ||
| 70 | + BlueprintName = "DSAddressModuleF_Example" | ||
| 71 | + ReferencedContainer = "container:DSAddressModuleF.xcodeproj"> | ||
| 72 | + </BuildableReference> | ||
| 73 | + </BuildableProductRunnable> | ||
| 74 | + <AdditionalOptions> | ||
| 75 | + </AdditionalOptions> | ||
| 76 | + </LaunchAction> | ||
| 77 | + <ProfileAction | ||
| 78 | + buildConfiguration = "Release" | ||
| 79 | + shouldUseLaunchSchemeArgsEnv = "YES" | ||
| 80 | + savedToolIdentifier = "" | ||
| 81 | + useCustomWorkingDirectory = "NO" | ||
| 82 | + debugDocumentVersioning = "YES"> | ||
| 83 | + <BuildableProductRunnable | ||
| 84 | + runnableDebuggingMode = "0"> | ||
| 85 | + <BuildableReference | ||
| 86 | + BuildableIdentifier = "primary" | ||
| 87 | + BlueprintIdentifier = "6003F589195388D20070C39A" | ||
| 88 | + BuildableName = "DSAddressModuleF_Example.app" | ||
| 89 | + BlueprintName = "DSAddressModuleF_Example" | ||
| 90 | + ReferencedContainer = "container:DSAddressModuleF.xcodeproj"> | ||
| 91 | + </BuildableReference> | ||
| 92 | + </BuildableProductRunnable> | ||
| 93 | + </ProfileAction> | ||
| 94 | + <AnalyzeAction | ||
| 95 | + buildConfiguration = "Debug"> | ||
| 96 | + </AnalyzeAction> | ||
| 97 | + <ArchiveAction | ||
| 98 | + buildConfiguration = "Release" | ||
| 99 | + revealArchiveInOrganizer = "YES"> | ||
| 100 | + </ArchiveAction> | ||
| 101 | +</Scheme> |
Example/DSAddressModuleF.xcworkspace/contents.xcworkspacedata
0 → 100644
| 1 | +++ a/Example/DSAddressModuleF.xcworkspace/contents.xcworkspacedata | ||
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | ||
| 2 | +<Workspace | ||
| 3 | + version = "1.0"> | ||
| 4 | + <FileRef | ||
| 5 | + location = "group:DSAddressModuleF.xcodeproj"> | ||
| 6 | + </FileRef> | ||
| 7 | + <FileRef | ||
| 8 | + location = "group:Pods/Pods.xcodeproj"> | ||
| 9 | + </FileRef> | ||
| 10 | +</Workspace> |
Example/DSAddressModuleF.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
0 → 100644
| 1 | +++ a/Example/DSAddressModuleF.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist | ||
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | ||
| 2 | +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
| 3 | +<plist version="1.0"> | ||
| 4 | +<dict> | ||
| 5 | + <key>IDEDidComputeMac32BitWarning</key> | ||
| 6 | + <true/> | ||
| 7 | +</dict> | ||
| 8 | +</plist> |
Example/DSAddressModuleF/Base.lproj/LaunchScreen.storyboard
0 → 100644
| 1 | +++ a/Example/DSAddressModuleF/Base.lproj/LaunchScreen.storyboard | ||
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | ||
| 2 | +<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="13771" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" launchScreen="YES" useTraitCollections="YES" colorMatched="YES" initialViewController="01J-lp-oVM"> | ||
| 3 | + <device id="retina4_7" orientation="portrait"> | ||
| 4 | + <adaptation id="fullscreen"/> | ||
| 5 | + </device> | ||
| 6 | + <dependencies> | ||
| 7 | + <deployment identifier="iOS"/> | ||
| 8 | + <plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="13772"/> | ||
| 9 | + <capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/> | ||
| 10 | + </dependencies> | ||
| 11 | + <scenes> | ||
| 12 | + <!--View Controller--> | ||
| 13 | + <scene sceneID="EHf-IW-A2E"> | ||
| 14 | + <objects> | ||
| 15 | + <viewController id="01J-lp-oVM" sceneMemberID="viewController"> | ||
| 16 | + <layoutGuides> | ||
| 17 | + <viewControllerLayoutGuide type="top" id="Llm-lL-Icb"/> | ||
| 18 | + <viewControllerLayoutGuide type="bottom" id="xb3-aO-Qok"/> | ||
| 19 | + </layoutGuides> | ||
| 20 | + <view key="view" contentMode="scaleToFill" id="Ze5-6b-2t3"> | ||
| 21 | + <rect key="frame" x="0.0" y="0.0" width="375" height="667"/> | ||
| 22 | + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> | ||
| 23 | + <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/> | ||
| 24 | + </view> | ||
| 25 | + </viewController> | ||
| 26 | + <placeholder placeholderIdentifier="IBFirstResponder" id="iYj-Kq-Ea1" userLabel="First Responder" sceneMemberID="firstResponder"/> | ||
| 27 | + </objects> | ||
| 28 | + <point key="canvasLocation" x="53" y="375"/> | ||
| 29 | + </scene> | ||
| 30 | + </scenes> | ||
| 31 | +</document> |
Example/DSAddressModuleF/Base.lproj/Main.storyboard
0 → 100644
| 1 | +++ a/Example/DSAddressModuleF/Base.lproj/Main.storyboard | ||
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | ||
| 2 | +<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="13771" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" colorMatched="YES" initialViewController="whP-gf-Uak"> | ||
| 3 | + <device id="retina4_7" orientation="portrait"> | ||
| 4 | + <adaptation id="fullscreen"/> | ||
| 5 | + </device> | ||
| 6 | + <dependencies> | ||
| 7 | + <deployment identifier="iOS"/> | ||
| 8 | + <plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="13772"/> | ||
| 9 | + <capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/> | ||
| 10 | + </dependencies> | ||
| 11 | + <scenes> | ||
| 12 | + <!--View Controller--> | ||
| 13 | + <scene sceneID="wQg-tq-qST"> | ||
| 14 | + <objects> | ||
| 15 | + <viewController id="whP-gf-Uak" customClass="DSViewController" sceneMemberID="viewController"> | ||
| 16 | + <layoutGuides> | ||
| 17 | + <viewControllerLayoutGuide type="top" id="uEw-UM-LJ8"/> | ||
| 18 | + <viewControllerLayoutGuide type="bottom" id="Mvr-aV-6Um"/> | ||
| 19 | + </layoutGuides> | ||
| 20 | + <view key="view" contentMode="scaleToFill" id="TpU-gO-2f1"> | ||
| 21 | + <rect key="frame" x="0.0" y="0.0" width="375" height="667"/> | ||
| 22 | + <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/> | ||
| 23 | + <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/> | ||
| 24 | + </view> | ||
| 25 | + </viewController> | ||
| 26 | + <placeholder placeholderIdentifier="IBFirstResponder" id="tc2-Qw-aMS" userLabel="First Responder" sceneMemberID="firstResponder"/> | ||
| 27 | + </objects> | ||
| 28 | + <point key="canvasLocation" x="305" y="433"/> | ||
| 29 | + </scene> | ||
| 30 | + </scenes> | ||
| 31 | +</document> |
Example/DSAddressModuleF/DSAddressModuleF-Info.plist
0 → 100644
| 1 | +++ a/Example/DSAddressModuleF/DSAddressModuleF-Info.plist | ||
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | ||
| 2 | +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
| 3 | +<plist version="1.0"> | ||
| 4 | +<dict> | ||
| 5 | + <key>CFBundleDevelopmentRegion</key> | ||
| 6 | + <string>en</string> | ||
| 7 | + <key>CFBundleDisplayName</key> | ||
| 8 | + <string>${PRODUCT_NAME}</string> | ||
| 9 | + <key>CFBundleExecutable</key> | ||
| 10 | + <string>${EXECUTABLE_NAME}</string> | ||
| 11 | + <key>CFBundleIdentifier</key> | ||
| 12 | + <string>$(PRODUCT_BUNDLE_IDENTIFIER)</string> | ||
| 13 | + <key>CFBundleInfoDictionaryVersion</key> | ||
| 14 | + <string>6.0</string> | ||
| 15 | + <key>CFBundleName</key> | ||
| 16 | + <string>${PRODUCT_NAME}</string> | ||
| 17 | + <key>CFBundlePackageType</key> | ||
| 18 | + <string>APPL</string> | ||
| 19 | + <key>CFBundleShortVersionString</key> | ||
| 20 | + <string>1.0</string> | ||
| 21 | + <key>CFBundleSignature</key> | ||
| 22 | + <string>????</string> | ||
| 23 | + <key>CFBundleVersion</key> | ||
| 24 | + <string>1.0</string> | ||
| 25 | + <key>LSRequiresIPhoneOS</key> | ||
| 26 | + <true/> | ||
| 27 | + <key>UILaunchStoryboardName</key> | ||
| 28 | + <string>LaunchScreen</string> | ||
| 29 | + <key>UIMainStoryboardFile</key> | ||
| 30 | + <string>Main</string> | ||
| 31 | + <key>UIRequiredDeviceCapabilities</key> | ||
| 32 | + <array> | ||
| 33 | + <string>armv7</string> | ||
| 34 | + </array> | ||
| 35 | + <key>UISupportedInterfaceOrientations</key> | ||
| 36 | + <array> | ||
| 37 | + <string>UIInterfaceOrientationPortrait</string> | ||
| 38 | + <string>UIInterfaceOrientationLandscapeLeft</string> | ||
| 39 | + <string>UIInterfaceOrientationLandscapeRight</string> | ||
| 40 | + </array> | ||
| 41 | + <key>UISupportedInterfaceOrientations~ipad</key> | ||
| 42 | + <array> | ||
| 43 | + <string>UIInterfaceOrientationPortrait</string> | ||
| 44 | + <string>UIInterfaceOrientationPortraitUpsideDown</string> | ||
| 45 | + <string>UIInterfaceOrientationLandscapeLeft</string> | ||
| 46 | + <string>UIInterfaceOrientationLandscapeRight</string> | ||
| 47 | + </array> | ||
| 48 | +</dict> | ||
| 49 | +</plist> |
Example/DSAddressModuleF/DSAddressModuleF-Prefix.pch
0 → 100644
| 1 | +++ a/Example/DSAddressModuleF/DSAddressModuleF-Prefix.pch | ||
| 1 | +// | ||
| 2 | +// Prefix header | ||
| 3 | +// | ||
| 4 | +// The contents of this file are implicitly included at the beginning of every source file. | ||
| 5 | +// | ||
| 6 | + | ||
| 7 | +#import <Availability.h> | ||
| 8 | + | ||
| 9 | +#ifndef __IPHONE_5_0 | ||
| 10 | +#warning "This project uses features only available in iOS SDK 5.0 and later." | ||
| 11 | +#endif | ||
| 12 | + | ||
| 13 | +#ifdef __OBJC__ | ||
| 14 | + @import UIKit; | ||
| 15 | + @import Foundation; | ||
| 16 | +#endif |
Example/DSAddressModuleF/DSAppDelegate.h
0 → 100644
| 1 | +++ a/Example/DSAddressModuleF/DSAppDelegate.h | ||
| 1 | +// | ||
| 2 | +// DSAppDelegate.h | ||
| 3 | +// DSAddressModuleF | ||
| 4 | +// | ||
| 5 | +// Created by 694092596@qq.com on 03/07/2020. | ||
| 6 | +// Copyright (c) 2020 694092596@qq.com. All rights reserved. | ||
| 7 | +// | ||
| 8 | + | ||
| 9 | +@import UIKit; | ||
| 10 | + | ||
| 11 | +@interface DSAppDelegate : UIResponder <UIApplicationDelegate> | ||
| 12 | + | ||
| 13 | +@property (strong, nonatomic) UIWindow *window; | ||
| 14 | + | ||
| 15 | +@end |
Example/DSAddressModuleF/DSAppDelegate.m
0 → 100644
| 1 | +++ a/Example/DSAddressModuleF/DSAppDelegate.m | ||
| 1 | +// | ||
| 2 | +// DSAppDelegate.m | ||
| 3 | +// DSAddressModuleF | ||
| 4 | +// | ||
| 5 | +// Created by 694092596@qq.com on 03/07/2020. | ||
| 6 | +// Copyright (c) 2020 694092596@qq.com. All rights reserved. | ||
| 7 | +// | ||
| 8 | + | ||
| 9 | +#import "DSAppDelegate.h" | ||
| 10 | + | ||
| 11 | +@implementation DSAppDelegate | ||
| 12 | + | ||
| 13 | +- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions | ||
| 14 | +{ | ||
| 15 | + // Override point for customization after application launch. | ||
| 16 | + return YES; | ||
| 17 | +} | ||
| 18 | + | ||
| 19 | +- (void)applicationWillResignActive:(UIApplication *)application | ||
| 20 | +{ | ||
| 21 | + // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state. | ||
| 22 | + // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game. | ||
| 23 | +} | ||
| 24 | + | ||
| 25 | +- (void)applicationDidEnterBackground:(UIApplication *)application | ||
| 26 | +{ | ||
| 27 | + // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later. | ||
| 28 | + // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. | ||
| 29 | +} | ||
| 30 | + | ||
| 31 | +- (void)applicationWillEnterForeground:(UIApplication *)application | ||
| 32 | +{ | ||
| 33 | + // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background. | ||
| 34 | +} | ||
| 35 | + | ||
| 36 | +- (void)applicationDidBecomeActive:(UIApplication *)application | ||
| 37 | +{ | ||
| 38 | + // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface. | ||
| 39 | +} | ||
| 40 | + | ||
| 41 | +- (void)applicationWillTerminate:(UIApplication *)application | ||
| 42 | +{ | ||
| 43 | + // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. | ||
| 44 | +} | ||
| 45 | + | ||
| 46 | +@end |
Example/DSAddressModuleF/DSViewController.h
0 → 100644
| 1 | +++ a/Example/DSAddressModuleF/DSViewController.h | ||
| 1 | +// | ||
| 2 | +// DSViewController.h | ||
| 3 | +// DSAddressModuleF | ||
| 4 | +// | ||
| 5 | +// Created by 694092596@qq.com on 03/07/2020. | ||
| 6 | +// Copyright (c) 2020 694092596@qq.com. All rights reserved. | ||
| 7 | +// | ||
| 8 | + | ||
| 9 | +@import UIKit; | ||
| 10 | + | ||
| 11 | +@interface DSViewController : UIViewController | ||
| 12 | + | ||
| 13 | +@end |
Example/DSAddressModuleF/DSViewController.m
0 → 100644
| 1 | +++ a/Example/DSAddressModuleF/DSViewController.m | ||
| 1 | +// | ||
| 2 | +// DSViewController.m | ||
| 3 | +// DSAddressModuleF | ||
| 4 | +// | ||
| 5 | +// Created by 694092596@qq.com on 03/07/2020. | ||
| 6 | +// Copyright (c) 2020 694092596@qq.com. All rights reserved. | ||
| 7 | +// | ||
| 8 | + | ||
| 9 | +#import "DSViewController.h" | ||
| 10 | + | ||
| 11 | +@interface DSViewController () | ||
| 12 | + | ||
| 13 | +@end | ||
| 14 | + | ||
| 15 | +@implementation DSViewController | ||
| 16 | + | ||
| 17 | +- (void)viewDidLoad | ||
| 18 | +{ | ||
| 19 | + [super viewDidLoad]; | ||
| 20 | + // Do any additional setup after loading the view, typically from a nib. | ||
| 21 | +} | ||
| 22 | + | ||
| 23 | +- (void)didReceiveMemoryWarning | ||
| 24 | +{ | ||
| 25 | + [super didReceiveMemoryWarning]; | ||
| 26 | + // Dispose of any resources that can be recreated. | ||
| 27 | +} | ||
| 28 | + | ||
| 29 | +@end |
Example/DSAddressModuleF/Images.xcassets/AppIcon.appiconset/Contents.json
0 → 100644
| 1 | +++ a/Example/DSAddressModuleF/Images.xcassets/AppIcon.appiconset/Contents.json | ||
| 1 | +{ | ||
| 2 | + "images" : [ | ||
| 3 | + { | ||
| 4 | + "idiom" : "iphone", | ||
| 5 | + "size" : "20x20", | ||
| 6 | + "scale" : "2x" | ||
| 7 | + }, | ||
| 8 | + { | ||
| 9 | + "idiom" : "iphone", | ||
| 10 | + "size" : "20x20", | ||
| 11 | + "scale" : "3x" | ||
| 12 | + }, | ||
| 13 | + { | ||
| 14 | + "idiom" : "iphone", | ||
| 15 | + "size" : "29x29", | ||
| 16 | + "scale" : "2x" | ||
| 17 | + }, | ||
| 18 | + { | ||
| 19 | + "idiom" : "iphone", | ||
| 20 | + "size" : "29x29", | ||
| 21 | + "scale" : "3x" | ||
| 22 | + }, | ||
| 23 | + { | ||
| 24 | + "idiom" : "iphone", | ||
| 25 | + "size" : "40x40", | ||
| 26 | + "scale" : "2x" | ||
| 27 | + }, | ||
| 28 | + { | ||
| 29 | + "idiom" : "iphone", | ||
| 30 | + "size" : "40x40", | ||
| 31 | + "scale" : "3x" | ||
| 32 | + }, | ||
| 33 | + { | ||
| 34 | + "idiom" : "iphone", | ||
| 35 | + "size" : "60x60", | ||
| 36 | + "scale" : "2x" | ||
| 37 | + }, | ||
| 38 | + { | ||
| 39 | + "idiom" : "iphone", | ||
| 40 | + "size" : "60x60", | ||
| 41 | + "scale" : "3x" | ||
| 42 | + }, | ||
| 43 | + { | ||
| 44 | + "idiom" : "ipad", | ||
| 45 | + "size" : "20x20", | ||
| 46 | + "scale" : "1x" | ||
| 47 | + }, | ||
| 48 | + { | ||
| 49 | + "idiom" : "ipad", | ||
| 50 | + "size" : "20x20", | ||
| 51 | + "scale" : "2x" | ||
| 52 | + }, | ||
| 53 | + { | ||
| 54 | + "idiom" : "ipad", | ||
| 55 | + "size" : "29x29", | ||
| 56 | + "scale" : "1x" | ||
| 57 | + }, | ||
| 58 | + { | ||
| 59 | + "idiom" : "ipad", | ||
| 60 | + "size" : "29x29", | ||
| 61 | + "scale" : "2x" | ||
| 62 | + }, | ||
| 63 | + { | ||
| 64 | + "idiom" : "ipad", | ||
| 65 | + "size" : "40x40", | ||
| 66 | + "scale" : "1x" | ||
| 67 | + }, | ||
| 68 | + { | ||
| 69 | + "idiom" : "ipad", | ||
| 70 | + "size" : "40x40", | ||
| 71 | + "scale" : "2x" | ||
| 72 | + }, | ||
| 73 | + { | ||
| 74 | + "idiom" : "ipad", | ||
| 75 | + "size" : "76x76", | ||
| 76 | + "scale" : "1x" | ||
| 77 | + }, | ||
| 78 | + { | ||
| 79 | + "idiom" : "ipad", | ||
| 80 | + "size" : "76x76", | ||
| 81 | + "scale" : "2x" | ||
| 82 | + }, | ||
| 83 | + { | ||
| 84 | + "idiom" : "ipad", | ||
| 85 | + "size" : "83.5x83.5", | ||
| 86 | + "scale" : "2x" | ||
| 87 | + }, | ||
| 88 | + { | ||
| 89 | + "idiom" : "ios-marketing", | ||
| 90 | + "size" : "1024x1024", | ||
| 91 | + "scale" : "1x" | ||
| 92 | + } | ||
| 93 | + ], | ||
| 94 | + "info" : { | ||
| 95 | + "version" : 1, | ||
| 96 | + "author" : "xcode" | ||
| 97 | + } | ||
| 98 | +} |
Example/DSAddressModuleF/en.lproj/InfoPlist.strings
0 → 100644
Example/DSAddressModuleF/main.m
0 → 100644
| 1 | +++ a/Example/DSAddressModuleF/main.m | ||
| 1 | +// | ||
| 2 | +// main.m | ||
| 3 | +// DSAddressModuleF | ||
| 4 | +// | ||
| 5 | +// Created by 694092596@qq.com on 03/07/2020. | ||
| 6 | +// Copyright (c) 2020 694092596@qq.com. All rights reserved. | ||
| 7 | +// | ||
| 8 | + | ||
| 9 | +@import UIKit; | ||
| 10 | +#import "DSAppDelegate.h" | ||
| 11 | + | ||
| 12 | +int main(int argc, char * argv[]) | ||
| 13 | +{ | ||
| 14 | + @autoreleasepool { | ||
| 15 | + return UIApplicationMain(argc, argv, nil, NSStringFromClass([DSAppDelegate class])); | ||
| 16 | + } | ||
| 17 | +} |
Example/Podfile
0 → 100644
Example/Podfile.lock
0 → 100644
| 1 | +++ a/Example/Podfile.lock | ||
| 1 | +PODS: | ||
| 2 | + - DSAddressModuleF (0.1.0) | ||
| 3 | + | ||
| 4 | +DEPENDENCIES: | ||
| 5 | + - DSAddressModuleF (from `../`) | ||
| 6 | + | ||
| 7 | +EXTERNAL SOURCES: | ||
| 8 | + DSAddressModuleF: | ||
| 9 | + :path: "../" | ||
| 10 | + | ||
| 11 | +SPEC CHECKSUMS: | ||
| 12 | + DSAddressModuleF: 7dae1c78c2e9342c5a57d7c10348350740b0ad1e | ||
| 13 | + | ||
| 14 | +PODFILE CHECKSUM: 2ed30e61a0cf0f418b2dc5aa9d239687daaa0b71 | ||
| 15 | + | ||
| 16 | +COCOAPODS: 1.8.4 |
Example/Pods/Local Podspecs/DSAddressModuleF.podspec.json
0 → 100644
| 1 | +++ a/Example/Pods/Local Podspecs/DSAddressModuleF.podspec.json | ||
| 1 | +{ | ||
| 2 | + "name": "DSAddressModuleF", | ||
| 3 | + "version": "0.1.0", | ||
| 4 | + "summary": "A short description of DSAddressModuleF.", | ||
| 5 | + "description": "TODO: Add long description of the pod here.", | ||
| 6 | + "homepage": "https://github.com/694092596@qq.com/DSAddressModuleF", | ||
| 7 | + "license": { | ||
| 8 | + "type": "MIT", | ||
| 9 | + "file": "LICENSE" | ||
| 10 | + }, | ||
| 11 | + "authors": { | ||
| 12 | + "694092596@qq.com": "694092596@qq.com" | ||
| 13 | + }, | ||
| 14 | + "source": { | ||
| 15 | + "git": "https://github.com/694092596@qq.com/DSAddressModuleF.git", | ||
| 16 | + "tag": "0.1.0" | ||
| 17 | + }, | ||
| 18 | + "platforms": { | ||
| 19 | + "ios": "8.0" | ||
| 20 | + }, | ||
| 21 | + "source_files": "DSAddressModuleF/Classes/**/*" | ||
| 22 | +} |
Example/Pods/Manifest.lock
0 → 100644
| 1 | +++ a/Example/Pods/Manifest.lock | ||
| 1 | +PODS: | ||
| 2 | + - DSAddressModuleF (0.1.0) | ||
| 3 | + | ||
| 4 | +DEPENDENCIES: | ||
| 5 | + - DSAddressModuleF (from `../`) | ||
| 6 | + | ||
| 7 | +EXTERNAL SOURCES: | ||
| 8 | + DSAddressModuleF: | ||
| 9 | + :path: "../" | ||
| 10 | + | ||
| 11 | +SPEC CHECKSUMS: | ||
| 12 | + DSAddressModuleF: 7dae1c78c2e9342c5a57d7c10348350740b0ad1e | ||
| 13 | + | ||
| 14 | +PODFILE CHECKSUM: 2ed30e61a0cf0f418b2dc5aa9d239687daaa0b71 | ||
| 15 | + | ||
| 16 | +COCOAPODS: 1.8.4 |
Example/Pods/Pods.xcodeproj/project.pbxproj
0 → 100644
| 1 | +++ a/Example/Pods/Pods.xcodeproj/project.pbxproj | ||
| 1 | +// !$*UTF8*$! | ||
| 2 | +{ | ||
| 3 | + archiveVersion = 1; | ||
| 4 | + classes = { | ||
| 5 | + }; | ||
| 6 | + objectVersion = 46; | ||
| 7 | + objects = { | ||
| 8 | + | ||
| 9 | +/* Begin PBXBuildFile section */ | ||
| 10 | + 14EF42EC34872C7B63605D3ACF953A3E /* Pods-DSAddressModuleF_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 30A67EBE8999F10C80CC060BD406AFF7 /* Pods-DSAddressModuleF_Tests-dummy.m */; }; | ||
| 11 | + 21D847C34F5F743A3668E0A1EC7B3381 /* ReplaceMe.m in Sources */ = {isa = PBXBuildFile; fileRef = 72F7BE921A7DF33E42E3C691B5DDB267 /* ReplaceMe.m */; }; | ||
| 12 | + A82392DE77641FD3A7848FB21BB98FA1 /* Pods-DSAddressModuleF_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = C73ACE4A205F202DC0FE10F7194FCBDD /* Pods-DSAddressModuleF_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; | ||
| 13 | + A83F08532E68F9565494DCB1D4A4B46F /* DSAddressModuleF-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = B3E06958443306D596A09BAFFB486319 /* DSAddressModuleF-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; | ||
| 14 | + A8B7B398F1481C714DCF283CFCDE9358 /* Pods-DSAddressModuleF_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CC98CFF8C8380A462555865363E20AE /* Pods-DSAddressModuleF_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; | ||
| 15 | + AA9F3A4443E29764D85F792F3FD0640B /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3212113385A8FBBDB272BD23C409FF61 /* Foundation.framework */; }; | ||
| 16 | + B2E8FA2230301AF2B626CA68B7493F6E /* Pods-DSAddressModuleF_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2AF2C188D84412AD97B3D524B9F68E99 /* Pods-DSAddressModuleF_Example-dummy.m */; }; | ||
| 17 | + CBE8505E89DFCFA3D6C6B1EDF4CC8929 /* DSAddressModuleF-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B9D6A6FBCA317760290645408E4193A2 /* DSAddressModuleF-dummy.m */; }; | ||
| 18 | + CD6E91DE2FC08183C39DE44BB78EF92F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3212113385A8FBBDB272BD23C409FF61 /* Foundation.framework */; }; | ||
| 19 | + FC5CE6CC7B9635F192087A525672F1BD /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3212113385A8FBBDB272BD23C409FF61 /* Foundation.framework */; }; | ||
| 20 | +/* End PBXBuildFile section */ | ||
| 21 | + | ||
| 22 | +/* Begin PBXContainerItemProxy section */ | ||
| 23 | + 9AC471EBA9B4E128625C80FA96BEB296 /* PBXContainerItemProxy */ = { | ||
| 24 | + isa = PBXContainerItemProxy; | ||
| 25 | + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; | ||
| 26 | + proxyType = 1; | ||
| 27 | + remoteGlobalIDString = C1BDB6430FC58EEE78FA3D32C0E4FC98; | ||
| 28 | + remoteInfo = DSAddressModuleF; | ||
| 29 | + }; | ||
| 30 | + 9DD804B44D893594EBC72DAADCE633AA /* PBXContainerItemProxy */ = { | ||
| 31 | + isa = PBXContainerItemProxy; | ||
| 32 | + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; | ||
| 33 | + proxyType = 1; | ||
| 34 | + remoteGlobalIDString = 45AF03621250C85DF7A9CDA0364477AF; | ||
| 35 | + remoteInfo = "Pods-DSAddressModuleF_Example"; | ||
| 36 | + }; | ||
| 37 | +/* End PBXContainerItemProxy section */ | ||
| 38 | + | ||
| 39 | +/* Begin PBXFileReference section */ | ||
| 40 | + 07D0C72E6DF3D17B79B2613CBC606650 /* DSAddressModuleF.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DSAddressModuleF.modulemap; sourceTree = "<group>"; }; | ||
| 41 | + 24C663286F9B3EEAC56041E05291AA12 /* DSAddressModuleF.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DSAddressModuleF.xcconfig; sourceTree = "<group>"; }; | ||
| 42 | + 2AF2C188D84412AD97B3D524B9F68E99 /* Pods-DSAddressModuleF_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-DSAddressModuleF_Example-dummy.m"; sourceTree = "<group>"; }; | ||
| 43 | + 30A67EBE8999F10C80CC060BD406AFF7 /* Pods-DSAddressModuleF_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-DSAddressModuleF_Tests-dummy.m"; sourceTree = "<group>"; }; | ||
| 44 | + 3212113385A8FBBDB272BD23C409FF61 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.2.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; | ||
| 45 | + 34F3EF5954E260D2D66D6EDBD157B543 /* Pods-DSAddressModuleF_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-DSAddressModuleF_Tests.modulemap"; sourceTree = "<group>"; }; | ||
| 46 | + 38741B0752CB89C1326980103BFBFFFD /* Pods-DSAddressModuleF_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-DSAddressModuleF_Tests-acknowledgements.markdown"; sourceTree = "<group>"; }; | ||
| 47 | + 4011E5BEDF9B02C787A9A58C1EB82DA6 /* Pods-DSAddressModuleF_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-DSAddressModuleF_Tests.debug.xcconfig"; sourceTree = "<group>"; }; | ||
| 48 | + 4280DD812424878E630AA66D9F25FB5F /* Pods_DSAddressModuleF_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_DSAddressModuleF_Example.framework; path = "Pods-DSAddressModuleF_Example.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; | ||
| 49 | + 5CC98CFF8C8380A462555865363E20AE /* Pods-DSAddressModuleF_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-DSAddressModuleF_Example-umbrella.h"; sourceTree = "<group>"; }; | ||
| 50 | + 61DE676B4266FA778A7F886E511E209F /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; }; | ||
| 51 | + 6336C78F97C7867A587376D445024797 /* Pods-DSAddressModuleF_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-DSAddressModuleF_Example-acknowledgements.markdown"; sourceTree = "<group>"; }; | ||
| 52 | + 6DE3122E1B789234F69FE11CA0FD1BB2 /* Pods-DSAddressModuleF_Example-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-DSAddressModuleF_Example-Info.plist"; sourceTree = "<group>"; }; | ||
| 53 | + 72313B8129BF810C2947B35501677405 /* Pods-DSAddressModuleF_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-DSAddressModuleF_Example-acknowledgements.plist"; sourceTree = "<group>"; }; | ||
| 54 | + 72F7BE921A7DF33E42E3C691B5DDB267 /* ReplaceMe.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ReplaceMe.m; path = DSAddressModuleF/Classes/ReplaceMe.m; sourceTree = "<group>"; }; | ||
| 55 | + 7AF45A22A7142429391A6BA22517AEC6 /* DSAddressModuleF.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = DSAddressModuleF.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; | ||
| 56 | + 7FD1DF9FB18228584F1B073C8C3A543A /* Pods-DSAddressModuleF_Tests-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-DSAddressModuleF_Tests-Info.plist"; sourceTree = "<group>"; }; | ||
| 57 | + 8A95D34B3FD2C120F51FE82977E97912 /* DSAddressModuleF-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "DSAddressModuleF-Info.plist"; sourceTree = "<group>"; }; | ||
| 58 | + 94A6F119F3313CB39681146D716B83AE /* Pods-DSAddressModuleF_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-DSAddressModuleF_Example-frameworks.sh"; sourceTree = "<group>"; }; | ||
| 59 | + 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; | ||
| 60 | + A6B3D65D8BC0A557CCDFE959F56A50AB /* Pods-DSAddressModuleF_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-DSAddressModuleF_Example.release.xcconfig"; sourceTree = "<group>"; }; | ||
| 61 | + B2D593445A14E48C67796A12A6BDD8BB /* Pods-DSAddressModuleF_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-DSAddressModuleF_Tests.release.xcconfig"; sourceTree = "<group>"; }; | ||
| 62 | + B3E06958443306D596A09BAFFB486319 /* DSAddressModuleF-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DSAddressModuleF-umbrella.h"; sourceTree = "<group>"; }; | ||
| 63 | + B901133A00EDED5599AE95EC9B930D5E /* Pods-DSAddressModuleF_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-DSAddressModuleF_Example.debug.xcconfig"; sourceTree = "<group>"; }; | ||
| 64 | + B9D6A6FBCA317760290645408E4193A2 /* DSAddressModuleF-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DSAddressModuleF-dummy.m"; sourceTree = "<group>"; }; | ||
| 65 | + BFC1397739655CCB857B75C6C5251841 /* Pods_DSAddressModuleF_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_DSAddressModuleF_Tests.framework; path = "Pods-DSAddressModuleF_Tests.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; | ||
| 66 | + C73ACE4A205F202DC0FE10F7194FCBDD /* Pods-DSAddressModuleF_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-DSAddressModuleF_Tests-umbrella.h"; sourceTree = "<group>"; }; | ||
| 67 | + DCBDFA53FA8FF6B65797DE98FAF78CA2 /* Pods-DSAddressModuleF_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-DSAddressModuleF_Tests-acknowledgements.plist"; sourceTree = "<group>"; }; | ||
| 68 | + DCBFDA5DC98B907B8D54584B213F882D /* Pods-DSAddressModuleF_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-DSAddressModuleF_Example.modulemap"; sourceTree = "<group>"; }; | ||
| 69 | + E8741BFA21AE285FE5F9971CB97DAC35 /* DSAddressModuleF-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DSAddressModuleF-prefix.pch"; sourceTree = "<group>"; }; | ||
| 70 | + F6E7AC4779C9903C19CDE7A0A1937DAD /* DSAddressModuleF.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = DSAddressModuleF.framework; path = DSAddressModuleF.framework; sourceTree = BUILT_PRODUCTS_DIR; }; | ||
| 71 | + FE27EFE31B933BDB506A75BFD88DF053 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; }; | ||
| 72 | +/* End PBXFileReference section */ | ||
| 73 | + | ||
| 74 | +/* Begin PBXFrameworksBuildPhase section */ | ||
| 75 | + 5FE2DFA173B8E1ECEB9E07F771216C0F /* Frameworks */ = { | ||
| 76 | + isa = PBXFrameworksBuildPhase; | ||
| 77 | + buildActionMask = 2147483647; | ||
| 78 | + files = ( | ||
| 79 | + CD6E91DE2FC08183C39DE44BB78EF92F /* Foundation.framework in Frameworks */, | ||
| 80 | + ); | ||
| 81 | + runOnlyForDeploymentPostprocessing = 0; | ||
| 82 | + }; | ||
| 83 | + 7A0665A5DAFBF4A5AE8658F535A786B8 /* Frameworks */ = { | ||
| 84 | + isa = PBXFrameworksBuildPhase; | ||
| 85 | + buildActionMask = 2147483647; | ||
| 86 | + files = ( | ||
| 87 | + AA9F3A4443E29764D85F792F3FD0640B /* Foundation.framework in Frameworks */, | ||
| 88 | + ); | ||
| 89 | + runOnlyForDeploymentPostprocessing = 0; | ||
| 90 | + }; | ||
| 91 | + F117B01C0C862FF94ABA9C8D81CD00AF /* Frameworks */ = { | ||
| 92 | + isa = PBXFrameworksBuildPhase; | ||
| 93 | + buildActionMask = 2147483647; | ||
| 94 | + files = ( | ||
| 95 | + FC5CE6CC7B9635F192087A525672F1BD /* Foundation.framework in Frameworks */, | ||
| 96 | + ); | ||
| 97 | + runOnlyForDeploymentPostprocessing = 0; | ||
| 98 | + }; | ||
| 99 | +/* End PBXFrameworksBuildPhase section */ | ||
| 100 | + | ||
| 101 | +/* Begin PBXGroup section */ | ||
| 102 | + 2EFB2A6421A06D141431E453545893B4 /* Pods-DSAddressModuleF_Example */ = { | ||
| 103 | + isa = PBXGroup; | ||
| 104 | + children = ( | ||
| 105 | + DCBFDA5DC98B907B8D54584B213F882D /* Pods-DSAddressModuleF_Example.modulemap */, | ||
| 106 | + 6336C78F97C7867A587376D445024797 /* Pods-DSAddressModuleF_Example-acknowledgements.markdown */, | ||
| 107 | + 72313B8129BF810C2947B35501677405 /* Pods-DSAddressModuleF_Example-acknowledgements.plist */, | ||
| 108 | + 2AF2C188D84412AD97B3D524B9F68E99 /* Pods-DSAddressModuleF_Example-dummy.m */, | ||
| 109 | + 94A6F119F3313CB39681146D716B83AE /* Pods-DSAddressModuleF_Example-frameworks.sh */, | ||
| 110 | + 6DE3122E1B789234F69FE11CA0FD1BB2 /* Pods-DSAddressModuleF_Example-Info.plist */, | ||
| 111 | + 5CC98CFF8C8380A462555865363E20AE /* Pods-DSAddressModuleF_Example-umbrella.h */, | ||
| 112 | + B901133A00EDED5599AE95EC9B930D5E /* Pods-DSAddressModuleF_Example.debug.xcconfig */, | ||
| 113 | + A6B3D65D8BC0A557CCDFE959F56A50AB /* Pods-DSAddressModuleF_Example.release.xcconfig */, | ||
| 114 | + ); | ||
| 115 | + name = "Pods-DSAddressModuleF_Example"; | ||
| 116 | + path = "Target Support Files/Pods-DSAddressModuleF_Example"; | ||
| 117 | + sourceTree = "<group>"; | ||
| 118 | + }; | ||
| 119 | + 4912EE8AB63B63B805BB11F75D0D6CCE /* Development Pods */ = { | ||
| 120 | + isa = PBXGroup; | ||
| 121 | + children = ( | ||
| 122 | + 790AF58EB8EFE1F2CF8B5EFD25D56E47 /* DSAddressModuleF */, | ||
| 123 | + ); | ||
| 124 | + name = "Development Pods"; | ||
| 125 | + sourceTree = "<group>"; | ||
| 126 | + }; | ||
| 127 | + 69A6F88FCEF7F353EFC2A9C2192CC103 /* Pods-DSAddressModuleF_Tests */ = { | ||
| 128 | + isa = PBXGroup; | ||
| 129 | + children = ( | ||
| 130 | + 34F3EF5954E260D2D66D6EDBD157B543 /* Pods-DSAddressModuleF_Tests.modulemap */, | ||
| 131 | + 38741B0752CB89C1326980103BFBFFFD /* Pods-DSAddressModuleF_Tests-acknowledgements.markdown */, | ||
| 132 | + DCBDFA53FA8FF6B65797DE98FAF78CA2 /* Pods-DSAddressModuleF_Tests-acknowledgements.plist */, | ||
| 133 | + 30A67EBE8999F10C80CC060BD406AFF7 /* Pods-DSAddressModuleF_Tests-dummy.m */, | ||
| 134 | + 7FD1DF9FB18228584F1B073C8C3A543A /* Pods-DSAddressModuleF_Tests-Info.plist */, | ||
| 135 | + C73ACE4A205F202DC0FE10F7194FCBDD /* Pods-DSAddressModuleF_Tests-umbrella.h */, | ||
| 136 | + 4011E5BEDF9B02C787A9A58C1EB82DA6 /* Pods-DSAddressModuleF_Tests.debug.xcconfig */, | ||
| 137 | + B2D593445A14E48C67796A12A6BDD8BB /* Pods-DSAddressModuleF_Tests.release.xcconfig */, | ||
| 138 | + ); | ||
| 139 | + name = "Pods-DSAddressModuleF_Tests"; | ||
| 140 | + path = "Target Support Files/Pods-DSAddressModuleF_Tests"; | ||
| 141 | + sourceTree = "<group>"; | ||
| 142 | + }; | ||
| 143 | + 790AF58EB8EFE1F2CF8B5EFD25D56E47 /* DSAddressModuleF */ = { | ||
| 144 | + isa = PBXGroup; | ||
| 145 | + children = ( | ||
| 146 | + 72F7BE921A7DF33E42E3C691B5DDB267 /* ReplaceMe.m */, | ||
| 147 | + FD245857E8F13BCF6AA021EAF207F768 /* Pod */, | ||
| 148 | + 919829A09D6807B0F859ADEA1A8C49E9 /* Support Files */, | ||
| 149 | + ); | ||
| 150 | + name = DSAddressModuleF; | ||
| 151 | + path = ../..; | ||
| 152 | + sourceTree = "<group>"; | ||
| 153 | + }; | ||
| 154 | + 88D3D8A74F497EFE01B7F11DDA96A301 /* Products */ = { | ||
| 155 | + isa = PBXGroup; | ||
| 156 | + children = ( | ||
| 157 | + F6E7AC4779C9903C19CDE7A0A1937DAD /* DSAddressModuleF.framework */, | ||
| 158 | + 4280DD812424878E630AA66D9F25FB5F /* Pods_DSAddressModuleF_Example.framework */, | ||
| 159 | + BFC1397739655CCB857B75C6C5251841 /* Pods_DSAddressModuleF_Tests.framework */, | ||
| 160 | + ); | ||
| 161 | + name = Products; | ||
| 162 | + sourceTree = "<group>"; | ||
| 163 | + }; | ||
| 164 | + 919829A09D6807B0F859ADEA1A8C49E9 /* Support Files */ = { | ||
| 165 | + isa = PBXGroup; | ||
| 166 | + children = ( | ||
| 167 | + 07D0C72E6DF3D17B79B2613CBC606650 /* DSAddressModuleF.modulemap */, | ||
| 168 | + 24C663286F9B3EEAC56041E05291AA12 /* DSAddressModuleF.xcconfig */, | ||
| 169 | + B9D6A6FBCA317760290645408E4193A2 /* DSAddressModuleF-dummy.m */, | ||
| 170 | + 8A95D34B3FD2C120F51FE82977E97912 /* DSAddressModuleF-Info.plist */, | ||
| 171 | + E8741BFA21AE285FE5F9971CB97DAC35 /* DSAddressModuleF-prefix.pch */, | ||
| 172 | + B3E06958443306D596A09BAFFB486319 /* DSAddressModuleF-umbrella.h */, | ||
| 173 | + ); | ||
| 174 | + name = "Support Files"; | ||
| 175 | + path = "Example/Pods/Target Support Files/DSAddressModuleF"; | ||
| 176 | + sourceTree = "<group>"; | ||
| 177 | + }; | ||
| 178 | + BF50B612693A110EC9A6DE35E1DA0407 /* Targets Support Files */ = { | ||
| 179 | + isa = PBXGroup; | ||
| 180 | + children = ( | ||
| 181 | + 2EFB2A6421A06D141431E453545893B4 /* Pods-DSAddressModuleF_Example */, | ||
| 182 | + 69A6F88FCEF7F353EFC2A9C2192CC103 /* Pods-DSAddressModuleF_Tests */, | ||
| 183 | + ); | ||
| 184 | + name = "Targets Support Files"; | ||
| 185 | + sourceTree = "<group>"; | ||
| 186 | + }; | ||
| 187 | + C0834CEBB1379A84116EF29F93051C60 /* iOS */ = { | ||
| 188 | + isa = PBXGroup; | ||
| 189 | + children = ( | ||
| 190 | + 3212113385A8FBBDB272BD23C409FF61 /* Foundation.framework */, | ||
| 191 | + ); | ||
| 192 | + name = iOS; | ||
| 193 | + sourceTree = "<group>"; | ||
| 194 | + }; | ||
| 195 | + CF1408CF629C7361332E53B88F7BD30C = { | ||
| 196 | + isa = PBXGroup; | ||
| 197 | + children = ( | ||
| 198 | + 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */, | ||
| 199 | + 4912EE8AB63B63B805BB11F75D0D6CCE /* Development Pods */, | ||
| 200 | + D210D550F4EA176C3123ED886F8F87F5 /* Frameworks */, | ||
| 201 | + 88D3D8A74F497EFE01B7F11DDA96A301 /* Products */, | ||
| 202 | + BF50B612693A110EC9A6DE35E1DA0407 /* Targets Support Files */, | ||
| 203 | + ); | ||
| 204 | + sourceTree = "<group>"; | ||
| 205 | + }; | ||
| 206 | + D210D550F4EA176C3123ED886F8F87F5 /* Frameworks */ = { | ||
| 207 | + isa = PBXGroup; | ||
| 208 | + children = ( | ||
| 209 | + C0834CEBB1379A84116EF29F93051C60 /* iOS */, | ||
| 210 | + ); | ||
| 211 | + name = Frameworks; | ||
| 212 | + sourceTree = "<group>"; | ||
| 213 | + }; | ||
| 214 | + FD245857E8F13BCF6AA021EAF207F768 /* Pod */ = { | ||
| 215 | + isa = PBXGroup; | ||
| 216 | + children = ( | ||
| 217 | + 7AF45A22A7142429391A6BA22517AEC6 /* DSAddressModuleF.podspec */, | ||
| 218 | + 61DE676B4266FA778A7F886E511E209F /* LICENSE */, | ||
| 219 | + FE27EFE31B933BDB506A75BFD88DF053 /* README.md */, | ||
| 220 | + ); | ||
| 221 | + name = Pod; | ||
| 222 | + sourceTree = "<group>"; | ||
| 223 | + }; | ||
| 224 | +/* End PBXGroup section */ | ||
| 225 | + | ||
| 226 | +/* Begin PBXHeadersBuildPhase section */ | ||
| 227 | + 0E5262474CFF7186BE245FA3B51E046E /* Headers */ = { | ||
| 228 | + isa = PBXHeadersBuildPhase; | ||
| 229 | + buildActionMask = 2147483647; | ||
| 230 | + files = ( | ||
| 231 | + A82392DE77641FD3A7848FB21BB98FA1 /* Pods-DSAddressModuleF_Tests-umbrella.h in Headers */, | ||
| 232 | + ); | ||
| 233 | + runOnlyForDeploymentPostprocessing = 0; | ||
| 234 | + }; | ||
| 235 | + 347DC3C9DD883A0B00B7614B188C0E4F /* Headers */ = { | ||
| 236 | + isa = PBXHeadersBuildPhase; | ||
| 237 | + buildActionMask = 2147483647; | ||
| 238 | + files = ( | ||
| 239 | + A8B7B398F1481C714DCF283CFCDE9358 /* Pods-DSAddressModuleF_Example-umbrella.h in Headers */, | ||
| 240 | + ); | ||
| 241 | + runOnlyForDeploymentPostprocessing = 0; | ||
| 242 | + }; | ||
| 243 | + 4D9E69F46BDA0EF0383D426E17B75957 /* Headers */ = { | ||
| 244 | + isa = PBXHeadersBuildPhase; | ||
| 245 | + buildActionMask = 2147483647; | ||
| 246 | + files = ( | ||
| 247 | + A83F08532E68F9565494DCB1D4A4B46F /* DSAddressModuleF-umbrella.h in Headers */, | ||
| 248 | + ); | ||
| 249 | + runOnlyForDeploymentPostprocessing = 0; | ||
| 250 | + }; | ||
| 251 | +/* End PBXHeadersBuildPhase section */ | ||
| 252 | + | ||
| 253 | +/* Begin PBXNativeTarget section */ | ||
| 254 | + 45AF03621250C85DF7A9CDA0364477AF /* Pods-DSAddressModuleF_Example */ = { | ||
| 255 | + isa = PBXNativeTarget; | ||
| 256 | + buildConfigurationList = 57DBDB9C9B3BD36504F923CEBB59D7F1 /* Build configuration list for PBXNativeTarget "Pods-DSAddressModuleF_Example" */; | ||
| 257 | + buildPhases = ( | ||
| 258 | + 347DC3C9DD883A0B00B7614B188C0E4F /* Headers */, | ||
| 259 | + 29E3E1B83C5E9E33D226B054CC48388F /* Sources */, | ||
| 260 | + 7A0665A5DAFBF4A5AE8658F535A786B8 /* Frameworks */, | ||
| 261 | + D5326645FAE1893E6BB95B1A0503724C /* Resources */, | ||
| 262 | + ); | ||
| 263 | + buildRules = ( | ||
| 264 | + ); | ||
| 265 | + dependencies = ( | ||
| 266 | + D63EDAAEF1E198557907CFA958117B26 /* PBXTargetDependency */, | ||
| 267 | + ); | ||
| 268 | + name = "Pods-DSAddressModuleF_Example"; | ||
| 269 | + productName = "Pods-DSAddressModuleF_Example"; | ||
| 270 | + productReference = 4280DD812424878E630AA66D9F25FB5F /* Pods_DSAddressModuleF_Example.framework */; | ||
| 271 | + productType = "com.apple.product-type.framework"; | ||
| 272 | + }; | ||
| 273 | + 955865EA90B8A10D6CBDE30F7E220B04 /* Pods-DSAddressModuleF_Tests */ = { | ||
| 274 | + isa = PBXNativeTarget; | ||
| 275 | + buildConfigurationList = C73835027BCEC9EF32387B62105CB8F9 /* Build configuration list for PBXNativeTarget "Pods-DSAddressModuleF_Tests" */; | ||
| 276 | + buildPhases = ( | ||
| 277 | + 0E5262474CFF7186BE245FA3B51E046E /* Headers */, | ||
| 278 | + F3128760CE96C82BCBD246069A0139E0 /* Sources */, | ||
| 279 | + F117B01C0C862FF94ABA9C8D81CD00AF /* Frameworks */, | ||
| 280 | + FE596D069D6269A8C8979D290F4D4F7D /* Resources */, | ||
| 281 | + ); | ||
| 282 | + buildRules = ( | ||
| 283 | + ); | ||
| 284 | + dependencies = ( | ||
| 285 | + 7BF24C72623477F69C43857EE61E97E9 /* PBXTargetDependency */, | ||
| 286 | + ); | ||
| 287 | + name = "Pods-DSAddressModuleF_Tests"; | ||
| 288 | + productName = "Pods-DSAddressModuleF_Tests"; | ||
| 289 | + productReference = BFC1397739655CCB857B75C6C5251841 /* Pods_DSAddressModuleF_Tests.framework */; | ||
| 290 | + productType = "com.apple.product-type.framework"; | ||
| 291 | + }; | ||
| 292 | + C1BDB6430FC58EEE78FA3D32C0E4FC98 /* DSAddressModuleF */ = { | ||
| 293 | + isa = PBXNativeTarget; | ||
| 294 | + buildConfigurationList = 8A34E6D5B023514455F145D51F7184ED /* Build configuration list for PBXNativeTarget "DSAddressModuleF" */; | ||
| 295 | + buildPhases = ( | ||
| 296 | + 4D9E69F46BDA0EF0383D426E17B75957 /* Headers */, | ||
| 297 | + 58172F204D5D3E0198480165149DF1B8 /* Sources */, | ||
| 298 | + 5FE2DFA173B8E1ECEB9E07F771216C0F /* Frameworks */, | ||
| 299 | + 968DD9A41435C3007348397109D2A4DF /* Resources */, | ||
| 300 | + ); | ||
| 301 | + buildRules = ( | ||
| 302 | + ); | ||
| 303 | + dependencies = ( | ||
| 304 | + ); | ||
| 305 | + name = DSAddressModuleF; | ||
| 306 | + productName = DSAddressModuleF; | ||
| 307 | + productReference = F6E7AC4779C9903C19CDE7A0A1937DAD /* DSAddressModuleF.framework */; | ||
| 308 | + productType = "com.apple.product-type.framework"; | ||
| 309 | + }; | ||
| 310 | +/* End PBXNativeTarget section */ | ||
| 311 | + | ||
| 312 | +/* Begin PBXProject section */ | ||
| 313 | + BFDFE7DC352907FC980B868725387E98 /* Project object */ = { | ||
| 314 | + isa = PBXProject; | ||
| 315 | + attributes = { | ||
| 316 | + LastSwiftUpdateCheck = 1100; | ||
| 317 | + LastUpgradeCheck = 1100; | ||
| 318 | + }; | ||
| 319 | + buildConfigurationList = 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */; | ||
| 320 | + compatibilityVersion = "Xcode 3.2"; | ||
| 321 | + developmentRegion = en; | ||
| 322 | + hasScannedForEncodings = 0; | ||
| 323 | + knownRegions = ( | ||
| 324 | + en, | ||
| 325 | + Base, | ||
| 326 | + ); | ||
| 327 | + mainGroup = CF1408CF629C7361332E53B88F7BD30C; | ||
| 328 | + productRefGroup = 88D3D8A74F497EFE01B7F11DDA96A301 /* Products */; | ||
| 329 | + projectDirPath = ""; | ||
| 330 | + projectRoot = ""; | ||
| 331 | + targets = ( | ||
| 332 | + C1BDB6430FC58EEE78FA3D32C0E4FC98 /* DSAddressModuleF */, | ||
| 333 | + 45AF03621250C85DF7A9CDA0364477AF /* Pods-DSAddressModuleF_Example */, | ||
| 334 | + 955865EA90B8A10D6CBDE30F7E220B04 /* Pods-DSAddressModuleF_Tests */, | ||
| 335 | + ); | ||
| 336 | + }; | ||
| 337 | +/* End PBXProject section */ | ||
| 338 | + | ||
| 339 | +/* Begin PBXResourcesBuildPhase section */ | ||
| 340 | + 968DD9A41435C3007348397109D2A4DF /* Resources */ = { | ||
| 341 | + isa = PBXResourcesBuildPhase; | ||
| 342 | + buildActionMask = 2147483647; | ||
| 343 | + files = ( | ||
| 344 | + ); | ||
| 345 | + runOnlyForDeploymentPostprocessing = 0; | ||
| 346 | + }; | ||
| 347 | + D5326645FAE1893E6BB95B1A0503724C /* Resources */ = { | ||
| 348 | + isa = PBXResourcesBuildPhase; | ||
| 349 | + buildActionMask = 2147483647; | ||
| 350 | + files = ( | ||
| 351 | + ); | ||
| 352 | + runOnlyForDeploymentPostprocessing = 0; | ||
| 353 | + }; | ||
| 354 | + FE596D069D6269A8C8979D290F4D4F7D /* Resources */ = { | ||
| 355 | + isa = PBXResourcesBuildPhase; | ||
| 356 | + buildActionMask = 2147483647; | ||
| 357 | + files = ( | ||
| 358 | + ); | ||
| 359 | + runOnlyForDeploymentPostprocessing = 0; | ||
| 360 | + }; | ||
| 361 | +/* End PBXResourcesBuildPhase section */ | ||
| 362 | + | ||
| 363 | +/* Begin PBXSourcesBuildPhase section */ | ||
| 364 | + 29E3E1B83C5E9E33D226B054CC48388F /* Sources */ = { | ||
| 365 | + isa = PBXSourcesBuildPhase; | ||
| 366 | + buildActionMask = 2147483647; | ||
| 367 | + files = ( | ||
| 368 | + B2E8FA2230301AF2B626CA68B7493F6E /* Pods-DSAddressModuleF_Example-dummy.m in Sources */, | ||
| 369 | + ); | ||
| 370 | + runOnlyForDeploymentPostprocessing = 0; | ||
| 371 | + }; | ||
| 372 | + 58172F204D5D3E0198480165149DF1B8 /* Sources */ = { | ||
| 373 | + isa = PBXSourcesBuildPhase; | ||
| 374 | + buildActionMask = 2147483647; | ||
| 375 | + files = ( | ||
| 376 | + CBE8505E89DFCFA3D6C6B1EDF4CC8929 /* DSAddressModuleF-dummy.m in Sources */, | ||
| 377 | + 21D847C34F5F743A3668E0A1EC7B3381 /* ReplaceMe.m in Sources */, | ||
| 378 | + ); | ||
| 379 | + runOnlyForDeploymentPostprocessing = 0; | ||
| 380 | + }; | ||
| 381 | + F3128760CE96C82BCBD246069A0139E0 /* Sources */ = { | ||
| 382 | + isa = PBXSourcesBuildPhase; | ||
| 383 | + buildActionMask = 2147483647; | ||
| 384 | + files = ( | ||
| 385 | + 14EF42EC34872C7B63605D3ACF953A3E /* Pods-DSAddressModuleF_Tests-dummy.m in Sources */, | ||
| 386 | + ); | ||
| 387 | + runOnlyForDeploymentPostprocessing = 0; | ||
| 388 | + }; | ||
| 389 | +/* End PBXSourcesBuildPhase section */ | ||
| 390 | + | ||
| 391 | +/* Begin PBXTargetDependency section */ | ||
| 392 | + 7BF24C72623477F69C43857EE61E97E9 /* PBXTargetDependency */ = { | ||
| 393 | + isa = PBXTargetDependency; | ||
| 394 | + name = "Pods-DSAddressModuleF_Example"; | ||
| 395 | + target = 45AF03621250C85DF7A9CDA0364477AF /* Pods-DSAddressModuleF_Example */; | ||
| 396 | + targetProxy = 9DD804B44D893594EBC72DAADCE633AA /* PBXContainerItemProxy */; | ||
| 397 | + }; | ||
| 398 | + D63EDAAEF1E198557907CFA958117B26 /* PBXTargetDependency */ = { | ||
| 399 | + isa = PBXTargetDependency; | ||
| 400 | + name = DSAddressModuleF; | ||
| 401 | + target = C1BDB6430FC58EEE78FA3D32C0E4FC98 /* DSAddressModuleF */; | ||
| 402 | + targetProxy = 9AC471EBA9B4E128625C80FA96BEB296 /* PBXContainerItemProxy */; | ||
| 403 | + }; | ||
| 404 | +/* End PBXTargetDependency section */ | ||
| 405 | + | ||
| 406 | +/* Begin XCBuildConfiguration section */ | ||
| 407 | + 248E750F4E3A0082589CD2D5FE106448 /* Release */ = { | ||
| 408 | + isa = XCBuildConfiguration; | ||
| 409 | + baseConfigurationReference = A6B3D65D8BC0A557CCDFE959F56A50AB /* Pods-DSAddressModuleF_Example.release.xcconfig */; | ||
| 410 | + buildSettings = { | ||
| 411 | + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; | ||
| 412 | + CODE_SIGN_IDENTITY = ""; | ||
| 413 | + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; | ||
| 414 | + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; | ||
| 415 | + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; | ||
| 416 | + CURRENT_PROJECT_VERSION = 1; | ||
| 417 | + DEFINES_MODULE = YES; | ||
| 418 | + DYLIB_COMPATIBILITY_VERSION = 1; | ||
| 419 | + DYLIB_CURRENT_VERSION = 1; | ||
| 420 | + DYLIB_INSTALL_NAME_BASE = "@rpath"; | ||
| 421 | + INFOPLIST_FILE = "Target Support Files/Pods-DSAddressModuleF_Example/Pods-DSAddressModuleF_Example-Info.plist"; | ||
| 422 | + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; | ||
| 423 | + IPHONEOS_DEPLOYMENT_TARGET = 8.0; | ||
| 424 | + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; | ||
| 425 | + MACH_O_TYPE = staticlib; | ||
| 426 | + MODULEMAP_FILE = "Target Support Files/Pods-DSAddressModuleF_Example/Pods-DSAddressModuleF_Example.modulemap"; | ||
| 427 | + OTHER_LDFLAGS = ""; | ||
| 428 | + OTHER_LIBTOOLFLAGS = ""; | ||
| 429 | + PODS_ROOT = "$(SRCROOT)"; | ||
| 430 | + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; | ||
| 431 | + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; | ||
| 432 | + SDKROOT = iphoneos; | ||
| 433 | + SKIP_INSTALL = YES; | ||
| 434 | + TARGETED_DEVICE_FAMILY = "1,2"; | ||
| 435 | + VALIDATE_PRODUCT = YES; | ||
| 436 | + VERSIONING_SYSTEM = "apple-generic"; | ||
| 437 | + VERSION_INFO_PREFIX = ""; | ||
| 438 | + }; | ||
| 439 | + name = Release; | ||
| 440 | + }; | ||
| 441 | + 3D1F9721BF9391429EF295E42FAA68AB /* Release */ = { | ||
| 442 | + isa = XCBuildConfiguration; | ||
| 443 | + baseConfigurationReference = B2D593445A14E48C67796A12A6BDD8BB /* Pods-DSAddressModuleF_Tests.release.xcconfig */; | ||
| 444 | + buildSettings = { | ||
| 445 | + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; | ||
| 446 | + CODE_SIGN_IDENTITY = ""; | ||
| 447 | + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; | ||
| 448 | + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; | ||
| 449 | + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; | ||
| 450 | + CURRENT_PROJECT_VERSION = 1; | ||
| 451 | + DEFINES_MODULE = YES; | ||
| 452 | + DYLIB_COMPATIBILITY_VERSION = 1; | ||
| 453 | + DYLIB_CURRENT_VERSION = 1; | ||
| 454 | + DYLIB_INSTALL_NAME_BASE = "@rpath"; | ||
| 455 | + INFOPLIST_FILE = "Target Support Files/Pods-DSAddressModuleF_Tests/Pods-DSAddressModuleF_Tests-Info.plist"; | ||
| 456 | + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; | ||
| 457 | + IPHONEOS_DEPLOYMENT_TARGET = 8.0; | ||
| 458 | + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; | ||
| 459 | + MACH_O_TYPE = staticlib; | ||
| 460 | + MODULEMAP_FILE = "Target Support Files/Pods-DSAddressModuleF_Tests/Pods-DSAddressModuleF_Tests.modulemap"; | ||
| 461 | + OTHER_LDFLAGS = ""; | ||
| 462 | + OTHER_LIBTOOLFLAGS = ""; | ||
| 463 | + PODS_ROOT = "$(SRCROOT)"; | ||
| 464 | + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; | ||
| 465 | + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; | ||
| 466 | + SDKROOT = iphoneos; | ||
| 467 | + SKIP_INSTALL = YES; | ||
| 468 | + TARGETED_DEVICE_FAMILY = "1,2"; | ||
| 469 | + VALIDATE_PRODUCT = YES; | ||
| 470 | + VERSIONING_SYSTEM = "apple-generic"; | ||
| 471 | + VERSION_INFO_PREFIX = ""; | ||
| 472 | + }; | ||
| 473 | + name = Release; | ||
| 474 | + }; | ||
| 475 | + 4BE66A09A74FD25164AAB3C2645B9B93 /* Release */ = { | ||
| 476 | + isa = XCBuildConfiguration; | ||
| 477 | + buildSettings = { | ||
| 478 | + ALWAYS_SEARCH_USER_PATHS = NO; | ||
| 479 | + CLANG_ANALYZER_NONNULL = YES; | ||
| 480 | + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; | ||
| 481 | + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; | ||
| 482 | + CLANG_CXX_LIBRARY = "libc++"; | ||
| 483 | + CLANG_ENABLE_MODULES = YES; | ||
| 484 | + CLANG_ENABLE_OBJC_ARC = YES; | ||
| 485 | + CLANG_ENABLE_OBJC_WEAK = YES; | ||
| 486 | + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; | ||
| 487 | + CLANG_WARN_BOOL_CONVERSION = YES; | ||
| 488 | + CLANG_WARN_COMMA = YES; | ||
| 489 | + CLANG_WARN_CONSTANT_CONVERSION = YES; | ||
| 490 | + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; | ||
| 491 | + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; | ||
| 492 | + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; | ||
| 493 | + CLANG_WARN_EMPTY_BODY = YES; | ||
| 494 | + CLANG_WARN_ENUM_CONVERSION = YES; | ||
| 495 | + CLANG_WARN_INFINITE_RECURSION = YES; | ||
| 496 | + CLANG_WARN_INT_CONVERSION = YES; | ||
| 497 | + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; | ||
| 498 | + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; | ||
| 499 | + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; | ||
| 500 | + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; | ||
| 501 | + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; | ||
| 502 | + CLANG_WARN_STRICT_PROTOTYPES = YES; | ||
| 503 | + CLANG_WARN_SUSPICIOUS_MOVE = YES; | ||
| 504 | + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; | ||
| 505 | + CLANG_WARN_UNREACHABLE_CODE = YES; | ||
| 506 | + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; | ||
| 507 | + COPY_PHASE_STRIP = NO; | ||
| 508 | + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; | ||
| 509 | + ENABLE_NS_ASSERTIONS = NO; | ||
| 510 | + ENABLE_STRICT_OBJC_MSGSEND = YES; | ||
| 511 | + GCC_C_LANGUAGE_STANDARD = gnu11; | ||
| 512 | + GCC_NO_COMMON_BLOCKS = YES; | ||
| 513 | + GCC_PREPROCESSOR_DEFINITIONS = ( | ||
| 514 | + "POD_CONFIGURATION_RELEASE=1", | ||
| 515 | + "$(inherited)", | ||
| 516 | + ); | ||
| 517 | + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; | ||
| 518 | + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; | ||
| 519 | + GCC_WARN_UNDECLARED_SELECTOR = YES; | ||
| 520 | + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; | ||
| 521 | + GCC_WARN_UNUSED_FUNCTION = YES; | ||
| 522 | + GCC_WARN_UNUSED_VARIABLE = YES; | ||
| 523 | + IPHONEOS_DEPLOYMENT_TARGET = 8.0; | ||
| 524 | + MTL_ENABLE_DEBUG_INFO = NO; | ||
| 525 | + MTL_FAST_MATH = YES; | ||
| 526 | + PRODUCT_NAME = "$(TARGET_NAME)"; | ||
| 527 | + STRIP_INSTALLED_PRODUCT = NO; | ||
| 528 | + SWIFT_COMPILATION_MODE = wholemodule; | ||
| 529 | + SWIFT_OPTIMIZATION_LEVEL = "-O"; | ||
| 530 | + SWIFT_VERSION = 5.0; | ||
| 531 | + SYMROOT = "${SRCROOT}/../build"; | ||
| 532 | + }; | ||
| 533 | + name = Release; | ||
| 534 | + }; | ||
| 535 | + 59AE467D360019DBA5A911B554D263E1 /* Debug */ = { | ||
| 536 | + isa = XCBuildConfiguration; | ||
| 537 | + baseConfigurationReference = B901133A00EDED5599AE95EC9B930D5E /* Pods-DSAddressModuleF_Example.debug.xcconfig */; | ||
| 538 | + buildSettings = { | ||
| 539 | + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; | ||
| 540 | + CODE_SIGN_IDENTITY = ""; | ||
| 541 | + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; | ||
| 542 | + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; | ||
| 543 | + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; | ||
| 544 | + CURRENT_PROJECT_VERSION = 1; | ||
| 545 | + DEFINES_MODULE = YES; | ||
| 546 | + DYLIB_COMPATIBILITY_VERSION = 1; | ||
| 547 | + DYLIB_CURRENT_VERSION = 1; | ||
| 548 | + DYLIB_INSTALL_NAME_BASE = "@rpath"; | ||
| 549 | + INFOPLIST_FILE = "Target Support Files/Pods-DSAddressModuleF_Example/Pods-DSAddressModuleF_Example-Info.plist"; | ||
| 550 | + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; | ||
| 551 | + IPHONEOS_DEPLOYMENT_TARGET = 8.0; | ||
| 552 | + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; | ||
| 553 | + MACH_O_TYPE = staticlib; | ||
| 554 | + MODULEMAP_FILE = "Target Support Files/Pods-DSAddressModuleF_Example/Pods-DSAddressModuleF_Example.modulemap"; | ||
| 555 | + OTHER_LDFLAGS = ""; | ||
| 556 | + OTHER_LIBTOOLFLAGS = ""; | ||
| 557 | + PODS_ROOT = "$(SRCROOT)"; | ||
| 558 | + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; | ||
| 559 | + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; | ||
| 560 | + SDKROOT = iphoneos; | ||
| 561 | + SKIP_INSTALL = YES; | ||
| 562 | + TARGETED_DEVICE_FAMILY = "1,2"; | ||
| 563 | + VERSIONING_SYSTEM = "apple-generic"; | ||
| 564 | + VERSION_INFO_PREFIX = ""; | ||
| 565 | + }; | ||
| 566 | + name = Debug; | ||
| 567 | + }; | ||
| 568 | + 7EF7227D9B20A1D549000096ACCB23D7 /* Debug */ = { | ||
| 569 | + isa = XCBuildConfiguration; | ||
| 570 | + buildSettings = { | ||
| 571 | + ALWAYS_SEARCH_USER_PATHS = NO; | ||
| 572 | + CLANG_ANALYZER_NONNULL = YES; | ||
| 573 | + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; | ||
| 574 | + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; | ||
| 575 | + CLANG_CXX_LIBRARY = "libc++"; | ||
| 576 | + CLANG_ENABLE_MODULES = YES; | ||
| 577 | + CLANG_ENABLE_OBJC_ARC = YES; | ||
| 578 | + CLANG_ENABLE_OBJC_WEAK = YES; | ||
| 579 | + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; | ||
| 580 | + CLANG_WARN_BOOL_CONVERSION = YES; | ||
| 581 | + CLANG_WARN_COMMA = YES; | ||
| 582 | + CLANG_WARN_CONSTANT_CONVERSION = YES; | ||
| 583 | + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; | ||
| 584 | + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; | ||
| 585 | + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; | ||
| 586 | + CLANG_WARN_EMPTY_BODY = YES; | ||
| 587 | + CLANG_WARN_ENUM_CONVERSION = YES; | ||
| 588 | + CLANG_WARN_INFINITE_RECURSION = YES; | ||
| 589 | + CLANG_WARN_INT_CONVERSION = YES; | ||
| 590 | + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; | ||
| 591 | + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; | ||
| 592 | + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; | ||
| 593 | + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; | ||
| 594 | + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; | ||
| 595 | + CLANG_WARN_STRICT_PROTOTYPES = YES; | ||
| 596 | + CLANG_WARN_SUSPICIOUS_MOVE = YES; | ||
| 597 | + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; | ||
| 598 | + CLANG_WARN_UNREACHABLE_CODE = YES; | ||
| 599 | + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; | ||
| 600 | + COPY_PHASE_STRIP = NO; | ||
| 601 | + DEBUG_INFORMATION_FORMAT = dwarf; | ||
| 602 | + ENABLE_STRICT_OBJC_MSGSEND = YES; | ||
| 603 | + ENABLE_TESTABILITY = YES; | ||
| 604 | + GCC_C_LANGUAGE_STANDARD = gnu11; | ||
| 605 | + GCC_DYNAMIC_NO_PIC = NO; | ||
| 606 | + GCC_NO_COMMON_BLOCKS = YES; | ||
| 607 | + GCC_OPTIMIZATION_LEVEL = 0; | ||
| 608 | + GCC_PREPROCESSOR_DEFINITIONS = ( | ||
| 609 | + "POD_CONFIGURATION_DEBUG=1", | ||
| 610 | + "DEBUG=1", | ||
| 611 | + "$(inherited)", | ||
| 612 | + ); | ||
| 613 | + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; | ||
| 614 | + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; | ||
| 615 | + GCC_WARN_UNDECLARED_SELECTOR = YES; | ||
| 616 | + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; | ||
| 617 | + GCC_WARN_UNUSED_FUNCTION = YES; | ||
| 618 | + GCC_WARN_UNUSED_VARIABLE = YES; | ||
| 619 | + IPHONEOS_DEPLOYMENT_TARGET = 8.0; | ||
| 620 | + MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; | ||
| 621 | + MTL_FAST_MATH = YES; | ||
| 622 | + ONLY_ACTIVE_ARCH = YES; | ||
| 623 | + PRODUCT_NAME = "$(TARGET_NAME)"; | ||
| 624 | + STRIP_INSTALLED_PRODUCT = NO; | ||
| 625 | + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; | ||
| 626 | + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; | ||
| 627 | + SWIFT_VERSION = 5.0; | ||
| 628 | + SYMROOT = "${SRCROOT}/../build"; | ||
| 629 | + }; | ||
| 630 | + name = Debug; | ||
| 631 | + }; | ||
| 632 | + 82E8E87213C8E035FFA6ABF79EBBDF3C /* Debug */ = { | ||
| 633 | + isa = XCBuildConfiguration; | ||
| 634 | + baseConfigurationReference = 4011E5BEDF9B02C787A9A58C1EB82DA6 /* Pods-DSAddressModuleF_Tests.debug.xcconfig */; | ||
| 635 | + buildSettings = { | ||
| 636 | + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; | ||
| 637 | + CODE_SIGN_IDENTITY = ""; | ||
| 638 | + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; | ||
| 639 | + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; | ||
| 640 | + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; | ||
| 641 | + CURRENT_PROJECT_VERSION = 1; | ||
| 642 | + DEFINES_MODULE = YES; | ||
| 643 | + DYLIB_COMPATIBILITY_VERSION = 1; | ||
| 644 | + DYLIB_CURRENT_VERSION = 1; | ||
| 645 | + DYLIB_INSTALL_NAME_BASE = "@rpath"; | ||
| 646 | + INFOPLIST_FILE = "Target Support Files/Pods-DSAddressModuleF_Tests/Pods-DSAddressModuleF_Tests-Info.plist"; | ||
| 647 | + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; | ||
| 648 | + IPHONEOS_DEPLOYMENT_TARGET = 8.0; | ||
| 649 | + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; | ||
| 650 | + MACH_O_TYPE = staticlib; | ||
| 651 | + MODULEMAP_FILE = "Target Support Files/Pods-DSAddressModuleF_Tests/Pods-DSAddressModuleF_Tests.modulemap"; | ||
| 652 | + OTHER_LDFLAGS = ""; | ||
| 653 | + OTHER_LIBTOOLFLAGS = ""; | ||
| 654 | + PODS_ROOT = "$(SRCROOT)"; | ||
| 655 | + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; | ||
| 656 | + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; | ||
| 657 | + SDKROOT = iphoneos; | ||
| 658 | + SKIP_INSTALL = YES; | ||
| 659 | + TARGETED_DEVICE_FAMILY = "1,2"; | ||
| 660 | + VERSIONING_SYSTEM = "apple-generic"; | ||
| 661 | + VERSION_INFO_PREFIX = ""; | ||
| 662 | + }; | ||
| 663 | + name = Debug; | ||
| 664 | + }; | ||
| 665 | + D3C7C4700E3E94F0FB6A6B91565090D8 /* Debug */ = { | ||
| 666 | + isa = XCBuildConfiguration; | ||
| 667 | + baseConfigurationReference = 24C663286F9B3EEAC56041E05291AA12 /* DSAddressModuleF.xcconfig */; | ||
| 668 | + buildSettings = { | ||
| 669 | + CODE_SIGN_IDENTITY = ""; | ||
| 670 | + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; | ||
| 671 | + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; | ||
| 672 | + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; | ||
| 673 | + CURRENT_PROJECT_VERSION = 1; | ||
| 674 | + DEFINES_MODULE = YES; | ||
| 675 | + DYLIB_COMPATIBILITY_VERSION = 1; | ||
| 676 | + DYLIB_CURRENT_VERSION = 1; | ||
| 677 | + DYLIB_INSTALL_NAME_BASE = "@rpath"; | ||
| 678 | + GCC_PREFIX_HEADER = "Target Support Files/DSAddressModuleF/DSAddressModuleF-prefix.pch"; | ||
| 679 | + INFOPLIST_FILE = "Target Support Files/DSAddressModuleF/DSAddressModuleF-Info.plist"; | ||
| 680 | + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; | ||
| 681 | + IPHONEOS_DEPLOYMENT_TARGET = 8.0; | ||
| 682 | + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; | ||
| 683 | + MODULEMAP_FILE = "Target Support Files/DSAddressModuleF/DSAddressModuleF.modulemap"; | ||
| 684 | + PRODUCT_MODULE_NAME = DSAddressModuleF; | ||
| 685 | + PRODUCT_NAME = DSAddressModuleF; | ||
| 686 | + SDKROOT = iphoneos; | ||
| 687 | + SKIP_INSTALL = YES; | ||
| 688 | + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; | ||
| 689 | + SWIFT_VERSION = 4.0; | ||
| 690 | + TARGETED_DEVICE_FAMILY = "1,2"; | ||
| 691 | + VERSIONING_SYSTEM = "apple-generic"; | ||
| 692 | + VERSION_INFO_PREFIX = ""; | ||
| 693 | + }; | ||
| 694 | + name = Debug; | ||
| 695 | + }; | ||
| 696 | + F83A24A074A5AEC2499B21A70D15F82B /* Release */ = { | ||
| 697 | + isa = XCBuildConfiguration; | ||
| 698 | + baseConfigurationReference = 24C663286F9B3EEAC56041E05291AA12 /* DSAddressModuleF.xcconfig */; | ||
| 699 | + buildSettings = { | ||
| 700 | + CODE_SIGN_IDENTITY = ""; | ||
| 701 | + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; | ||
| 702 | + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; | ||
| 703 | + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; | ||
| 704 | + CURRENT_PROJECT_VERSION = 1; | ||
| 705 | + DEFINES_MODULE = YES; | ||
| 706 | + DYLIB_COMPATIBILITY_VERSION = 1; | ||
| 707 | + DYLIB_CURRENT_VERSION = 1; | ||
| 708 | + DYLIB_INSTALL_NAME_BASE = "@rpath"; | ||
| 709 | + GCC_PREFIX_HEADER = "Target Support Files/DSAddressModuleF/DSAddressModuleF-prefix.pch"; | ||
| 710 | + INFOPLIST_FILE = "Target Support Files/DSAddressModuleF/DSAddressModuleF-Info.plist"; | ||
| 711 | + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; | ||
| 712 | + IPHONEOS_DEPLOYMENT_TARGET = 8.0; | ||
| 713 | + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; | ||
| 714 | + MODULEMAP_FILE = "Target Support Files/DSAddressModuleF/DSAddressModuleF.modulemap"; | ||
| 715 | + PRODUCT_MODULE_NAME = DSAddressModuleF; | ||
| 716 | + PRODUCT_NAME = DSAddressModuleF; | ||
| 717 | + SDKROOT = iphoneos; | ||
| 718 | + SKIP_INSTALL = YES; | ||
| 719 | + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; | ||
| 720 | + SWIFT_VERSION = 4.0; | ||
| 721 | + TARGETED_DEVICE_FAMILY = "1,2"; | ||
| 722 | + VALIDATE_PRODUCT = YES; | ||
| 723 | + VERSIONING_SYSTEM = "apple-generic"; | ||
| 724 | + VERSION_INFO_PREFIX = ""; | ||
| 725 | + }; | ||
| 726 | + name = Release; | ||
| 727 | + }; | ||
| 728 | +/* End XCBuildConfiguration section */ | ||
| 729 | + | ||
| 730 | +/* Begin XCConfigurationList section */ | ||
| 731 | + 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */ = { | ||
| 732 | + isa = XCConfigurationList; | ||
| 733 | + buildConfigurations = ( | ||
| 734 | + 7EF7227D9B20A1D549000096ACCB23D7 /* Debug */, | ||
| 735 | + 4BE66A09A74FD25164AAB3C2645B9B93 /* Release */, | ||
| 736 | + ); | ||
| 737 | + defaultConfigurationIsVisible = 0; | ||
| 738 | + defaultConfigurationName = Release; | ||
| 739 | + }; | ||
| 740 | + 57DBDB9C9B3BD36504F923CEBB59D7F1 /* Build configuration list for PBXNativeTarget "Pods-DSAddressModuleF_Example" */ = { | ||
| 741 | + isa = XCConfigurationList; | ||
| 742 | + buildConfigurations = ( | ||
| 743 | + 59AE467D360019DBA5A911B554D263E1 /* Debug */, | ||
| 744 | + 248E750F4E3A0082589CD2D5FE106448 /* Release */, | ||
| 745 | + ); | ||
| 746 | + defaultConfigurationIsVisible = 0; | ||
| 747 | + defaultConfigurationName = Release; | ||
| 748 | + }; | ||
| 749 | + 8A34E6D5B023514455F145D51F7184ED /* Build configuration list for PBXNativeTarget "DSAddressModuleF" */ = { | ||
| 750 | + isa = XCConfigurationList; | ||
| 751 | + buildConfigurations = ( | ||
| 752 | + D3C7C4700E3E94F0FB6A6B91565090D8 /* Debug */, | ||
| 753 | + F83A24A074A5AEC2499B21A70D15F82B /* Release */, | ||
| 754 | + ); | ||
| 755 | + defaultConfigurationIsVisible = 0; | ||
| 756 | + defaultConfigurationName = Release; | ||
| 757 | + }; | ||
| 758 | + C73835027BCEC9EF32387B62105CB8F9 /* Build configuration list for PBXNativeTarget "Pods-DSAddressModuleF_Tests" */ = { | ||
| 759 | + isa = XCConfigurationList; | ||
| 760 | + buildConfigurations = ( | ||
| 761 | + 82E8E87213C8E035FFA6ABF79EBBDF3C /* Debug */, | ||
| 762 | + 3D1F9721BF9391429EF295E42FAA68AB /* Release */, | ||
| 763 | + ); | ||
| 764 | + defaultConfigurationIsVisible = 0; | ||
| 765 | + defaultConfigurationName = Release; | ||
| 766 | + }; | ||
| 767 | +/* End XCConfigurationList section */ | ||
| 768 | + }; | ||
| 769 | + rootObject = BFDFE7DC352907FC980B868725387E98 /* Project object */; | ||
| 770 | +} |
Example/Pods/Pods.xcodeproj/xcuserdata/zhaolin.xcuserdatad/xcschemes/DSAddressModuleF.xcscheme
0 → 100644
| 1 | +++ a/Example/Pods/Pods.xcodeproj/xcuserdata/zhaolin.xcuserdatad/xcschemes/DSAddressModuleF.xcscheme | ||
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | ||
| 2 | +<Scheme | ||
| 3 | + LastUpgradeVersion = "1100" | ||
| 4 | + version = "1.3"> | ||
| 5 | + <BuildAction | ||
| 6 | + parallelizeBuildables = "YES" | ||
| 7 | + buildImplicitDependencies = "YES"> | ||
| 8 | + <BuildActionEntries> | ||
| 9 | + <BuildActionEntry | ||
| 10 | + buildForAnalyzing = "YES" | ||
| 11 | + buildForTesting = "YES" | ||
| 12 | + buildForRunning = "YES" | ||
| 13 | + buildForProfiling = "YES" | ||
| 14 | + buildForArchiving = "YES"> | ||
| 15 | + <BuildableReference | ||
| 16 | + BuildableIdentifier = "primary" | ||
| 17 | + BlueprintIdentifier = "C1BDB6430FC58EEE78FA3D32C0E4FC98" | ||
| 18 | + BuildableName = "DSAddressModuleF.framework" | ||
| 19 | + BlueprintName = "DSAddressModuleF" | ||
| 20 | + ReferencedContainer = "container:Pods.xcodeproj"> | ||
| 21 | + </BuildableReference> | ||
| 22 | + </BuildActionEntry> | ||
| 23 | + </BuildActionEntries> | ||
| 24 | + </BuildAction> | ||
| 25 | + <TestAction | ||
| 26 | + selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB" | ||
| 27 | + selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB" | ||
| 28 | + shouldUseLaunchSchemeArgsEnv = "YES" | ||
| 29 | + buildConfiguration = "Debug"> | ||
| 30 | + <AdditionalOptions> | ||
| 31 | + </AdditionalOptions> | ||
| 32 | + </TestAction> | ||
| 33 | + <LaunchAction | ||
| 34 | + selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB" | ||
| 35 | + selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB" | ||
| 36 | + launchStyle = "0" | ||
| 37 | + useCustomWorkingDirectory = "NO" | ||
| 38 | + ignoresPersistentStateOnLaunch = "NO" | ||
| 39 | + debugDocumentVersioning = "YES" | ||
| 40 | + debugServiceExtension = "internal" | ||
| 41 | + buildConfiguration = "Debug" | ||
| 42 | + allowLocationSimulation = "YES"> | ||
| 43 | + <AdditionalOptions> | ||
| 44 | + </AdditionalOptions> | ||
| 45 | + </LaunchAction> | ||
| 46 | + <ProfileAction | ||
| 47 | + savedToolIdentifier = "" | ||
| 48 | + useCustomWorkingDirectory = "NO" | ||
| 49 | + debugDocumentVersioning = "YES" | ||
| 50 | + buildConfiguration = "Release" | ||
| 51 | + shouldUseLaunchSchemeArgsEnv = "YES"> | ||
| 52 | + </ProfileAction> | ||
| 53 | + <AnalyzeAction | ||
| 54 | + buildConfiguration = "Debug"> | ||
| 55 | + </AnalyzeAction> | ||
| 56 | + <ArchiveAction | ||
| 57 | + buildConfiguration = "Release" | ||
| 58 | + revealArchiveInOrganizer = "YES"> | ||
| 59 | + </ArchiveAction> | ||
| 60 | +</Scheme> |
Example/Pods/Pods.xcodeproj/xcuserdata/zhaolin.xcuserdatad/xcschemes/Pods-DSAddressModuleF_Example.xcscheme
0 → 100644
| 1 | +++ a/Example/Pods/Pods.xcodeproj/xcuserdata/zhaolin.xcuserdatad/xcschemes/Pods-DSAddressModuleF_Example.xcscheme | ||
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | ||
| 2 | +<Scheme | ||
| 3 | + LastUpgradeVersion = "1100" | ||
| 4 | + version = "1.3"> | ||
| 5 | + <BuildAction | ||
| 6 | + parallelizeBuildables = "YES" | ||
| 7 | + buildImplicitDependencies = "YES"> | ||
| 8 | + <BuildActionEntries> | ||
| 9 | + <BuildActionEntry | ||
| 10 | + buildForTesting = "YES" | ||
| 11 | + buildForRunning = "YES" | ||
| 12 | + buildForProfiling = "YES" | ||
| 13 | + buildForArchiving = "YES" | ||
| 14 | + buildForAnalyzing = "YES"> | ||
| 15 | + <BuildableReference | ||
| 16 | + BuildableIdentifier = "primary" | ||
| 17 | + BlueprintIdentifier = "45AF03621250C85DF7A9CDA0364477AF" | ||
| 18 | + BuildableName = "Pods_DSAddressModuleF_Example.framework" | ||
| 19 | + BlueprintName = "Pods-DSAddressModuleF_Example" | ||
| 20 | + ReferencedContainer = "container:Pods.xcodeproj"> | ||
| 21 | + </BuildableReference> | ||
| 22 | + </BuildActionEntry> | ||
| 23 | + </BuildActionEntries> | ||
| 24 | + </BuildAction> | ||
| 25 | + <TestAction | ||
| 26 | + buildConfiguration = "Debug" | ||
| 27 | + selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB" | ||
| 28 | + selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB" | ||
| 29 | + shouldUseLaunchSchemeArgsEnv = "YES"> | ||
| 30 | + <Testables> | ||
| 31 | + </Testables> | ||
| 32 | + </TestAction> | ||
| 33 | + <LaunchAction | ||
| 34 | + buildConfiguration = "Debug" | ||
| 35 | + selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB" | ||
| 36 | + selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB" | ||
| 37 | + launchStyle = "0" | ||
| 38 | + useCustomWorkingDirectory = "NO" | ||
| 39 | + ignoresPersistentStateOnLaunch = "NO" | ||
| 40 | + debugDocumentVersioning = "YES" | ||
| 41 | + debugServiceExtension = "internal" | ||
| 42 | + allowLocationSimulation = "YES"> | ||
| 43 | + </LaunchAction> | ||
| 44 | + <ProfileAction | ||
| 45 | + buildConfiguration = "Release" | ||
| 46 | + shouldUseLaunchSchemeArgsEnv = "YES" | ||
| 47 | + savedToolIdentifier = "" | ||
| 48 | + useCustomWorkingDirectory = "NO" | ||
| 49 | + debugDocumentVersioning = "YES"> | ||
| 50 | + </ProfileAction> | ||
| 51 | + <AnalyzeAction | ||
| 52 | + buildConfiguration = "Debug"> | ||
| 53 | + </AnalyzeAction> | ||
| 54 | + <ArchiveAction | ||
| 55 | + buildConfiguration = "Release" | ||
| 56 | + revealArchiveInOrganizer = "YES"> | ||
| 57 | + </ArchiveAction> | ||
| 58 | +</Scheme> |
Example/Pods/Pods.xcodeproj/xcuserdata/zhaolin.xcuserdatad/xcschemes/Pods-DSAddressModuleF_Tests.xcscheme
0 → 100644
| 1 | +++ a/Example/Pods/Pods.xcodeproj/xcuserdata/zhaolin.xcuserdatad/xcschemes/Pods-DSAddressModuleF_Tests.xcscheme | ||
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | ||
| 2 | +<Scheme | ||
| 3 | + LastUpgradeVersion = "1100" | ||
| 4 | + version = "1.3"> | ||
| 5 | + <BuildAction | ||
| 6 | + parallelizeBuildables = "YES" | ||
| 7 | + buildImplicitDependencies = "YES"> | ||
| 8 | + <BuildActionEntries> | ||
| 9 | + <BuildActionEntry | ||
| 10 | + buildForTesting = "YES" | ||
| 11 | + buildForRunning = "YES" | ||
| 12 | + buildForProfiling = "YES" | ||
| 13 | + buildForArchiving = "YES" | ||
| 14 | + buildForAnalyzing = "YES"> | ||
| 15 | + <BuildableReference | ||
| 16 | + BuildableIdentifier = "primary" | ||
| 17 | + BlueprintIdentifier = "955865EA90B8A10D6CBDE30F7E220B04" | ||
| 18 | + BuildableName = "Pods_DSAddressModuleF_Tests.framework" | ||
| 19 | + BlueprintName = "Pods-DSAddressModuleF_Tests" | ||
| 20 | + ReferencedContainer = "container:Pods.xcodeproj"> | ||
| 21 | + </BuildableReference> | ||
| 22 | + </BuildActionEntry> | ||
| 23 | + </BuildActionEntries> | ||
| 24 | + </BuildAction> | ||
| 25 | + <TestAction | ||
| 26 | + buildConfiguration = "Debug" | ||
| 27 | + selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB" | ||
| 28 | + selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB" | ||
| 29 | + shouldUseLaunchSchemeArgsEnv = "YES"> | ||
| 30 | + <Testables> | ||
| 31 | + </Testables> | ||
| 32 | + </TestAction> | ||
| 33 | + <LaunchAction | ||
| 34 | + buildConfiguration = "Debug" | ||
| 35 | + selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB" | ||
| 36 | + selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB" | ||
| 37 | + launchStyle = "0" | ||
| 38 | + useCustomWorkingDirectory = "NO" | ||
| 39 | + ignoresPersistentStateOnLaunch = "NO" | ||
| 40 | + debugDocumentVersioning = "YES" | ||
| 41 | + debugServiceExtension = "internal" | ||
| 42 | + allowLocationSimulation = "YES"> | ||
| 43 | + </LaunchAction> | ||
| 44 | + <ProfileAction | ||
| 45 | + buildConfiguration = "Release" | ||
| 46 | + shouldUseLaunchSchemeArgsEnv = "YES" | ||
| 47 | + savedToolIdentifier = "" | ||
| 48 | + useCustomWorkingDirectory = "NO" | ||
| 49 | + debugDocumentVersioning = "YES"> | ||
| 50 | + </ProfileAction> | ||
| 51 | + <AnalyzeAction | ||
| 52 | + buildConfiguration = "Debug"> | ||
| 53 | + </AnalyzeAction> | ||
| 54 | + <ArchiveAction | ||
| 55 | + buildConfiguration = "Release" | ||
| 56 | + revealArchiveInOrganizer = "YES"> | ||
| 57 | + </ArchiveAction> | ||
| 58 | +</Scheme> |
Example/Pods/Pods.xcodeproj/xcuserdata/zhaolin.xcuserdatad/xcschemes/xcschememanagement.plist
0 → 100644
| 1 | +++ a/Example/Pods/Pods.xcodeproj/xcuserdata/zhaolin.xcuserdatad/xcschemes/xcschememanagement.plist | ||
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | ||
| 2 | +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
| 3 | +<plist version="1.0"> | ||
| 4 | +<dict> | ||
| 5 | + <key>SchemeUserState</key> | ||
| 6 | + <dict> | ||
| 7 | + <key>DSAddressModuleF.xcscheme</key> | ||
| 8 | + <dict> | ||
| 9 | + <key>isShown</key> | ||
| 10 | + <false/> | ||
| 11 | + </dict> | ||
| 12 | + <key>Pods-DSAddressModuleF_Example.xcscheme</key> | ||
| 13 | + <dict> | ||
| 14 | + <key>isShown</key> | ||
| 15 | + <false/> | ||
| 16 | + </dict> | ||
| 17 | + <key>Pods-DSAddressModuleF_Tests.xcscheme</key> | ||
| 18 | + <dict> | ||
| 19 | + <key>isShown</key> | ||
| 20 | + <false/> | ||
| 21 | + </dict> | ||
| 22 | + </dict> | ||
| 23 | + <key>SuppressBuildableAutocreation</key> | ||
| 24 | + <dict/> | ||
| 25 | +</dict> | ||
| 26 | +</plist> |
Example/Pods/Target Support Files/DSAddressModuleF/DSAddressModuleF-Info.plist
0 → 100644
| 1 | +++ a/Example/Pods/Target Support Files/DSAddressModuleF/DSAddressModuleF-Info.plist | ||
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | ||
| 2 | +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
| 3 | +<plist version="1.0"> | ||
| 4 | +<dict> | ||
| 5 | + <key>CFBundleDevelopmentRegion</key> | ||
| 6 | + <string>en</string> | ||
| 7 | + <key>CFBundleExecutable</key> | ||
| 8 | + <string>${EXECUTABLE_NAME}</string> | ||
| 9 | + <key>CFBundleIdentifier</key> | ||
| 10 | + <string>${PRODUCT_BUNDLE_IDENTIFIER}</string> | ||
| 11 | + <key>CFBundleInfoDictionaryVersion</key> | ||
| 12 | + <string>6.0</string> | ||
| 13 | + <key>CFBundleName</key> | ||
| 14 | + <string>${PRODUCT_NAME}</string> | ||
| 15 | + <key>CFBundlePackageType</key> | ||
| 16 | + <string>FMWK</string> | ||
| 17 | + <key>CFBundleShortVersionString</key> | ||
| 18 | + <string>0.1.0</string> | ||
| 19 | + <key>CFBundleSignature</key> | ||
| 20 | + <string>????</string> | ||
| 21 | + <key>CFBundleVersion</key> | ||
| 22 | + <string>${CURRENT_PROJECT_VERSION}</string> | ||
| 23 | + <key>NSPrincipalClass</key> | ||
| 24 | + <string></string> | ||
| 25 | +</dict> | ||
| 26 | +</plist> |
Example/Pods/Target Support Files/DSAddressModuleF/DSAddressModuleF-dummy.m
0 → 100644
Example/Pods/Target Support Files/DSAddressModuleF/DSAddressModuleF-prefix.pch
0 → 100644
| 1 | +++ a/Example/Pods/Target Support Files/DSAddressModuleF/DSAddressModuleF-prefix.pch | ||
| 1 | +#ifdef __OBJC__ | ||
| 2 | +#import <UIKit/UIKit.h> | ||
| 3 | +#else | ||
| 4 | +#ifndef FOUNDATION_EXPORT | ||
| 5 | +#if defined(__cplusplus) | ||
| 6 | +#define FOUNDATION_EXPORT extern "C" | ||
| 7 | +#else | ||
| 8 | +#define FOUNDATION_EXPORT extern | ||
| 9 | +#endif | ||
| 10 | +#endif | ||
| 11 | +#endif | ||
| 12 | + |
Example/Pods/Target Support Files/DSAddressModuleF/DSAddressModuleF-umbrella.h
0 → 100644
| 1 | +++ a/Example/Pods/Target Support Files/DSAddressModuleF/DSAddressModuleF-umbrella.h | ||
| 1 | +#ifdef __OBJC__ | ||
| 2 | +#import <UIKit/UIKit.h> | ||
| 3 | +#else | ||
| 4 | +#ifndef FOUNDATION_EXPORT | ||
| 5 | +#if defined(__cplusplus) | ||
| 6 | +#define FOUNDATION_EXPORT extern "C" | ||
| 7 | +#else | ||
| 8 | +#define FOUNDATION_EXPORT extern | ||
| 9 | +#endif | ||
| 10 | +#endif | ||
| 11 | +#endif | ||
| 12 | + | ||
| 13 | + | ||
| 14 | +FOUNDATION_EXPORT double DSAddressModuleFVersionNumber; | ||
| 15 | +FOUNDATION_EXPORT const unsigned char DSAddressModuleFVersionString[]; | ||
| 16 | + |
Example/Pods/Target Support Files/DSAddressModuleF/DSAddressModuleF.modulemap
0 → 100644
Example/Pods/Target Support Files/DSAddressModuleF/DSAddressModuleF.xcconfig
0 → 100644
| 1 | +++ a/Example/Pods/Target Support Files/DSAddressModuleF/DSAddressModuleF.xcconfig | ||
| 1 | +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/DSAddressModuleF | ||
| 2 | +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 | ||
| 3 | +PODS_BUILD_DIR = ${BUILD_DIR} | ||
| 4 | +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) | ||
| 5 | +PODS_ROOT = ${SRCROOT} | ||
| 6 | +PODS_TARGET_SRCROOT = ${PODS_ROOT}/../.. | ||
| 7 | +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} | ||
| 8 | +SKIP_INSTALL = YES | ||
| 9 | +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES |
Example/Pods/Target Support Files/Pods-DSAddressModuleF_Example/Pods-DSAddressModuleF_Example-Info.plist
0 → 100644
| 1 | +++ a/Example/Pods/Target Support Files/Pods-DSAddressModuleF_Example/Pods-DSAddressModuleF_Example-Info.plist | ||
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | ||
| 2 | +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
| 3 | +<plist version="1.0"> | ||
| 4 | +<dict> | ||
| 5 | + <key>CFBundleDevelopmentRegion</key> | ||
| 6 | + <string>en</string> | ||
| 7 | + <key>CFBundleExecutable</key> | ||
| 8 | + <string>${EXECUTABLE_NAME}</string> | ||
| 9 | + <key>CFBundleIdentifier</key> | ||
| 10 | + <string>${PRODUCT_BUNDLE_IDENTIFIER}</string> | ||
| 11 | + <key>CFBundleInfoDictionaryVersion</key> | ||
| 12 | + <string>6.0</string> | ||
| 13 | + <key>CFBundleName</key> | ||
| 14 | + <string>${PRODUCT_NAME}</string> | ||
| 15 | + <key>CFBundlePackageType</key> | ||
| 16 | + <string>FMWK</string> | ||
| 17 | + <key>CFBundleShortVersionString</key> | ||
| 18 | + <string>1.0.0</string> | ||
| 19 | + <key>CFBundleSignature</key> | ||
| 20 | + <string>????</string> | ||
| 21 | + <key>CFBundleVersion</key> | ||
| 22 | + <string>${CURRENT_PROJECT_VERSION}</string> | ||
| 23 | + <key>NSPrincipalClass</key> | ||
| 24 | + <string></string> | ||
| 25 | +</dict> | ||
| 26 | +</plist> |
Example/Pods/Target Support Files/Pods-DSAddressModuleF_Example/Pods-DSAddressModuleF_Example-acknowledgements.markdown
0 → 100644
| 1 | +++ a/Example/Pods/Target Support Files/Pods-DSAddressModuleF_Example/Pods-DSAddressModuleF_Example-acknowledgements.markdown | ||
| 1 | +# Acknowledgements | ||
| 2 | +This application makes use of the following third party libraries: | ||
| 3 | + | ||
| 4 | +## DSAddressModuleF | ||
| 5 | + | ||
| 6 | +Copyright (c) 2020 694092596@qq.com <694092596@qq.com> | ||
| 7 | + | ||
| 8 | +Permission is hereby granted, free of charge, to any person obtaining a copy | ||
| 9 | +of this software and associated documentation files (the "Software"), to deal | ||
| 10 | +in the Software without restriction, including without limitation the rights | ||
| 11 | +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
| 12 | +copies of the Software, and to permit persons to whom the Software is | ||
| 13 | +furnished to do so, subject to the following conditions: | ||
| 14 | + | ||
| 15 | +The above copyright notice and this permission notice shall be included in | ||
| 16 | +all copies or substantial portions of the Software. | ||
| 17 | + | ||
| 18 | +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
| 19 | +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
| 20 | +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
| 21 | +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
| 22 | +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
| 23 | +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
| 24 | +THE SOFTWARE. | ||
| 25 | + | ||
| 26 | +Generated by CocoaPods - https://cocoapods.org |
Example/Pods/Target Support Files/Pods-DSAddressModuleF_Example/Pods-DSAddressModuleF_Example-acknowledgements.plist
0 → 100644
| 1 | +++ a/Example/Pods/Target Support Files/Pods-DSAddressModuleF_Example/Pods-DSAddressModuleF_Example-acknowledgements.plist | ||
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | ||
| 2 | +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
| 3 | +<plist version="1.0"> | ||
| 4 | +<dict> | ||
| 5 | + <key>PreferenceSpecifiers</key> | ||
| 6 | + <array> | ||
| 7 | + <dict> | ||
| 8 | + <key>FooterText</key> | ||
| 9 | + <string>This application makes use of the following third party libraries:</string> | ||
| 10 | + <key>Title</key> | ||
| 11 | + <string>Acknowledgements</string> | ||
| 12 | + <key>Type</key> | ||
| 13 | + <string>PSGroupSpecifier</string> | ||
| 14 | + </dict> | ||
| 15 | + <dict> | ||
| 16 | + <key>FooterText</key> | ||
| 17 | + <string>Copyright (c) 2020 694092596@qq.com <694092596@qq.com> | ||
| 18 | + | ||
| 19 | +Permission is hereby granted, free of charge, to any person obtaining a copy | ||
| 20 | +of this software and associated documentation files (the "Software"), to deal | ||
| 21 | +in the Software without restriction, including without limitation the rights | ||
| 22 | +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
| 23 | +copies of the Software, and to permit persons to whom the Software is | ||
| 24 | +furnished to do so, subject to the following conditions: | ||
| 25 | + | ||
| 26 | +The above copyright notice and this permission notice shall be included in | ||
| 27 | +all copies or substantial portions of the Software. | ||
| 28 | + | ||
| 29 | +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
| 30 | +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
| 31 | +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
| 32 | +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
| 33 | +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
| 34 | +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
| 35 | +THE SOFTWARE. | ||
| 36 | +</string> | ||
| 37 | + <key>License</key> | ||
| 38 | + <string>MIT</string> | ||
| 39 | + <key>Title</key> | ||
| 40 | + <string>DSAddressModuleF</string> | ||
| 41 | + <key>Type</key> | ||
| 42 | + <string>PSGroupSpecifier</string> | ||
| 43 | + </dict> | ||
| 44 | + <dict> | ||
| 45 | + <key>FooterText</key> | ||
| 46 | + <string>Generated by CocoaPods - https://cocoapods.org</string> | ||
| 47 | + <key>Title</key> | ||
| 48 | + <string></string> | ||
| 49 | + <key>Type</key> | ||
| 50 | + <string>PSGroupSpecifier</string> | ||
| 51 | + </dict> | ||
| 52 | + </array> | ||
| 53 | + <key>StringsTable</key> | ||
| 54 | + <string>Acknowledgements</string> | ||
| 55 | + <key>Title</key> | ||
| 56 | + <string>Acknowledgements</string> | ||
| 57 | +</dict> | ||
| 58 | +</plist> |
Example/Pods/Target Support Files/Pods-DSAddressModuleF_Example/Pods-DSAddressModuleF_Example-dummy.m
0 → 100644
Example/Pods/Target Support Files/Pods-DSAddressModuleF_Example/Pods-DSAddressModuleF_Example-frameworks.sh
0 → 100755
| 1 | +++ a/Example/Pods/Target Support Files/Pods-DSAddressModuleF_Example/Pods-DSAddressModuleF_Example-frameworks.sh | ||
| 1 | +#!/bin/sh | ||
| 2 | +set -e | ||
| 3 | +set -u | ||
| 4 | +set -o pipefail | ||
| 5 | + | ||
| 6 | +function on_error { | ||
| 7 | + echo "$(realpath -mq "${0}"):$1: error: Unexpected failure" | ||
| 8 | +} | ||
| 9 | +trap 'on_error $LINENO' ERR | ||
| 10 | + | ||
| 11 | +if [ -z ${FRAMEWORKS_FOLDER_PATH+x} ]; then | ||
| 12 | + # If FRAMEWORKS_FOLDER_PATH is not set, then there's nowhere for us to copy | ||
| 13 | + # frameworks to, so exit 0 (signalling the script phase was successful). | ||
| 14 | + exit 0 | ||
| 15 | +fi | ||
| 16 | + | ||
| 17 | +echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" | ||
| 18 | +mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" | ||
| 19 | + | ||
| 20 | +COCOAPODS_PARALLEL_CODE_SIGN="${COCOAPODS_PARALLEL_CODE_SIGN:-false}" | ||
| 21 | +SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" | ||
| 22 | + | ||
| 23 | +# Used as a return value for each invocation of `strip_invalid_archs` function. | ||
| 24 | +STRIP_BINARY_RETVAL=0 | ||
| 25 | + | ||
| 26 | +# This protects against multiple targets copying the same framework dependency at the same time. The solution | ||
| 27 | +# was originally proposed here: https://lists.samba.org/archive/rsync/2008-February/020158.html | ||
| 28 | +RSYNC_PROTECT_TMP_FILES=(--filter "P .*.??????") | ||
| 29 | + | ||
| 30 | +# Copies and strips a vendored framework | ||
| 31 | +install_framework() | ||
| 32 | +{ | ||
| 33 | + if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then | ||
| 34 | + local source="${BUILT_PRODUCTS_DIR}/$1" | ||
| 35 | + elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then | ||
| 36 | + local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" | ||
| 37 | + elif [ -r "$1" ]; then | ||
| 38 | + local source="$1" | ||
| 39 | + fi | ||
| 40 | + | ||
| 41 | + local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" | ||
| 42 | + | ||
| 43 | + if [ -L "${source}" ]; then | ||
| 44 | + echo "Symlinked..." | ||
| 45 | + source="$(readlink "${source}")" | ||
| 46 | + fi | ||
| 47 | + | ||
| 48 | + # Use filter instead of exclude so missing patterns don't throw errors. | ||
| 49 | + echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" | ||
| 50 | + rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" | ||
| 51 | + | ||
| 52 | + local basename | ||
| 53 | + basename="$(basename -s .framework "$1")" | ||
| 54 | + binary="${destination}/${basename}.framework/${basename}" | ||
| 55 | + | ||
| 56 | + if ! [ -r "$binary" ]; then | ||
| 57 | + binary="${destination}/${basename}" | ||
| 58 | + elif [ -L "${binary}" ]; then | ||
| 59 | + echo "Destination binary is symlinked..." | ||
| 60 | + dirname="$(dirname "${binary}")" | ||
| 61 | + binary="${dirname}/$(readlink "${binary}")" | ||
| 62 | + fi | ||
| 63 | + | ||
| 64 | + # Strip invalid architectures so "fat" simulator / device frameworks work on device | ||
| 65 | + if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then | ||
| 66 | + strip_invalid_archs "$binary" | ||
| 67 | + fi | ||
| 68 | + | ||
| 69 | + # Resign the code if required by the build settings to avoid unstable apps | ||
| 70 | + code_sign_if_enabled "${destination}/$(basename "$1")" | ||
| 71 | + | ||
| 72 | + # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7. | ||
| 73 | + if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then | ||
| 74 | + local swift_runtime_libs | ||
| 75 | + swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u) | ||
| 76 | + for lib in $swift_runtime_libs; do | ||
| 77 | + echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" | ||
| 78 | + rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" | ||
| 79 | + code_sign_if_enabled "${destination}/${lib}" | ||
| 80 | + done | ||
| 81 | + fi | ||
| 82 | +} | ||
| 83 | + | ||
| 84 | +# Copies and strips a vendored dSYM | ||
| 85 | +install_dsym() { | ||
| 86 | + local source="$1" | ||
| 87 | + if [ -r "$source" ]; then | ||
| 88 | + # Copy the dSYM into a the targets temp dir. | ||
| 89 | + echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${DERIVED_FILES_DIR}\"" | ||
| 90 | + rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${DERIVED_FILES_DIR}" | ||
| 91 | + | ||
| 92 | + local basename | ||
| 93 | + basename="$(basename -s .framework.dSYM "$source")" | ||
| 94 | + binary="${DERIVED_FILES_DIR}/${basename}.framework.dSYM/Contents/Resources/DWARF/${basename}" | ||
| 95 | + | ||
| 96 | + # Strip invalid architectures so "fat" simulator / device frameworks work on device | ||
| 97 | + if [[ "$(file "$binary")" == *"Mach-O "*"dSYM companion"* ]]; then | ||
| 98 | + strip_invalid_archs "$binary" | ||
| 99 | + fi | ||
| 100 | + | ||
| 101 | + if [[ $STRIP_BINARY_RETVAL == 1 ]]; then | ||
| 102 | + # Move the stripped file into its final destination. | ||
| 103 | + echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${DERIVED_FILES_DIR}/${basename}.framework.dSYM\" \"${DWARF_DSYM_FOLDER_PATH}\"" | ||
| 104 | + rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${DERIVED_FILES_DIR}/${basename}.framework.dSYM" "${DWARF_DSYM_FOLDER_PATH}" | ||
| 105 | + else | ||
| 106 | + # The dSYM was not stripped at all, in this case touch a fake folder so the input/output paths from Xcode do not reexecute this script because the file is missing. | ||
| 107 | + touch "${DWARF_DSYM_FOLDER_PATH}/${basename}.framework.dSYM" | ||
| 108 | + fi | ||
| 109 | + fi | ||
| 110 | +} | ||
| 111 | + | ||
| 112 | +# Copies the bcsymbolmap files of a vendored framework | ||
| 113 | +install_bcsymbolmap() { | ||
| 114 | + local bcsymbolmap_path="$1" | ||
| 115 | + local destination="${BUILT_PRODUCTS_DIR}" | ||
| 116 | + echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${bcsymbolmap_path}" "${destination}"" | ||
| 117 | + rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${bcsymbolmap_path}" "${destination}" | ||
| 118 | +} | ||
| 119 | + | ||
| 120 | +# Signs a framework with the provided identity | ||
| 121 | +code_sign_if_enabled() { | ||
| 122 | + if [ -n "${EXPANDED_CODE_SIGN_IDENTITY:-}" -a "${CODE_SIGNING_REQUIRED:-}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then | ||
| 123 | + # Use the current code_sign_identity | ||
| 124 | + echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" | ||
| 125 | + local code_sign_cmd="/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS:-} --preserve-metadata=identifier,entitlements '$1'" | ||
| 126 | + | ||
| 127 | + if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then | ||
| 128 | + code_sign_cmd="$code_sign_cmd &" | ||
| 129 | + fi | ||
| 130 | + echo "$code_sign_cmd" | ||
| 131 | + eval "$code_sign_cmd" | ||
| 132 | + fi | ||
| 133 | +} | ||
| 134 | + | ||
| 135 | +# Strip invalid architectures | ||
| 136 | +strip_invalid_archs() { | ||
| 137 | + binary="$1" | ||
| 138 | + # Get architectures for current target binary | ||
| 139 | + binary_archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | awk '{$1=$1;print}' | rev)" | ||
| 140 | + # Intersect them with the architectures we are building for | ||
| 141 | + intersected_archs="$(echo ${ARCHS[@]} ${binary_archs[@]} | tr ' ' '\n' | sort | uniq -d)" | ||
| 142 | + # If there are no archs supported by this binary then warn the user | ||
| 143 | + if [[ -z "$intersected_archs" ]]; then | ||
| 144 | + echo "warning: [CP] Vendored binary '$binary' contains architectures ($binary_archs) none of which match the current build architectures ($ARCHS)." | ||
| 145 | + STRIP_BINARY_RETVAL=0 | ||
| 146 | + return | ||
| 147 | + fi | ||
| 148 | + stripped="" | ||
| 149 | + for arch in $binary_archs; do | ||
| 150 | + if ! [[ "${ARCHS}" == *"$arch"* ]]; then | ||
| 151 | + # Strip non-valid architectures in-place | ||
| 152 | + lipo -remove "$arch" -output "$binary" "$binary" | ||
| 153 | + stripped="$stripped $arch" | ||
| 154 | + fi | ||
| 155 | + done | ||
| 156 | + if [[ "$stripped" ]]; then | ||
| 157 | + echo "Stripped $binary of architectures:$stripped" | ||
| 158 | + fi | ||
| 159 | + STRIP_BINARY_RETVAL=1 | ||
| 160 | +} | ||
| 161 | + | ||
| 162 | + | ||
| 163 | +if [[ "$CONFIGURATION" == "Debug" ]]; then | ||
| 164 | + install_framework "${BUILT_PRODUCTS_DIR}/DSAddressModuleF/DSAddressModuleF.framework" | ||
| 165 | +fi | ||
| 166 | +if [[ "$CONFIGURATION" == "Release" ]]; then | ||
| 167 | + install_framework "${BUILT_PRODUCTS_DIR}/DSAddressModuleF/DSAddressModuleF.framework" | ||
| 168 | +fi | ||
| 169 | +if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then | ||
| 170 | + wait | ||
| 171 | +fi |
Example/Pods/Target Support Files/Pods-DSAddressModuleF_Example/Pods-DSAddressModuleF_Example-umbrella.h
0 → 100644
| 1 | +++ a/Example/Pods/Target Support Files/Pods-DSAddressModuleF_Example/Pods-DSAddressModuleF_Example-umbrella.h | ||
| 1 | +#ifdef __OBJC__ | ||
| 2 | +#import <UIKit/UIKit.h> | ||
| 3 | +#else | ||
| 4 | +#ifndef FOUNDATION_EXPORT | ||
| 5 | +#if defined(__cplusplus) | ||
| 6 | +#define FOUNDATION_EXPORT extern "C" | ||
| 7 | +#else | ||
| 8 | +#define FOUNDATION_EXPORT extern | ||
| 9 | +#endif | ||
| 10 | +#endif | ||
| 11 | +#endif | ||
| 12 | + | ||
| 13 | + | ||
| 14 | +FOUNDATION_EXPORT double Pods_DSAddressModuleF_ExampleVersionNumber; | ||
| 15 | +FOUNDATION_EXPORT const unsigned char Pods_DSAddressModuleF_ExampleVersionString[]; | ||
| 16 | + |
Example/Pods/Target Support Files/Pods-DSAddressModuleF_Example/Pods-DSAddressModuleF_Example.debug.xcconfig
0 → 100644
| 1 | +++ a/Example/Pods/Target Support Files/Pods-DSAddressModuleF_Example/Pods-DSAddressModuleF_Example.debug.xcconfig | ||
| 1 | +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/DSAddressModuleF" | ||
| 2 | +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 | ||
| 3 | +HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/DSAddressModuleF/DSAddressModuleF.framework/Headers" | ||
| 4 | +LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' | ||
| 5 | +OTHER_LDFLAGS = $(inherited) -framework "DSAddressModuleF" | ||
| 6 | +PODS_BUILD_DIR = ${BUILD_DIR} | ||
| 7 | +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) | ||
| 8 | +PODS_PODFILE_DIR_PATH = ${SRCROOT}/. | ||
| 9 | +PODS_ROOT = ${SRCROOT}/Pods | ||
| 10 | +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES |
Example/Pods/Target Support Files/Pods-DSAddressModuleF_Example/Pods-DSAddressModuleF_Example.modulemap
0 → 100644
Example/Pods/Target Support Files/Pods-DSAddressModuleF_Example/Pods-DSAddressModuleF_Example.release.xcconfig
0 → 100644
| 1 | +++ a/Example/Pods/Target Support Files/Pods-DSAddressModuleF_Example/Pods-DSAddressModuleF_Example.release.xcconfig | ||
| 1 | +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/DSAddressModuleF" | ||
| 2 | +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 | ||
| 3 | +HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/DSAddressModuleF/DSAddressModuleF.framework/Headers" | ||
| 4 | +LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' | ||
| 5 | +OTHER_LDFLAGS = $(inherited) -framework "DSAddressModuleF" | ||
| 6 | +PODS_BUILD_DIR = ${BUILD_DIR} | ||
| 7 | +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) | ||
| 8 | +PODS_PODFILE_DIR_PATH = ${SRCROOT}/. | ||
| 9 | +PODS_ROOT = ${SRCROOT}/Pods | ||
| 10 | +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES |
Example/Pods/Target Support Files/Pods-DSAddressModuleF_Tests/Pods-DSAddressModuleF_Tests-Info.plist
0 → 100644
| 1 | +++ a/Example/Pods/Target Support Files/Pods-DSAddressModuleF_Tests/Pods-DSAddressModuleF_Tests-Info.plist | ||
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | ||
| 2 | +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
| 3 | +<plist version="1.0"> | ||
| 4 | +<dict> | ||
| 5 | + <key>CFBundleDevelopmentRegion</key> | ||
| 6 | + <string>en</string> | ||
| 7 | + <key>CFBundleExecutable</key> | ||
| 8 | + <string>${EXECUTABLE_NAME}</string> | ||
| 9 | + <key>CFBundleIdentifier</key> | ||
| 10 | + <string>${PRODUCT_BUNDLE_IDENTIFIER}</string> | ||
| 11 | + <key>CFBundleInfoDictionaryVersion</key> | ||
| 12 | + <string>6.0</string> | ||
| 13 | + <key>CFBundleName</key> | ||
| 14 | + <string>${PRODUCT_NAME}</string> | ||
| 15 | + <key>CFBundlePackageType</key> | ||
| 16 | + <string>FMWK</string> | ||
| 17 | + <key>CFBundleShortVersionString</key> | ||
| 18 | + <string>1.0.0</string> | ||
| 19 | + <key>CFBundleSignature</key> | ||
| 20 | + <string>????</string> | ||
| 21 | + <key>CFBundleVersion</key> | ||
| 22 | + <string>${CURRENT_PROJECT_VERSION}</string> | ||
| 23 | + <key>NSPrincipalClass</key> | ||
| 24 | + <string></string> | ||
| 25 | +</dict> | ||
| 26 | +</plist> |
Example/Pods/Target Support Files/Pods-DSAddressModuleF_Tests/Pods-DSAddressModuleF_Tests-acknowledgements.markdown
0 → 100644
Example/Pods/Target Support Files/Pods-DSAddressModuleF_Tests/Pods-DSAddressModuleF_Tests-acknowledgements.plist
0 → 100644
| 1 | +++ a/Example/Pods/Target Support Files/Pods-DSAddressModuleF_Tests/Pods-DSAddressModuleF_Tests-acknowledgements.plist | ||
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | ||
| 2 | +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
| 3 | +<plist version="1.0"> | ||
| 4 | +<dict> | ||
| 5 | + <key>PreferenceSpecifiers</key> | ||
| 6 | + <array> | ||
| 7 | + <dict> | ||
| 8 | + <key>FooterText</key> | ||
| 9 | + <string>This application makes use of the following third party libraries:</string> | ||
| 10 | + <key>Title</key> | ||
| 11 | + <string>Acknowledgements</string> | ||
| 12 | + <key>Type</key> | ||
| 13 | + <string>PSGroupSpecifier</string> | ||
| 14 | + </dict> | ||
| 15 | + <dict> | ||
| 16 | + <key>FooterText</key> | ||
| 17 | + <string>Generated by CocoaPods - https://cocoapods.org</string> | ||
| 18 | + <key>Title</key> | ||
| 19 | + <string></string> | ||
| 20 | + <key>Type</key> | ||
| 21 | + <string>PSGroupSpecifier</string> | ||
| 22 | + </dict> | ||
| 23 | + </array> | ||
| 24 | + <key>StringsTable</key> | ||
| 25 | + <string>Acknowledgements</string> | ||
| 26 | + <key>Title</key> | ||
| 27 | + <string>Acknowledgements</string> | ||
| 28 | +</dict> | ||
| 29 | +</plist> |
Example/Pods/Target Support Files/Pods-DSAddressModuleF_Tests/Pods-DSAddressModuleF_Tests-dummy.m
0 → 100644
Example/Pods/Target Support Files/Pods-DSAddressModuleF_Tests/Pods-DSAddressModuleF_Tests-umbrella.h
0 → 100644
| 1 | +++ a/Example/Pods/Target Support Files/Pods-DSAddressModuleF_Tests/Pods-DSAddressModuleF_Tests-umbrella.h | ||
| 1 | +#ifdef __OBJC__ | ||
| 2 | +#import <UIKit/UIKit.h> | ||
| 3 | +#else | ||
| 4 | +#ifndef FOUNDATION_EXPORT | ||
| 5 | +#if defined(__cplusplus) | ||
| 6 | +#define FOUNDATION_EXPORT extern "C" | ||
| 7 | +#else | ||
| 8 | +#define FOUNDATION_EXPORT extern | ||
| 9 | +#endif | ||
| 10 | +#endif | ||
| 11 | +#endif | ||
| 12 | + | ||
| 13 | + | ||
| 14 | +FOUNDATION_EXPORT double Pods_DSAddressModuleF_TestsVersionNumber; | ||
| 15 | +FOUNDATION_EXPORT const unsigned char Pods_DSAddressModuleF_TestsVersionString[]; | ||
| 16 | + |
Example/Pods/Target Support Files/Pods-DSAddressModuleF_Tests/Pods-DSAddressModuleF_Tests.debug.xcconfig
0 → 100644
| 1 | +++ a/Example/Pods/Target Support Files/Pods-DSAddressModuleF_Tests/Pods-DSAddressModuleF_Tests.debug.xcconfig | ||
| 1 | +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/DSAddressModuleF" | ||
| 2 | +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 | ||
| 3 | +HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/DSAddressModuleF/DSAddressModuleF.framework/Headers" | ||
| 4 | +OTHER_LDFLAGS = $(inherited) -framework "DSAddressModuleF" | ||
| 5 | +PODS_BUILD_DIR = ${BUILD_DIR} | ||
| 6 | +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) | ||
| 7 | +PODS_PODFILE_DIR_PATH = ${SRCROOT}/. | ||
| 8 | +PODS_ROOT = ${SRCROOT}/Pods | ||
| 9 | +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES |
Example/Pods/Target Support Files/Pods-DSAddressModuleF_Tests/Pods-DSAddressModuleF_Tests.modulemap
0 → 100644
Example/Pods/Target Support Files/Pods-DSAddressModuleF_Tests/Pods-DSAddressModuleF_Tests.release.xcconfig
0 → 100644
| 1 | +++ a/Example/Pods/Target Support Files/Pods-DSAddressModuleF_Tests/Pods-DSAddressModuleF_Tests.release.xcconfig | ||
| 1 | +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/DSAddressModuleF" | ||
| 2 | +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 | ||
| 3 | +HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/DSAddressModuleF/DSAddressModuleF.framework/Headers" | ||
| 4 | +OTHER_LDFLAGS = $(inherited) -framework "DSAddressModuleF" | ||
| 5 | +PODS_BUILD_DIR = ${BUILD_DIR} | ||
| 6 | +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) | ||
| 7 | +PODS_PODFILE_DIR_PATH = ${SRCROOT}/. | ||
| 8 | +PODS_ROOT = ${SRCROOT}/Pods | ||
| 9 | +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES |
Example/Tests/Tests-Info.plist
0 → 100644
| 1 | +++ a/Example/Tests/Tests-Info.plist | ||
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | ||
| 2 | +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
| 3 | +<plist version="1.0"> | ||
| 4 | +<dict> | ||
| 5 | + <key>CFBundleDevelopmentRegion</key> | ||
| 6 | + <string>en</string> | ||
| 7 | + <key>CFBundleExecutable</key> | ||
| 8 | + <string>${EXECUTABLE_NAME}</string> | ||
| 9 | + <key>CFBundleIdentifier</key> | ||
| 10 | + <string>$(PRODUCT_BUNDLE_IDENTIFIER)</string> | ||
| 11 | + <key>CFBundleInfoDictionaryVersion</key> | ||
| 12 | + <string>6.0</string> | ||
| 13 | + <key>CFBundlePackageType</key> | ||
| 14 | + <string>BNDL</string> | ||
| 15 | + <key>CFBundleShortVersionString</key> | ||
| 16 | + <string>1.0</string> | ||
| 17 | + <key>CFBundleSignature</key> | ||
| 18 | + <string>????</string> | ||
| 19 | + <key>CFBundleVersion</key> | ||
| 20 | + <string>1</string> | ||
| 21 | +</dict> | ||
| 22 | +</plist> |
Example/Tests/Tests-Prefix.pch
0 → 100644
Example/Tests/Tests.m
0 → 100644
| 1 | +++ a/Example/Tests/Tests.m | ||
| 1 | +// | ||
| 2 | +// DSAddressModuleFTests.m | ||
| 3 | +// DSAddressModuleFTests | ||
| 4 | +// | ||
| 5 | +// Created by 694092596@qq.com on 03/07/2020. | ||
| 6 | +// Copyright (c) 2020 694092596@qq.com. All rights reserved. | ||
| 7 | +// | ||
| 8 | + | ||
| 9 | +@import XCTest; | ||
| 10 | + | ||
| 11 | +@interface Tests : XCTestCase | ||
| 12 | + | ||
| 13 | +@end | ||
| 14 | + | ||
| 15 | +@implementation Tests | ||
| 16 | + | ||
| 17 | +- (void)setUp | ||
| 18 | +{ | ||
| 19 | + [super setUp]; | ||
| 20 | + // Put setup code here. This method is called before the invocation of each test method in the class. | ||
| 21 | +} | ||
| 22 | + | ||
| 23 | +- (void)tearDown | ||
| 24 | +{ | ||
| 25 | + // Put teardown code here. This method is called after the invocation of each test method in the class. | ||
| 26 | + [super tearDown]; | ||
| 27 | +} | ||
| 28 | + | ||
| 29 | +- (void)testExample | ||
| 30 | +{ | ||
| 31 | + XCTFail(@"No implementation for \"%s\"", __PRETTY_FUNCTION__); | ||
| 32 | +} | ||
| 33 | + | ||
| 34 | +@end | ||
| 35 | + |
Example/Tests/en.lproj/InfoPlist.strings
0 → 100644
LICENSE
0 → 100644
| 1 | +++ a/LICENSE | ||
| 1 | +Copyright (c) 2020 694092596@qq.com <694092596@qq.com> | ||
| 2 | + | ||
| 3 | +Permission is hereby granted, free of charge, to any person obtaining a copy | ||
| 4 | +of this software and associated documentation files (the "Software"), to deal | ||
| 5 | +in the Software without restriction, including without limitation the rights | ||
| 6 | +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
| 7 | +copies of the Software, and to permit persons to whom the Software is | ||
| 8 | +furnished to do so, subject to the following conditions: | ||
| 9 | + | ||
| 10 | +The above copyright notice and this permission notice shall be included in | ||
| 11 | +all copies or substantial portions of the Software. | ||
| 12 | + | ||
| 13 | +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
| 14 | +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
| 15 | +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
| 16 | +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
| 17 | +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
| 18 | +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
| 19 | +THE SOFTWARE. |
README.md
0 → 100644
| 1 | +++ a/README.md | ||
| 1 | +# DSAddressModuleF | ||
| 2 | + | ||
| 3 | +[](https://travis-ci.org/694092596@qq.com/DSAddressModuleF) | ||
| 4 | +[](https://cocoapods.org/pods/DSAddressModuleF) | ||
| 5 | +[](https://cocoapods.org/pods/DSAddressModuleF) | ||
| 6 | +[](https://cocoapods.org/pods/DSAddressModuleF) | ||
| 7 | + | ||
| 8 | +## Example | ||
| 9 | + | ||
| 10 | +To run the example project, clone the repo, and run `pod install` from the Example directory first. | ||
| 11 | + | ||
| 12 | +## Requirements | ||
| 13 | + | ||
| 14 | +## Installation | ||
| 15 | + | ||
| 16 | +DSAddressModuleF is available through [CocoaPods](https://cocoapods.org). To install | ||
| 17 | +it, simply add the following line to your Podfile: | ||
| 18 | + | ||
| 19 | +```ruby | ||
| 20 | +pod 'DSAddressModuleF' | ||
| 21 | +``` | ||
| 22 | + | ||
| 23 | +## Author | ||
| 24 | + | ||
| 25 | +694092596@qq.com, 694092596@qq.com | ||
| 26 | + | ||
| 27 | +## License | ||
| 28 | + | ||
| 29 | +DSAddressModuleF is available under the MIT license. See the LICENSE file for more info. |
_Pods.xcodeproj
0 → 120000