Commit 9179d5cbe691c1d7c8e8768e7328b20d180696e6

Authored by 毕珂
0 parents

0.0.12

Showing 65 changed files with 3190 additions and 0 deletions
DSBaseModule.podspec 0 → 100644
  1 +++ a/DSBaseModule.podspec
  1 +Pod::Spec.new do |s|
  2 +
  3 + s.name = "DSBaseModule"
  4 + s.version = "0.0.12"
  5 + s.summary = "DSBaseModule"
  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/DSBaseModule.git', :tag => s.version.to_s }
  10 + s.ios.deployment_target = '9.0'
  11 +
  12 + s.vendored_frameworks = "#{s.name}/Frameworks/#{s.name}.framework"
  13 +
  14 +end
DSBaseModule/Frameworks/DSBaseModule.framework/DSBaseModule 0 → 100755
No preview for this file type
DSBaseModule/Frameworks/DSBaseModule.framework/Headers/DSBaseModule-umbrella.h 0 → 100644
  1 +++ a/DSBaseModule/Frameworks/DSBaseModule.framework/Headers/DSBaseModule-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 "DSBaseModuleConstant.h"
  14 +#import "DSBaseModuleHeader.h"
  15 +#import "DSBaseModuleInline.h"
  16 +#import "DSBaseModuleMacro.h"
  17 +#import "DSBaseModuleManager.h"
  18 +
  19 +FOUNDATION_EXPORT double DSBaseModuleVersionNumber;
  20 +FOUNDATION_EXPORT const unsigned char DSBaseModuleVersionString[];
  21 +
DSBaseModule/Frameworks/DSBaseModule.framework/Headers/DSBaseModuleConstant.h 0 → 100644
  1 +++ a/DSBaseModule/Frameworks/DSBaseModule.framework/Headers/DSBaseModuleConstant.h
  1 +//
  2 +// DSBaseModuleConstant.m
  3 +// BKProjectFramework
  4 +//
  5 +// Created by BIKE on 2018/7/6.
  6 +// Copyright © 2018年 BIKE. All rights reserved.
  7 +// 内部常量
  8 +
  9 +#import <Foundation/Foundation.h>
  10 +
  11 +#pragma mark - 常量
  12 +
  13 +UIKIT_EXTERN NSString * const kVersionIsTooLowMessage;//版本过低提示信息 @"版本过老,请升级最新版本"
DSBaseModule/Frameworks/DSBaseModule.framework/Headers/DSBaseModuleHeader.h 0 → 100644
  1 +++ a/DSBaseModule/Frameworks/DSBaseModule.framework/Headers/DSBaseModuleHeader.h
  1 +//
  2 +// DSBaseModuleHeader.h
  3 +// DSBaseModule
  4 +//
  5 +// Created by zhaolin on 2020/1/16.
  6 +// Copyright © 2020 CNLive. All rights reserved.
  7 +//
  8 +
  9 +#ifndef DSBaseModuleHeader_h
  10 +#define DSBaseModuleHeader_h
  11 +
  12 +#import "DSBaseModuleInline.h"
  13 +#import "DSBaseModuleMacro.h"
  14 +#import "DSBaseModuleConstant.h"
  15 +#import "DSBaseModuleManager.h"
  16 +
  17 +#endif /* DSBaseModuleHeader_h */
DSBaseModule/Frameworks/DSBaseModule.framework/Headers/DSBaseModuleInline.h 0 → 100644
  1 +++ a/DSBaseModule/Frameworks/DSBaseModule.framework/Headers/DSBaseModuleInline.h
  1 +//
  2 +// DSBaseModuleInline.h
  3 +// BKProjectFramework
  4 +//
  5 +// Created by BIKE on 2018/10/8.
  6 +// Copyright © 2018年 BIKE. All rights reserved.
  7 +//
  8 +
  9 +#ifndef DSBaseModuleInline_h
  10 +#define DSBaseModuleInline_h
  11 +
  12 +#import <Foundation/Foundation.h>
  13 +#import <UIKit/UIKit.h>
  14 +/* 编译错误解决:implicit declaration of function 'close' is invalid in C99
  15 + #import <sys/time.h>
  16 + #import <fcntl.h>
  17 + #import <unistd.h>
  18 + */
  19 +#import <sys/time.h>
  20 +#import <fcntl.h>
  21 +#import <unistd.h>
  22 +
  23 +#pragma mark - 检测是否是iPhoneX系列
  24 +
  25 +/**
  26 + 判断是否是iPhone X系列
  27 + */
  28 +NS_INLINE BOOL DS_is_iPhoneX_series() {
  29 + BOOL iPhoneXSeries = NO;
  30 + if (UIDevice.currentDevice.userInterfaceIdiom != UIUserInterfaceIdiomPhone) {
  31 + return iPhoneXSeries;
  32 + }
  33 + if (@available(iOS 11.0, *)) {
  34 + UIWindow * window = [[[UIApplication sharedApplication] delegate] window];
  35 + if (window.safeAreaInsets.bottom > 0.0) {
  36 + iPhoneXSeries = YES;
  37 + }
  38 + }
  39 + return iPhoneXSeries;
  40 +}
  41 +
  42 +/**
  43 + 获取系统状态栏高度
  44 + */
  45 +NS_INLINE CGFloat DS_get_system_statusBar_height() {
  46 + return DS_is_iPhoneX_series() ? 44.f : 20.f;
  47 +}
  48 +
  49 +/**
  50 + 获取系统导航高度
  51 + */
  52 +NS_INLINE CGFloat DS_get_system_nav_height() {
  53 + return DS_is_iPhoneX_series() ? (44.f+44.f) : 64.f;
  54 +}
  55 +
  56 +/**
  57 + 获取系统导航UI高度
  58 + */
  59 +NS_INLINE CGFloat DS_get_system_nav_ui_height() {
  60 + return DS_get_system_nav_height() - DS_get_system_statusBar_height();
  61 +}
  62 +
  63 +/**
  64 + 获取系统tabbar高度
  65 + */
  66 +NS_INLINE CGFloat DS_get_system_tabbar_height() {
  67 + return DS_is_iPhoneX_series() ? 83.f : 49.f;
  68 +}
  69 +
  70 +/**
  71 + 获取系统tabbarUI高度
  72 + */
  73 +NS_INLINE CGFloat DS_get_system_tabbar_ui_height() {
  74 + return 49.f;
  75 +}
  76 +
  77 +/**
  78 + 获取系统tabbarUI增加的高度 (因iPhoneX系列底部有安全区域增加的高度)
  79 + */
  80 +NS_INLINE CGFloat DS_get_system_tabbar_ui_offsetHeight() {
  81 + return DS_get_system_tabbar_height() - DS_get_system_tabbar_ui_height();
  82 +}
  83 +
  84 +#pragma mark - 字体
  85 +
  86 +/**
  87 + 细体
  88 + */
  89 +UIKIT_STATIC_INLINE UIFont * DS_thin_font(CGFloat pointSize) {
  90 + if (@available(iOS 8.2, *)) {
  91 + return [UIFont systemFontOfSize:pointSize weight:UIFontWeightThin];
  92 + }else {
  93 + return [UIFont systemFontOfSize:pointSize];
  94 + }
  95 +}
  96 +
  97 +/**
  98 + 半细体
  99 + */
  100 +UIKIT_STATIC_INLINE UIFont * DS_light_font(CGFloat pointSize) {
  101 + if (@available(iOS 8.2, *)) {
  102 + return [UIFont systemFontOfSize:pointSize weight:UIFontWeightLight];
  103 + }else {
  104 + return [UIFont systemFontOfSize:pointSize];
  105 + }
  106 +}
  107 +
  108 +/**
  109 + 正常体
  110 + */
  111 +UIKIT_STATIC_INLINE UIFont * DS_regular_font(CGFloat pointSize) {
  112 + if (@available(iOS 8.2, *)) {
  113 + return [UIFont systemFontOfSize:pointSize weight:UIFontWeightRegular];
  114 + }else {
  115 + return [UIFont systemFontOfSize:pointSize];
  116 + }
  117 +}
  118 +
  119 +/**
  120 + 半粗体
  121 + */
  122 +UIKIT_STATIC_INLINE UIFont * DS_medium_font(CGFloat pointSize) {
  123 + if (@available(iOS 8.2, *)) {
  124 + return [UIFont systemFontOfSize:pointSize weight:UIFontWeightMedium];
  125 + }else {
  126 + return [UIFont systemFontOfSize:pointSize];
  127 + }
  128 +}
  129 +
  130 +/**
  131 + 粗体
  132 + */
  133 +UIKIT_STATIC_INLINE UIFont * DS_semibold_font(CGFloat pointSize) {
  134 + if (@available(iOS 8.2, *)) {
  135 + return [UIFont systemFontOfSize:pointSize weight:UIFontWeightSemibold];
  136 + }else {
  137 + return [UIFont boldSystemFontOfSize:pointSize];
  138 + }
  139 +}
  140 +
  141 +#pragma mark - 自适应字体
  142 +
  143 +/**
  144 + 细体(自适应)
  145 + */
  146 +UIKIT_STATIC_INLINE UIFont * DS_thin_adapt_font(CGFloat pointSize) {
  147 + CGFloat multiple = [UIScreen mainScreen].bounds.size.width / 375.0f;
  148 + CGFloat size = floor(pointSize*multiple);
  149 + return DS_thin_font(size);
  150 +}
  151 +
  152 +/**
  153 + 半细体(自适应)
  154 + */
  155 +UIKIT_STATIC_INLINE UIFont * DS_light_adapt_font(CGFloat pointSize) {
  156 + CGFloat multiple = [UIScreen mainScreen].bounds.size.width / 375.0f;
  157 + CGFloat size = floor(pointSize*multiple);
  158 + return DS_light_font(size);
  159 +}
  160 +
  161 +/**
  162 + 正常体(自适应)
  163 + */
  164 +UIKIT_STATIC_INLINE UIFont * DS_regular_adapt_font(CGFloat pointSize) {
  165 + CGFloat multiple = [UIScreen mainScreen].bounds.size.width / 375.0f;
  166 + CGFloat size = floor(pointSize*multiple);
  167 + return DS_regular_font(size);
  168 +}
  169 +
  170 +/**
  171 + 半粗体(自适应)
  172 + */
  173 +UIKIT_STATIC_INLINE UIFont * DS_medium_adapt_font(CGFloat pointSize) {
  174 + CGFloat multiple = [UIScreen mainScreen].bounds.size.width / 375.0f;
  175 + CGFloat size = floor(pointSize*multiple);
  176 + return DS_medium_font(size);
  177 +}
  178 +
  179 +/**
  180 + 粗体(自适应)
  181 + */
  182 +UIKIT_STATIC_INLINE UIFont * DS_semibold_adapt_font(CGFloat pointSize) {
  183 + CGFloat multiple = [UIScreen mainScreen].bounds.size.width / 375.0f;
  184 + CGFloat size = floor(pointSize*multiple);
  185 + return DS_semibold_font(size);
  186 +}
  187 +
  188 +#pragma mark - 自适应长度
  189 +
  190 +NS_INLINE CGFloat DS_adapt_length(CGFloat length) {
  191 + CGFloat multiple = [UIScreen mainScreen].bounds.size.width / 375.0f;
  192 + CGFloat f_adapt_length = floor(length * multiple);
  193 + return f_adapt_length;
  194 +}
  195 +
  196 +#endif /* DSBaseModuleInline_h */
DSBaseModule/Frameworks/DSBaseModule.framework/Headers/DSBaseModuleMacro.h 0 → 100644
  1 +++ a/DSBaseModule/Frameworks/DSBaseModule.framework/Headers/DSBaseModuleMacro.h
  1 +//
  2 +// DSBaseModuleMacro.h
  3 +// BKProjectFramework
  4 +//
  5 +// Created by BIKE on 2018/7/6.
  6 +// Copyright © 2018年 BIKE. All rights reserved.
  7 +//
  8 +
  9 +#ifndef DSBaseModuleMacro_h
  10 +#define DSBaseModuleMacro_h
  11 +
  12 +/* 编译错误解决:implicit declaration of function 'close' is invalid in C99
  13 + #import <sys/time.h>
  14 + #import <fcntl.h>
  15 + #import <unistd.h>
  16 + */
  17 +#import <sys/time.h>
  18 +#import <fcntl.h>
  19 +#import <unistd.h>
  20 +
  21 +#pragma mark - 当前窗口
  22 +
  23 +#define DS_APP_KEY_WINDOW [[[UIApplication sharedApplication] delegate] window]
  24 +
  25 +#pragma mark - 屏幕宽高
  26 +
  27 +#define DS_SCREENW [UIScreen mainScreen].bounds.size.width
  28 +#define DS_SCREENH [UIScreen mainScreen].bounds.size.height
  29 +
  30 +#pragma mark - 颜色
  31 +
  32 +#define DS_RGB(r,g,b) [UIColor colorWithRed:r/255.0 green:g/255.0 blue:b/255.0 alpha:1]
  33 +#define DS_RGBA(r,g,b,a) [UIColor colorWithRed:r/255.0f green:g/255.0f blue:b/255.0f alpha:a]
  34 +
  35 +#define DS_HEX_RGB(rgbValue) [UIColor colorWithRed:((float)((rgbValue & 0xFF0000) >> 16))/255.0 green:((float)((rgbValue & 0xFF00) >> 8))/255.0 blue:((float)(rgbValue & 0xFF))/255.0 alpha:1.0]
  36 +#define DS_HEX_RGB_A(rgbValue,a) [UIColor colorWithRed:((float)((rgbValue & 0xFF0000) >> 16))/255.0 green:((float)((rgbValue & 0xFF00) >> 8))/255.0 blue:((float)(rgbValue & 0xFF))/255.0 alpha:a]
  37 +
  38 +#pragma mark - 常用定义
  39 +
  40 +#ifdef DEBUG
  41 +#define DSLog(...) NSLog(__VA_ARGS__)
  42 +#else
  43 +#define DSLog(...)
  44 +#endif
  45 +
  46 +#define DS_POINTS_FROM_PIXELS(__PIXELS) (__PIXELS / [[UIScreen mainScreen] scale])
  47 +#define DS_ONE_PIXEL DS_POINTS_FROM_PIXELS(1.0)
  48 +
  49 +#define DS_WEAK_SELF(obj) __weak typeof(obj) weakSelf = obj;
  50 +#define DS_STRONG_SELF(obj) __strong typeof(obj) strongSelf = weakSelf;
  51 +
  52 +#endif /* DSBaseModuleMacro_h */
DSBaseModule/Frameworks/DSBaseModule.framework/Headers/DSBaseModuleManager.h 0 → 100644
  1 +++ a/DSBaseModule/Frameworks/DSBaseModule.framework/Headers/DSBaseModuleManager.h
  1 +//
  2 +// DSBaseModuleManager.h
  3 +// DSBaseModule
  4 +//
  5 +// Created by zhaolin on 2020/1/20.
  6 +// Copyright © 2020 CNLive. All rights reserved.
  7 +//
  8 +
  9 +#import <Foundation/Foundation.h>
  10 +#import <UIKit/UIKit.h>
  11 +#import <Photos/Photos.h>
  12 +
  13 +NS_ASSUME_NONNULL_BEGIN
  14 +
  15 +@interface DSBaseModuleManager : NSObject
  16 +
  17 +#pragma mark - 通用信息
  18 +
  19 +/// 键盘显示的高度
  20 +@property (nonatomic,assign) CGFloat keyboardDisplayHeight;
  21 +
  22 +#pragma mark - 单例
  23 +
  24 ++(instancetype)sharedManager;
  25 +
  26 +/// 单例创建方法
  27 +-(void)managerInit;
  28 +
  29 +#pragma mark - 提示
  30 +
  31 +/**
  32 + alert弹框
  33 +
  34 + @param title 标题
  35 + @param message 信息
  36 + @param actionTitleArr 按钮
  37 + @param actionMethod 按钮事件回调
  38 + @return alert弹框
  39 + */
  40 +-(nonnull UIAlertController*)presentAlert:(nullable NSString*)title message:(nullable NSString*)message actionTitleArr:(nullable NSArray*)actionTitleArr actionMethod:(nullable void (^)(NSInteger index))actionMethod;
  41 +
  42 +/**
  43 + alert弹框(富文本)
  44 +
  45 + @param attrTitle 标题
  46 + @param attrMessage 信息
  47 + @param actionTitleArr 按钮
  48 + @param actionMethod 按钮事件回调
  49 + @return alert弹框
  50 + */
  51 +-(nonnull UIAlertController*)presentAttrAlert:(nullable NSAttributedString*)attrTitle attrMessage:(nullable NSAttributedString*)attrMessage actionTitleArr:(nullable NSArray<NSString*>*)actionTitleArr actionMethod:(nullable void (^)(NSInteger index))actionMethod;
  52 +
  53 +/**
  54 + alert弹框(富文本)
  55 +
  56 + @param attrTitle 标题
  57 + @param attrMessage 信息
  58 + @param actionTitleArr 按钮
  59 + @param actionTitleColorArr 按钮颜色数组
  60 + @param actionMethod 按钮事件回调
  61 + @return alert弹框
  62 + */
  63 +-(nonnull UIAlertController*)presentAttrAlert:(nullable NSAttributedString*)attrTitle attrMessage:(nullable NSAttributedString*)attrMessage actionTitleArr:(nullable NSArray<NSString*>*)actionTitleArr actionTitleColorArr:(nullable NSArray<UIColor*>*)actionTitleColorArr actionMethod:(nullable void (^)(NSInteger index))actionMethod;
  64 +
  65 +/// alert底部弹出弹框
  66 +/// @param title 标题
  67 +/// @param message 信息
  68 +/// @param actionTitleArr 按钮
  69 +/// @param actionMethod 按钮事件回调
  70 +-(nonnull UIAlertController*)presentActionSheet:(nullable NSString*)title message:(nullable NSString*)message actionTitleArr:(nullable NSArray<NSString*>*)actionTitleArr actionMethod:(nullable void (^)(NSInteger index))actionMethod;
  71 +
  72 +#pragma mark - 打电话
  73 +
  74 +-(void)callPhone:(nonnull NSString*)phoneStr;
  75 +
  76 +#pragma mark - 文件共享
  77 +
  78 +-(void)shareFilePath:(nonnull NSURL *)filePath;
  79 +
  80 +#pragma mark - 检测是否为空
  81 +
  82 +/**
  83 + 检测是否为空
  84 +
  85 + @param object 检测对象
  86 + @return 是否为空
  87 + */
  88 +-(BOOL)isEmptyObject:(nullable id)object;
  89 +
  90 +#pragma mark - 检测私有属性
  91 +
  92 +/**
  93 + 检测是否允许调用相机
  94 +
  95 + @param handler 检测回调
  96 + @param alertHandler 弹框处理回调
  97 + */
  98 +-(void)checkAllowVisitCameraHandler:(nullable void (^)(BOOL flag))handler alertHandler:(nullable void (^)(void))alertHandler;
  99 +
  100 +/**
  101 + 检测是否允许调用相册
  102 +
  103 + @param handler 检测回调
  104 + @param alertHandler 弹框处理回调
  105 + */
  106 +-(void)checkAllowVisitPhotoAlbumHandler:(nullable void (^)(BOOL flag))handler alertHandler:(nullable void (^)(void))alertHandler;
  107 +
  108 +#pragma mark - 保存图片
  109 +
  110 +/**
  111 + 保存图片
  112 +
  113 + @param image 图片
  114 + @param complete 保存完成方法
  115 + */
  116 +-(void)saveImage:(nonnull UIImage*)image complete:(nullable void (^)(PHAsset * _Nonnull asset, BOOL success))complete;
  117 +
  118 +#pragma mark - 跳转商家端App
  119 +
  120 +/**
  121 + 是否安装了商家端app
  122 +
  123 + @return YES装了 NO没装
  124 + */
  125 +-(BOOL)isInstallMerchantApp;
  126 +
  127 +/**
  128 + 跳转商家端App
  129 + */
  130 +-(void)skipMerchantApp;
  131 +
  132 +@end
  133 +
  134 +NS_ASSUME_NONNULL_END
DSBaseModule/Frameworks/DSBaseModule.framework/Info.plist 0 → 100644
No preview for this file type
DSBaseModule/Frameworks/DSBaseModule.framework/Modules/module.modulemap 0 → 100644
  1 +++ a/DSBaseModule/Frameworks/DSBaseModule.framework/Modules/module.modulemap
  1 +framework module DSBaseModule {
  2 + umbrella header "DSBaseModule-umbrella.h"
  3 +
  4 + export *
  5 + module * { export * }
  6 +}
Example/DSBaseModule.xcodeproj/project.pbxproj 0 → 100644
  1 +++ a/Example/DSBaseModule.xcodeproj/project.pbxproj
  1 +// !$*UTF8*$!
  2 +{
  3 + archiveVersion = 1;
  4 + classes = {
  5 + };
  6 + objectVersion = 46;
  7 + objects = {
  8 +
  9 +/* Begin PBXBuildFile section */
  10 + 250B3B2F172453C11F9FD3D2 /* Pods_DSBaseModule_Tests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CF0C4425622587FE861DDCA3 /* Pods_DSBaseModule_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 + ABB6B2F1D21311B0D8282B5F /* Pods_DSBaseModule_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 559DE48A2314D9196A9DED6C /* Pods_DSBaseModule_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 = DSBaseModule;
  36 + };
  37 +/* End PBXContainerItemProxy section */
  38 +
  39 +/* Begin PBXFileReference section */
  40 + 559DE48A2314D9196A9DED6C /* Pods_DSBaseModule_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_DSBaseModule_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  41 + 6003F58A195388D20070C39A /* DSBaseModule_Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = DSBaseModule_Example.app; sourceTree = BUILT_PRODUCTS_DIR; };
  42 + 6003F58D195388D20070C39A /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
  43 + 6003F58F195388D20070C39A /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
  44 + 6003F591195388D20070C39A /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
  45 + 6003F595195388D20070C39A /* DSBaseModule-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "DSBaseModule-Info.plist"; sourceTree = "<group>"; };
  46 + 6003F597195388D20070C39A /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  47 + 6003F599195388D20070C39A /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
  48 + 6003F59B195388D20070C39A /* DSBaseModule-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "DSBaseModule-Prefix.pch"; sourceTree = "<group>"; };
  49 + 6003F59C195388D20070C39A /* DSAppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DSAppDelegate.h; sourceTree = "<group>"; };
  50 + 6003F59D195388D20070C39A /* DSAppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DSAppDelegate.m; sourceTree = "<group>"; };
  51 + 6003F5A5195388D20070C39A /* DSViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DSViewController.h; sourceTree = "<group>"; };
  52 + 6003F5A6195388D20070C39A /* DSViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DSViewController.m; sourceTree = "<group>"; };
  53 + 6003F5A8195388D20070C39A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = "<group>"; };
  54 + 6003F5AE195388D20070C39A /* DSBaseModule_Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = DSBaseModule_Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
  55 + 6003F5AF195388D20070C39A /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; };
  56 + 6003F5B7195388D20070C39A /* Tests-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "Tests-Info.plist"; sourceTree = "<group>"; };
  57 + 6003F5B9195388D20070C39A /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
  58 + 6003F5BB195388D20070C39A /* Tests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Tests.m; sourceTree = "<group>"; };
  59 + 606FC2411953D9B200FFA9A0 /* Tests-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Tests-Prefix.pch"; sourceTree = "<group>"; };
  60 + 71719F9E1E33DC2100824A3D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
  61 + 76262C0D418D169B85ED2CD1 /* Pods-DSBaseModule_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-DSBaseModule_Tests.debug.xcconfig"; path = "Target Support Files/Pods-DSBaseModule_Tests/Pods-DSBaseModule_Tests.debug.xcconfig"; sourceTree = "<group>"; };
  62 + 873B8AEA1B1F5CCA007FD442 /* Main.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = Main.storyboard; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
  63 + A199EE8262D7F2EB4B0D12E6 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = LICENSE; path = ../LICENSE; sourceTree = "<group>"; };
  64 + A3E8BB047396AA022FEF14F6 /* Pods-DSBaseModule_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-DSBaseModule_Tests.release.xcconfig"; path = "Target Support Files/Pods-DSBaseModule_Tests/Pods-DSBaseModule_Tests.release.xcconfig"; sourceTree = "<group>"; };
  65 + B1CD8737E50659DFE012E704 /* Pods-DSBaseModule_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-DSBaseModule_Example.debug.xcconfig"; path = "Target Support Files/Pods-DSBaseModule_Example/Pods-DSBaseModule_Example.debug.xcconfig"; sourceTree = "<group>"; };
  66 + BA6A2F2C2158847488FE791C /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; name = README.md; path = ../README.md; sourceTree = "<group>"; };
  67 + CF0C4425622587FE861DDCA3 /* Pods_DSBaseModule_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_DSBaseModule_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  68 + D706F8FD09B2B1A670EDA2BA /* DSBaseModule.podspec */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = DSBaseModule.podspec; path = ../DSBaseModule.podspec; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
  69 + F149E49C33EFA9A6F9D5E529 /* Pods-DSBaseModule_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-DSBaseModule_Example.release.xcconfig"; path = "Target Support Files/Pods-DSBaseModule_Example/Pods-DSBaseModule_Example.release.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 + ABB6B2F1D21311B0D8282B5F /* Pods_DSBaseModule_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 + 250B3B2F172453C11F9FD3D2 /* Pods_DSBaseModule_Tests.framework in Frameworks */,
  92 + );
  93 + runOnlyForDeploymentPostprocessing = 0;
  94 + };
  95 +/* End PBXFrameworksBuildPhase section */
  96 +
  97 +/* Begin PBXGroup section */
  98 + 6003F581195388D10070C39A = {
  99 + isa = PBXGroup;
  100 + children = (
  101 + 60FF7A9C1954A5C5007DD14C /* Podspec Metadata */,
  102 + 6003F593195388D20070C39A /* Example for DSBaseModule */,
  103 + 6003F5B5195388D20070C39A /* Tests */,
  104 + 6003F58C195388D20070C39A /* Frameworks */,
  105 + 6003F58B195388D20070C39A /* Products */,
  106 + A1B3089D4A0711C70AFE90D4 /* Pods */,
  107 + );
  108 + sourceTree = "<group>";
  109 + };
  110 + 6003F58B195388D20070C39A /* Products */ = {
  111 + isa = PBXGroup;
  112 + children = (
  113 + 6003F58A195388D20070C39A /* DSBaseModule_Example.app */,
  114 + 6003F5AE195388D20070C39A /* DSBaseModule_Tests.xctest */,
  115 + );
  116 + name = Products;
  117 + sourceTree = "<group>";
  118 + };
  119 + 6003F58C195388D20070C39A /* Frameworks */ = {
  120 + isa = PBXGroup;
  121 + children = (
  122 + 6003F58D195388D20070C39A /* Foundation.framework */,
  123 + 6003F58F195388D20070C39A /* CoreGraphics.framework */,
  124 + 6003F591195388D20070C39A /* UIKit.framework */,
  125 + 6003F5AF195388D20070C39A /* XCTest.framework */,
  126 + 559DE48A2314D9196A9DED6C /* Pods_DSBaseModule_Example.framework */,
  127 + CF0C4425622587FE861DDCA3 /* Pods_DSBaseModule_Tests.framework */,
  128 + );
  129 + name = Frameworks;
  130 + sourceTree = "<group>";
  131 + };
  132 + 6003F593195388D20070C39A /* Example for DSBaseModule */ = {
  133 + isa = PBXGroup;
  134 + children = (
  135 + 6003F59C195388D20070C39A /* DSAppDelegate.h */,
  136 + 6003F59D195388D20070C39A /* DSAppDelegate.m */,
  137 + 873B8AEA1B1F5CCA007FD442 /* Main.storyboard */,
  138 + 6003F5A5195388D20070C39A /* DSViewController.h */,
  139 + 6003F5A6195388D20070C39A /* DSViewController.m */,
  140 + 71719F9D1E33DC2100824A3D /* LaunchScreen.storyboard */,
  141 + 6003F5A8195388D20070C39A /* Images.xcassets */,
  142 + 6003F594195388D20070C39A /* Supporting Files */,
  143 + );
  144 + name = "Example for DSBaseModule";
  145 + path = DSBaseModule;
  146 + sourceTree = "<group>";
  147 + };
  148 + 6003F594195388D20070C39A /* Supporting Files */ = {
  149 + isa = PBXGroup;
  150 + children = (
  151 + 6003F595195388D20070C39A /* DSBaseModule-Info.plist */,
  152 + 6003F596195388D20070C39A /* InfoPlist.strings */,
  153 + 6003F599195388D20070C39A /* main.m */,
  154 + 6003F59B195388D20070C39A /* DSBaseModule-Prefix.pch */,
  155 + );
  156 + name = "Supporting Files";
  157 + sourceTree = "<group>";
  158 + };
  159 + 6003F5B5195388D20070C39A /* Tests */ = {
  160 + isa = PBXGroup;
  161 + children = (
  162 + 6003F5BB195388D20070C39A /* Tests.m */,
  163 + 6003F5B6195388D20070C39A /* Supporting Files */,
  164 + );
  165 + path = Tests;
  166 + sourceTree = "<group>";
  167 + };
  168 + 6003F5B6195388D20070C39A /* Supporting Files */ = {
  169 + isa = PBXGroup;
  170 + children = (
  171 + 6003F5B7195388D20070C39A /* Tests-Info.plist */,
  172 + 6003F5B8195388D20070C39A /* InfoPlist.strings */,
  173 + 606FC2411953D9B200FFA9A0 /* Tests-Prefix.pch */,
  174 + );
  175 + name = "Supporting Files";
  176 + sourceTree = "<group>";
  177 + };
  178 + 60FF7A9C1954A5C5007DD14C /* Podspec Metadata */ = {
  179 + isa = PBXGroup;
  180 + children = (
  181 + D706F8FD09B2B1A670EDA2BA /* DSBaseModule.podspec */,
  182 + BA6A2F2C2158847488FE791C /* README.md */,
  183 + A199EE8262D7F2EB4B0D12E6 /* LICENSE */,
  184 + );
  185 + name = "Podspec Metadata";
  186 + sourceTree = "<group>";
  187 + };
  188 + A1B3089D4A0711C70AFE90D4 /* Pods */ = {
  189 + isa = PBXGroup;
  190 + children = (
  191 + B1CD8737E50659DFE012E704 /* Pods-DSBaseModule_Example.debug.xcconfig */,
  192 + F149E49C33EFA9A6F9D5E529 /* Pods-DSBaseModule_Example.release.xcconfig */,
  193 + 76262C0D418D169B85ED2CD1 /* Pods-DSBaseModule_Tests.debug.xcconfig */,
  194 + A3E8BB047396AA022FEF14F6 /* Pods-DSBaseModule_Tests.release.xcconfig */,
  195 + );
  196 + path = Pods;
  197 + sourceTree = "<group>";
  198 + };
  199 +/* End PBXGroup section */
  200 +
  201 +/* Begin PBXNativeTarget section */
  202 + 6003F589195388D20070C39A /* DSBaseModule_Example */ = {
  203 + isa = PBXNativeTarget;
  204 + buildConfigurationList = 6003F5BF195388D20070C39A /* Build configuration list for PBXNativeTarget "DSBaseModule_Example" */;
  205 + buildPhases = (
  206 + 9C3CEEA29F7C9BC777371CDB /* [CP] Check Pods Manifest.lock */,
  207 + 6003F586195388D20070C39A /* Sources */,
  208 + 6003F587195388D20070C39A /* Frameworks */,
  209 + 6003F588195388D20070C39A /* Resources */,
  210 + E87C7B985552C575A0F20621 /* [CP] Embed Pods Frameworks */,
  211 + );
  212 + buildRules = (
  213 + );
  214 + dependencies = (
  215 + );
  216 + name = DSBaseModule_Example;
  217 + productName = DSBaseModule;
  218 + productReference = 6003F58A195388D20070C39A /* DSBaseModule_Example.app */;
  219 + productType = "com.apple.product-type.application";
  220 + };
  221 + 6003F5AD195388D20070C39A /* DSBaseModule_Tests */ = {
  222 + isa = PBXNativeTarget;
  223 + buildConfigurationList = 6003F5C2195388D20070C39A /* Build configuration list for PBXNativeTarget "DSBaseModule_Tests" */;
  224 + buildPhases = (
  225 + 7359420019CC7202AACE692A /* [CP] Check Pods Manifest.lock */,
  226 + 6003F5AA195388D20070C39A /* Sources */,
  227 + 6003F5AB195388D20070C39A /* Frameworks */,
  228 + 6003F5AC195388D20070C39A /* Resources */,
  229 + );
  230 + buildRules = (
  231 + );
  232 + dependencies = (
  233 + 6003F5B4195388D20070C39A /* PBXTargetDependency */,
  234 + );
  235 + name = DSBaseModule_Tests;
  236 + productName = DSBaseModuleTests;
  237 + productReference = 6003F5AE195388D20070C39A /* DSBaseModule_Tests.xctest */;
  238 + productType = "com.apple.product-type.bundle.unit-test";
  239 + };
  240 +/* End PBXNativeTarget section */
  241 +
  242 +/* Begin PBXProject section */
  243 + 6003F582195388D10070C39A /* Project object */ = {
  244 + isa = PBXProject;
  245 + attributes = {
  246 + CLASSPREFIX = DS;
  247 + LastUpgradeCheck = 1120;
  248 + ORGANIZATIONNAME = "694092596@qq.com";
  249 + TargetAttributes = {
  250 + 6003F589195388D20070C39A = {
  251 + DevelopmentTeam = 94X49GG3ZW;
  252 + };
  253 + 6003F5AD195388D20070C39A = {
  254 + TestTargetID = 6003F589195388D20070C39A;
  255 + };
  256 + };
  257 + };
  258 + buildConfigurationList = 6003F585195388D10070C39A /* Build configuration list for PBXProject "DSBaseModule" */;
  259 + compatibilityVersion = "Xcode 3.2";
  260 + developmentRegion = en;
  261 + hasScannedForEncodings = 0;
  262 + knownRegions = (
  263 + en,
  264 + Base,
  265 + );
  266 + mainGroup = 6003F581195388D10070C39A;
  267 + productRefGroup = 6003F58B195388D20070C39A /* Products */;
  268 + projectDirPath = "";
  269 + projectRoot = "";
  270 + targets = (
  271 + 6003F589195388D20070C39A /* DSBaseModule_Example */,
  272 + 6003F5AD195388D20070C39A /* DSBaseModule_Tests */,
  273 + );
  274 + };
  275 +/* End PBXProject section */
  276 +
  277 +/* Begin PBXResourcesBuildPhase section */
  278 + 6003F588195388D20070C39A /* Resources */ = {
  279 + isa = PBXResourcesBuildPhase;
  280 + buildActionMask = 2147483647;
  281 + files = (
  282 + 873B8AEB1B1F5CCA007FD442 /* Main.storyboard in Resources */,
  283 + 71719F9F1E33DC2100824A3D /* LaunchScreen.storyboard in Resources */,
  284 + 6003F5A9195388D20070C39A /* Images.xcassets in Resources */,
  285 + 6003F598195388D20070C39A /* InfoPlist.strings in Resources */,
  286 + );
  287 + runOnlyForDeploymentPostprocessing = 0;
  288 + };
  289 + 6003F5AC195388D20070C39A /* Resources */ = {
  290 + isa = PBXResourcesBuildPhase;
  291 + buildActionMask = 2147483647;
  292 + files = (
  293 + 6003F5BA195388D20070C39A /* InfoPlist.strings in Resources */,
  294 + );
  295 + runOnlyForDeploymentPostprocessing = 0;
  296 + };
  297 +/* End PBXResourcesBuildPhase section */
  298 +
  299 +/* Begin PBXShellScriptBuildPhase section */
  300 + 7359420019CC7202AACE692A /* [CP] Check Pods Manifest.lock */ = {
  301 + isa = PBXShellScriptBuildPhase;
  302 + buildActionMask = 2147483647;
  303 + files = (
  304 + );
  305 + inputFileListPaths = (
  306 + );
  307 + inputPaths = (
  308 + "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
  309 + "${PODS_ROOT}/Manifest.lock",
  310 + );
  311 + name = "[CP] Check Pods Manifest.lock";
  312 + outputFileListPaths = (
  313 + );
  314 + outputPaths = (
  315 + "$(DERIVED_FILE_DIR)/Pods-DSBaseModule_Tests-checkManifestLockResult.txt",
  316 + );
  317 + runOnlyForDeploymentPostprocessing = 0;
  318 + shellPath = /bin/sh;
  319 + 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";
  320 + showEnvVarsInLog = 0;
  321 + };
  322 + 9C3CEEA29F7C9BC777371CDB /* [CP] Check Pods Manifest.lock */ = {
  323 + isa = PBXShellScriptBuildPhase;
  324 + buildActionMask = 2147483647;
  325 + files = (
  326 + );
  327 + inputFileListPaths = (
  328 + );
  329 + inputPaths = (
  330 + "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
  331 + "${PODS_ROOT}/Manifest.lock",
  332 + );
  333 + name = "[CP] Check Pods Manifest.lock";
  334 + outputFileListPaths = (
  335 + );
  336 + outputPaths = (
  337 + "$(DERIVED_FILE_DIR)/Pods-DSBaseModule_Example-checkManifestLockResult.txt",
  338 + );
  339 + runOnlyForDeploymentPostprocessing = 0;
  340 + shellPath = /bin/sh;
  341 + 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";
  342 + showEnvVarsInLog = 0;
  343 + };
  344 + E87C7B985552C575A0F20621 /* [CP] Embed Pods Frameworks */ = {
  345 + isa = PBXShellScriptBuildPhase;
  346 + buildActionMask = 2147483647;
  347 + files = (
  348 + );
  349 + inputPaths = (
  350 + "${PODS_ROOT}/Target Support Files/Pods-DSBaseModule_Example/Pods-DSBaseModule_Example-frameworks.sh",
  351 + "${PODS_ROOT}/../../DSBaseModule/Frameworks/DSBaseModule.framework",
  352 + );
  353 + name = "[CP] Embed Pods Frameworks";
  354 + outputPaths = (
  355 + "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/DSBaseModule.framework",
  356 + );
  357 + runOnlyForDeploymentPostprocessing = 0;
  358 + shellPath = /bin/sh;
  359 + shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-DSBaseModule_Example/Pods-DSBaseModule_Example-frameworks.sh\"\n";
  360 + showEnvVarsInLog = 0;
  361 + };
  362 +/* End PBXShellScriptBuildPhase section */
  363 +
  364 +/* Begin PBXSourcesBuildPhase section */
  365 + 6003F586195388D20070C39A /* Sources */ = {
  366 + isa = PBXSourcesBuildPhase;
  367 + buildActionMask = 2147483647;
  368 + files = (
  369 + 6003F59E195388D20070C39A /* DSAppDelegate.m in Sources */,
  370 + 6003F5A7195388D20070C39A /* DSViewController.m in Sources */,
  371 + 6003F59A195388D20070C39A /* main.m in Sources */,
  372 + );
  373 + runOnlyForDeploymentPostprocessing = 0;
  374 + };
  375 + 6003F5AA195388D20070C39A /* Sources */ = {
  376 + isa = PBXSourcesBuildPhase;
  377 + buildActionMask = 2147483647;
  378 + files = (
  379 + 6003F5BC195388D20070C39A /* Tests.m in Sources */,
  380 + );
  381 + runOnlyForDeploymentPostprocessing = 0;
  382 + };
  383 +/* End PBXSourcesBuildPhase section */
  384 +
  385 +/* Begin PBXTargetDependency section */
  386 + 6003F5B4195388D20070C39A /* PBXTargetDependency */ = {
  387 + isa = PBXTargetDependency;
  388 + target = 6003F589195388D20070C39A /* DSBaseModule_Example */;
  389 + targetProxy = 6003F5B3195388D20070C39A /* PBXContainerItemProxy */;
  390 + };
  391 +/* End PBXTargetDependency section */
  392 +
  393 +/* Begin PBXVariantGroup section */
  394 + 6003F596195388D20070C39A /* InfoPlist.strings */ = {
  395 + isa = PBXVariantGroup;
  396 + children = (
  397 + 6003F597195388D20070C39A /* en */,
  398 + );
  399 + name = InfoPlist.strings;
  400 + sourceTree = "<group>";
  401 + };
  402 + 6003F5B8195388D20070C39A /* InfoPlist.strings */ = {
  403 + isa = PBXVariantGroup;
  404 + children = (
  405 + 6003F5B9195388D20070C39A /* en */,
  406 + );
  407 + name = InfoPlist.strings;
  408 + sourceTree = "<group>";
  409 + };
  410 + 71719F9D1E33DC2100824A3D /* LaunchScreen.storyboard */ = {
  411 + isa = PBXVariantGroup;
  412 + children = (
  413 + 71719F9E1E33DC2100824A3D /* Base */,
  414 + );
  415 + name = LaunchScreen.storyboard;
  416 + sourceTree = "<group>";
  417 + };
  418 +/* End PBXVariantGroup section */
  419 +
  420 +/* Begin XCBuildConfiguration section */
  421 + 6003F5BD195388D20070C39A /* Debug */ = {
  422 + isa = XCBuildConfiguration;
  423 + buildSettings = {
  424 + ALWAYS_SEARCH_USER_PATHS = NO;
  425 + CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  426 + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
  427 + CLANG_CXX_LIBRARY = "libc++";
  428 + CLANG_ENABLE_MODULES = YES;
  429 + CLANG_ENABLE_OBJC_ARC = YES;
  430 + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  431 + CLANG_WARN_BOOL_CONVERSION = YES;
  432 + CLANG_WARN_COMMA = YES;
  433 + CLANG_WARN_CONSTANT_CONVERSION = YES;
  434 + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  435 + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  436 + CLANG_WARN_EMPTY_BODY = YES;
  437 + CLANG_WARN_ENUM_CONVERSION = YES;
  438 + CLANG_WARN_INFINITE_RECURSION = YES;
  439 + CLANG_WARN_INT_CONVERSION = YES;
  440 + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  441 + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  442 + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  443 + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  444 + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  445 + CLANG_WARN_STRICT_PROTOTYPES = YES;
  446 + CLANG_WARN_SUSPICIOUS_MOVE = YES;
  447 + CLANG_WARN_UNREACHABLE_CODE = YES;
  448 + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  449 + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  450 + COPY_PHASE_STRIP = NO;
  451 + ENABLE_STRICT_OBJC_MSGSEND = YES;
  452 + ENABLE_TESTABILITY = YES;
  453 + GCC_C_LANGUAGE_STANDARD = gnu99;
  454 + GCC_DYNAMIC_NO_PIC = NO;
  455 + GCC_NO_COMMON_BLOCKS = YES;
  456 + GCC_OPTIMIZATION_LEVEL = 0;
  457 + GCC_PREPROCESSOR_DEFINITIONS = (
  458 + "DEBUG=1",
  459 + "$(inherited)",
  460 + );
  461 + GCC_SYMBOLS_PRIVATE_EXTERN = NO;
  462 + GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  463 + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  464 + GCC_WARN_UNDECLARED_SELECTOR = YES;
  465 + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  466 + GCC_WARN_UNUSED_FUNCTION = YES;
  467 + GCC_WARN_UNUSED_VARIABLE = YES;
  468 + IPHONEOS_DEPLOYMENT_TARGET = 9.3;
  469 + ONLY_ACTIVE_ARCH = YES;
  470 + SDKROOT = iphoneos;
  471 + TARGETED_DEVICE_FAMILY = "1,2";
  472 + };
  473 + name = Debug;
  474 + };
  475 + 6003F5BE195388D20070C39A /* Release */ = {
  476 + isa = XCBuildConfiguration;
  477 + buildSettings = {
  478 + ALWAYS_SEARCH_USER_PATHS = NO;
  479 + CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  480 + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
  481 + CLANG_CXX_LIBRARY = "libc++";
  482 + CLANG_ENABLE_MODULES = YES;
  483 + CLANG_ENABLE_OBJC_ARC = YES;
  484 + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  485 + CLANG_WARN_BOOL_CONVERSION = YES;
  486 + CLANG_WARN_COMMA = YES;
  487 + CLANG_WARN_CONSTANT_CONVERSION = YES;
  488 + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  489 + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  490 + CLANG_WARN_EMPTY_BODY = YES;
  491 + CLANG_WARN_ENUM_CONVERSION = YES;
  492 + CLANG_WARN_INFINITE_RECURSION = YES;
  493 + CLANG_WARN_INT_CONVERSION = YES;
  494 + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  495 + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  496 + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  497 + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  498 + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  499 + CLANG_WARN_STRICT_PROTOTYPES = YES;
  500 + CLANG_WARN_SUSPICIOUS_MOVE = YES;
  501 + CLANG_WARN_UNREACHABLE_CODE = YES;
  502 + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  503 + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  504 + COPY_PHASE_STRIP = YES;
  505 + ENABLE_NS_ASSERTIONS = NO;
  506 + ENABLE_STRICT_OBJC_MSGSEND = YES;
  507 + GCC_C_LANGUAGE_STANDARD = gnu99;
  508 + GCC_NO_COMMON_BLOCKS = YES;
  509 + GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  510 + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  511 + GCC_WARN_UNDECLARED_SELECTOR = YES;
  512 + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  513 + GCC_WARN_UNUSED_FUNCTION = YES;
  514 + GCC_WARN_UNUSED_VARIABLE = YES;
  515 + IPHONEOS_DEPLOYMENT_TARGET = 9.3;
  516 + SDKROOT = iphoneos;
  517 + TARGETED_DEVICE_FAMILY = "1,2";
  518 + VALIDATE_PRODUCT = YES;
  519 + };
  520 + name = Release;
  521 + };
  522 + 6003F5C0195388D20070C39A /* Debug */ = {
  523 + isa = XCBuildConfiguration;
  524 + baseConfigurationReference = B1CD8737E50659DFE012E704 /* Pods-DSBaseModule_Example.debug.xcconfig */;
  525 + buildSettings = {
  526 + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  527 + DEVELOPMENT_TEAM = 94X49GG3ZW;
  528 + GCC_PRECOMPILE_PREFIX_HEADER = YES;
  529 + GCC_PREFIX_HEADER = "DSBaseModule/DSBaseModule-Prefix.pch";
  530 + INFOPLIST_FILE = "DSBaseModule/DSBaseModule-Info.plist";
  531 + MODULE_NAME = ExampleApp;
  532 + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}";
  533 + PRODUCT_NAME = "$(TARGET_NAME)";
  534 + SWIFT_VERSION = 4.0;
  535 + WRAPPER_EXTENSION = app;
  536 + };
  537 + name = Debug;
  538 + };
  539 + 6003F5C1195388D20070C39A /* Release */ = {
  540 + isa = XCBuildConfiguration;
  541 + baseConfigurationReference = F149E49C33EFA9A6F9D5E529 /* Pods-DSBaseModule_Example.release.xcconfig */;
  542 + buildSettings = {
  543 + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  544 + DEVELOPMENT_TEAM = 94X49GG3ZW;
  545 + GCC_PRECOMPILE_PREFIX_HEADER = YES;
  546 + GCC_PREFIX_HEADER = "DSBaseModule/DSBaseModule-Prefix.pch";
  547 + INFOPLIST_FILE = "DSBaseModule/DSBaseModule-Info.plist";
  548 + MODULE_NAME = ExampleApp;
  549 + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}";
  550 + PRODUCT_NAME = "$(TARGET_NAME)";
  551 + SWIFT_VERSION = 4.0;
  552 + WRAPPER_EXTENSION = app;
  553 + };
  554 + name = Release;
  555 + };
  556 + 6003F5C3195388D20070C39A /* Debug */ = {
  557 + isa = XCBuildConfiguration;
  558 + baseConfigurationReference = 76262C0D418D169B85ED2CD1 /* Pods-DSBaseModule_Tests.debug.xcconfig */;
  559 + buildSettings = {
  560 + BUNDLE_LOADER = "$(TEST_HOST)";
  561 + FRAMEWORK_SEARCH_PATHS = (
  562 + "$(PLATFORM_DIR)/Developer/Library/Frameworks",
  563 + "$(inherited)",
  564 + "$(DEVELOPER_FRAMEWORKS_DIR)",
  565 + );
  566 + GCC_PRECOMPILE_PREFIX_HEADER = YES;
  567 + GCC_PREFIX_HEADER = "Tests/Tests-Prefix.pch";
  568 + GCC_PREPROCESSOR_DEFINITIONS = (
  569 + "DEBUG=1",
  570 + "$(inherited)",
  571 + );
  572 + INFOPLIST_FILE = "Tests/Tests-Info.plist";
  573 + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}";
  574 + PRODUCT_NAME = "$(TARGET_NAME)";
  575 + SWIFT_VERSION = 4.0;
  576 + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/DSBaseModule_Example.app/DSBaseModule_Example";
  577 + WRAPPER_EXTENSION = xctest;
  578 + };
  579 + name = Debug;
  580 + };
  581 + 6003F5C4195388D20070C39A /* Release */ = {
  582 + isa = XCBuildConfiguration;
  583 + baseConfigurationReference = A3E8BB047396AA022FEF14F6 /* Pods-DSBaseModule_Tests.release.xcconfig */;
  584 + buildSettings = {
  585 + BUNDLE_LOADER = "$(TEST_HOST)";
  586 + FRAMEWORK_SEARCH_PATHS = (
  587 + "$(PLATFORM_DIR)/Developer/Library/Frameworks",
  588 + "$(inherited)",
  589 + "$(DEVELOPER_FRAMEWORKS_DIR)",
  590 + );
  591 + GCC_PRECOMPILE_PREFIX_HEADER = YES;
  592 + GCC_PREFIX_HEADER = "Tests/Tests-Prefix.pch";
  593 + INFOPLIST_FILE = "Tests/Tests-Info.plist";
  594 + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}";
  595 + PRODUCT_NAME = "$(TARGET_NAME)";
  596 + SWIFT_VERSION = 4.0;
  597 + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/DSBaseModule_Example.app/DSBaseModule_Example";
  598 + WRAPPER_EXTENSION = xctest;
  599 + };
  600 + name = Release;
  601 + };
  602 +/* End XCBuildConfiguration section */
  603 +
  604 +/* Begin XCConfigurationList section */
  605 + 6003F585195388D10070C39A /* Build configuration list for PBXProject "DSBaseModule" */ = {
  606 + isa = XCConfigurationList;
  607 + buildConfigurations = (
  608 + 6003F5BD195388D20070C39A /* Debug */,
  609 + 6003F5BE195388D20070C39A /* Release */,
  610 + );
  611 + defaultConfigurationIsVisible = 0;
  612 + defaultConfigurationName = Release;
  613 + };
  614 + 6003F5BF195388D20070C39A /* Build configuration list for PBXNativeTarget "DSBaseModule_Example" */ = {
  615 + isa = XCConfigurationList;
  616 + buildConfigurations = (
  617 + 6003F5C0195388D20070C39A /* Debug */,
  618 + 6003F5C1195388D20070C39A /* Release */,
  619 + );
  620 + defaultConfigurationIsVisible = 0;
  621 + defaultConfigurationName = Release;
  622 + };
  623 + 6003F5C2195388D20070C39A /* Build configuration list for PBXNativeTarget "DSBaseModule_Tests" */ = {
  624 + isa = XCConfigurationList;
  625 + buildConfigurations = (
  626 + 6003F5C3195388D20070C39A /* Debug */,
  627 + 6003F5C4195388D20070C39A /* Release */,
  628 + );
  629 + defaultConfigurationIsVisible = 0;
  630 + defaultConfigurationName = Release;
  631 + };
  632 +/* End XCConfigurationList section */
  633 + };
  634 + rootObject = 6003F582195388D10070C39A /* Project object */;
  635 +}
Example/DSBaseModule.xcodeproj/project.xcworkspace/contents.xcworkspacedata 0 → 100644
  1 +++ a/Example/DSBaseModule.xcodeproj/project.xcworkspace/contents.xcworkspacedata
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<Workspace
  3 + version = "1.0">
  4 + <FileRef
  5 + location = "self:DSBaseModule.xcodeproj">
  6 + </FileRef>
  7 +</Workspace>
Example/DSBaseModule.xcodeproj/xcshareddata/xcschemes/DSBaseModule-Example.xcscheme 0 → 100644
  1 +++ a/Example/DSBaseModule.xcodeproj/xcshareddata/xcschemes/DSBaseModule-Example.xcscheme
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<Scheme
  3 + LastUpgradeVersion = "1120"
  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 = "DSBaseModule_Example.app"
  19 + BlueprintName = "DSBaseModule_Example"
  20 + ReferencedContainer = "container:DSBaseModule.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 + <MacroExpansion>
  31 + <BuildableReference
  32 + BuildableIdentifier = "primary"
  33 + BlueprintIdentifier = "6003F589195388D20070C39A"
  34 + BuildableName = "DSBaseModule_Example.app"
  35 + BlueprintName = "DSBaseModule_Example"
  36 + ReferencedContainer = "container:DSBaseModule.xcodeproj">
  37 + </BuildableReference>
  38 + </MacroExpansion>
  39 + <Testables>
  40 + <TestableReference
  41 + skipped = "NO">
  42 + <BuildableReference
  43 + BuildableIdentifier = "primary"
  44 + BlueprintIdentifier = "6003F5AD195388D20070C39A"
  45 + BuildableName = "DSBaseModule_Tests.xctest"
  46 + BlueprintName = "DSBaseModule_Tests"
  47 + ReferencedContainer = "container:DSBaseModule.xcodeproj">
  48 + </BuildableReference>
  49 + </TestableReference>
  50 + </Testables>
  51 + </TestAction>
  52 + <LaunchAction
  53 + buildConfiguration = "Debug"
  54 + selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
  55 + selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
  56 + launchStyle = "0"
  57 + useCustomWorkingDirectory = "NO"
  58 + ignoresPersistentStateOnLaunch = "NO"
  59 + debugDocumentVersioning = "YES"
  60 + debugServiceExtension = "internal"
  61 + allowLocationSimulation = "YES">
  62 + <BuildableProductRunnable
  63 + runnableDebuggingMode = "0">
  64 + <BuildableReference
  65 + BuildableIdentifier = "primary"
  66 + BlueprintIdentifier = "6003F589195388D20070C39A"
  67 + BuildableName = "DSBaseModule_Example.app"
  68 + BlueprintName = "DSBaseModule_Example"
  69 + ReferencedContainer = "container:DSBaseModule.xcodeproj">
  70 + </BuildableReference>
  71 + </BuildableProductRunnable>
  72 + </LaunchAction>
  73 + <ProfileAction
  74 + buildConfiguration = "Release"
  75 + shouldUseLaunchSchemeArgsEnv = "YES"
  76 + savedToolIdentifier = ""
  77 + useCustomWorkingDirectory = "NO"
  78 + debugDocumentVersioning = "YES">
  79 + <BuildableProductRunnable
  80 + runnableDebuggingMode = "0">
  81 + <BuildableReference
  82 + BuildableIdentifier = "primary"
  83 + BlueprintIdentifier = "6003F589195388D20070C39A"
  84 + BuildableName = "DSBaseModule_Example.app"
  85 + BlueprintName = "DSBaseModule_Example"
  86 + ReferencedContainer = "container:DSBaseModule.xcodeproj">
  87 + </BuildableReference>
  88 + </BuildableProductRunnable>
  89 + </ProfileAction>
  90 + <AnalyzeAction
  91 + buildConfiguration = "Debug">
  92 + </AnalyzeAction>
  93 + <ArchiveAction
  94 + buildConfiguration = "Release"
  95 + revealArchiveInOrganizer = "YES">
  96 + </ArchiveAction>
  97 +</Scheme>
Example/DSBaseModule.xcworkspace/contents.xcworkspacedata 0 → 100644
  1 +++ a/Example/DSBaseModule.xcworkspace/contents.xcworkspacedata
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<Workspace
  3 + version = "1.0">
  4 + <FileRef
  5 + location = "group:DSBaseModule.xcodeproj">
  6 + </FileRef>
  7 + <FileRef
  8 + location = "group:Pods/Pods.xcodeproj">
  9 + </FileRef>
  10 +</Workspace>
Example/DSBaseModule.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist 0 → 100644
  1 +++ a/Example/DSBaseModule.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/DSBaseModule/Base.lproj/LaunchScreen.storyboard 0 → 100644
  1 +++ a/Example/DSBaseModule/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/DSBaseModule/Base.lproj/Main.storyboard 0 → 100644
  1 +++ a/Example/DSBaseModule/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/DSBaseModule/DSAppDelegate.h 0 → 100644
  1 +++ a/Example/DSBaseModule/DSAppDelegate.h
  1 +//
  2 +// DSAppDelegate.h
  3 +// DSBaseModule
  4 +//
  5 +// Created by 694092596@qq.com on 02/29/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/DSBaseModule/DSAppDelegate.m 0 → 100644
  1 +++ a/Example/DSBaseModule/DSAppDelegate.m
  1 +//
  2 +// DSAppDelegate.m
  3 +// DSBaseModule
  4 +//
  5 +// Created by 694092596@qq.com on 02/29/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/DSBaseModule/DSBaseModule-Info.plist 0 → 100644
  1 +++ a/Example/DSBaseModule/DSBaseModule-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/DSBaseModule/DSBaseModule-Prefix.pch 0 → 100644
  1 +++ a/Example/DSBaseModule/DSBaseModule-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/DSBaseModule/DSViewController.h 0 → 100644
  1 +++ a/Example/DSBaseModule/DSViewController.h
  1 +//
  2 +// DSViewController.h
  3 +// DSBaseModule
  4 +//
  5 +// Created by 694092596@qq.com on 02/29/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/DSBaseModule/DSViewController.m 0 → 100644
  1 +++ a/Example/DSBaseModule/DSViewController.m
  1 +//
  2 +// DSViewController.m
  3 +// DSBaseModule
  4 +//
  5 +// Created by 694092596@qq.com on 02/29/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/DSBaseModule/Images.xcassets/AppIcon.appiconset/Contents.json 0 → 100644
  1 +++ a/Example/DSBaseModule/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/DSBaseModule/en.lproj/InfoPlist.strings 0 → 100644
  1 +++ a/Example/DSBaseModule/en.lproj/InfoPlist.strings
  1 +/* Localized versions of Info.plist keys */
  2 +
Example/DSBaseModule/main.m 0 → 100644
  1 +++ a/Example/DSBaseModule/main.m
  1 +//
  2 +// main.m
  3 +// DSBaseModule
  4 +//
  5 +// Created by 694092596@qq.com on 02/29/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
  1 +++ a/Example/Podfile
  1 +use_frameworks!
  2 +
  3 +platform :ios, '8.0'
  4 +
  5 +target 'DSBaseModule_Example' do
  6 + pod 'DSBaseModule', :path => '../'
  7 +
  8 + target 'DSBaseModule_Tests' do
  9 + inherit! :search_paths
  10 +
  11 +
  12 + end
  13 +end
Example/Podfile.lock 0 → 100644
  1 +++ a/Example/Podfile.lock
  1 +PODS:
  2 + - DSBaseModule (0.0.12)
  3 +
  4 +DEPENDENCIES:
  5 + - DSBaseModule (from `../`)
  6 +
  7 +EXTERNAL SOURCES:
  8 + DSBaseModule:
  9 + :path: "../"
  10 +
  11 +SPEC CHECKSUMS:
  12 + DSBaseModule: 28c511dac28c8f7fc31d1a6ce46ce3983eb1e1eb
  13 +
  14 +PODFILE CHECKSUM: 3dd347458ef4611086ad4746f3e04f4b152a20ce
  15 +
  16 +COCOAPODS: 1.8.4
Example/Pods/Local Podspecs/DSBaseModule.podspec.json 0 → 100644
  1 +++ a/Example/Pods/Local Podspecs/DSBaseModule.podspec.json
  1 +{
  2 + "name": "DSBaseModule",
  3 + "version": "0.0.12",
  4 + "summary": "DSBaseModule",
  5 + "homepage": "http://bj.gitlab.cnlive.com/DSIOSTeam",
  6 + "authors": {
  7 + "DSIOSTeam": "694092596@qq.com"
  8 + },
  9 + "license": "MIT",
  10 + "source": {
  11 + "git": "http://bj.gitlab.cnlive.com/DSIOSTeam/DSBaseModule.git",
  12 + "tag": "0.0.12"
  13 + },
  14 + "platforms": {
  15 + "ios": "9.0"
  16 + },
  17 + "vendored_frameworks": "DSBaseModule/Frameworks/DSBaseModule.framework"
  18 +}
Example/Pods/Manifest.lock 0 → 100644
  1 +++ a/Example/Pods/Manifest.lock
  1 +PODS:
  2 + - DSBaseModule (0.0.12)
  3 +
  4 +DEPENDENCIES:
  5 + - DSBaseModule (from `../`)
  6 +
  7 +EXTERNAL SOURCES:
  8 + DSBaseModule:
  9 + :path: "../"
  10 +
  11 +SPEC CHECKSUMS:
  12 + DSBaseModule: 28c511dac28c8f7fc31d1a6ce46ce3983eb1e1eb
  13 +
  14 +PODFILE CHECKSUM: 3dd347458ef4611086ad4746f3e04f4b152a20ce
  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 PBXAggregateTarget section */
  10 + 2578CDF1768D60EA1C83E6785D35B106 /* DSBaseModule */ = {
  11 + isa = PBXAggregateTarget;
  12 + buildConfigurationList = 86CFCCB557B2209B128B27DBB84DFE13 /* Build configuration list for PBXAggregateTarget "DSBaseModule" */;
  13 + buildPhases = (
  14 + );
  15 + dependencies = (
  16 + );
  17 + name = DSBaseModule;
  18 + };
  19 +/* End PBXAggregateTarget section */
  20 +
  21 +/* Begin PBXBuildFile section */
  22 + 1F7047407DABBDC19C2D7BA260AD1B7E /* Pods-DSBaseModule_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CFF22B0F864846E854B1EB87B4E57BC /* Pods-DSBaseModule_Example-dummy.m */; };
  23 + 25F731DBF396EE4678C091BACEFF299A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3212113385A8FBBDB272BD23C409FF61 /* Foundation.framework */; };
  24 + 40FE9D2957BD8631CA7F83DDD06F3A04 /* Pods-DSBaseModule_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = FAB27BF6331B627872D77038908C61AD /* Pods-DSBaseModule_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
  25 + 6F2A2F1C552B60EC8EF96A26582F4743 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3212113385A8FBBDB272BD23C409FF61 /* Foundation.framework */; };
  26 + B6EB823761CE11D40DD1CE54EAFD2CE6 /* Pods-DSBaseModule_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F30510EFDAC15A9F150932577CF8DFC /* Pods-DSBaseModule_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
  27 + E0FA5622FE74B3283CC9B8641B178F91 /* Pods-DSBaseModule_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A95C36C7A5C0C0E22D23F1FB9A85E6AE /* Pods-DSBaseModule_Tests-dummy.m */; };
  28 +/* End PBXBuildFile section */
  29 +
  30 +/* Begin PBXContainerItemProxy section */
  31 + 8D38F4FF734AF873440ED436454E8110 /* PBXContainerItemProxy */ = {
  32 + isa = PBXContainerItemProxy;
  33 + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
  34 + proxyType = 1;
  35 + remoteGlobalIDString = 3A5A6EF99A29F96506986F51F49D12F8;
  36 + remoteInfo = "Pods-DSBaseModule_Example";
  37 + };
  38 + B457CD3F45D8527CC20EC43DA77ED226 /* PBXContainerItemProxy */ = {
  39 + isa = PBXContainerItemProxy;
  40 + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
  41 + proxyType = 1;
  42 + remoteGlobalIDString = 2578CDF1768D60EA1C83E6785D35B106;
  43 + remoteInfo = DSBaseModule;
  44 + };
  45 +/* End PBXContainerItemProxy section */
  46 +
  47 +/* Begin PBXFileReference section */
  48 + 2AC6CAA8392B734BA1785F52B392E807 /* DSBaseModule.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = DSBaseModule.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
  49 + 2BC85587AC1AB54752BBC9208F38CE15 /* Pods-DSBaseModule_Tests-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-DSBaseModule_Tests-Info.plist"; sourceTree = "<group>"; };
  50 + 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; };
  51 + 37CF3090E8150C946D15074D7F5D7015 /* Pods-DSBaseModule_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-DSBaseModule_Tests-acknowledgements.markdown"; sourceTree = "<group>"; };
  52 + 38578D7B293CECA35C1F89A6F3801D8B /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; };
  53 + 47BB657C4FEF0FEC949AEAC05E9C24B7 /* Pods-DSBaseModule_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-DSBaseModule_Tests.release.xcconfig"; sourceTree = "<group>"; };
  54 + 4DA627B4036EA02D0B62E823AF853FC3 /* Pods-DSBaseModule_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-DSBaseModule_Example.release.xcconfig"; sourceTree = "<group>"; };
  55 + 4EE9FE36DCA2D18E7E4C79D307A08E94 /* Pods-DSBaseModule_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-DSBaseModule_Example.debug.xcconfig"; sourceTree = "<group>"; };
  56 + 5BAF8C86F3DA08E2BC162E345194C143 /* Pods-DSBaseModule_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-DSBaseModule_Example-acknowledgements.plist"; sourceTree = "<group>"; };
  57 + 5F30510EFDAC15A9F150932577CF8DFC /* Pods-DSBaseModule_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-DSBaseModule_Tests-umbrella.h"; sourceTree = "<group>"; };
  58 + 6615E5393F831E32E76AF05ED17BDDA0 /* DSBaseModule.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = DSBaseModule.framework; path = DSBaseModule/Frameworks/DSBaseModule.framework; sourceTree = "<group>"; };
  59 + 6CFF22B0F864846E854B1EB87B4E57BC /* Pods-DSBaseModule_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-DSBaseModule_Example-dummy.m"; sourceTree = "<group>"; };
  60 + 7B6B1AFD0C4749191FC7A01FCE2BC8E7 /* DSBaseModule.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DSBaseModule.xcconfig; sourceTree = "<group>"; };
  61 + 8A074CFE2BD55640E84FD7DCD026A4C4 /* Pods_DSBaseModule_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_DSBaseModule_Tests.framework; path = "Pods-DSBaseModule_Tests.framework"; sourceTree = BUILT_PRODUCTS_DIR; };
  62 + 930806E9484710A6C359291F5147EBD4 /* Pods-DSBaseModule_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-DSBaseModule_Tests.modulemap"; sourceTree = "<group>"; };
  63 + 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; };
  64 + A95C36C7A5C0C0E22D23F1FB9A85E6AE /* Pods-DSBaseModule_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-DSBaseModule_Tests-dummy.m"; sourceTree = "<group>"; };
  65 + B08784BAD5419833583CE11933390E7F /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; };
  66 + BD509BBB587FBBB87CF4032305CABE99 /* Pods-DSBaseModule_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-DSBaseModule_Example-acknowledgements.markdown"; sourceTree = "<group>"; };
  67 + CCDDFA62ED8C8A8BB6E5A2CFB2EE6768 /* Pods-DSBaseModule_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-DSBaseModule_Tests-acknowledgements.plist"; sourceTree = "<group>"; };
  68 + D51EE1D65B204DAF13EA5DCB79C000CD /* Pods-DSBaseModule_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-DSBaseModule_Example.modulemap"; sourceTree = "<group>"; };
  69 + D6788DEC72D43A3AB1A35A282F230FA6 /* Pods-DSBaseModule_Example-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-DSBaseModule_Example-Info.plist"; sourceTree = "<group>"; };
  70 + E350F59B79E6A963E28E9F6CEAAB9479 /* Pods-DSBaseModule_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-DSBaseModule_Tests.debug.xcconfig"; sourceTree = "<group>"; };
  71 + ECA79798CD0507A39BAC2A5CEDAC4077 /* Pods_DSBaseModule_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_DSBaseModule_Example.framework; path = "Pods-DSBaseModule_Example.framework"; sourceTree = BUILT_PRODUCTS_DIR; };
  72 + FAB27BF6331B627872D77038908C61AD /* Pods-DSBaseModule_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-DSBaseModule_Example-umbrella.h"; sourceTree = "<group>"; };
  73 + FD917F92664F6FF635094DA1625893FD /* Pods-DSBaseModule_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-DSBaseModule_Example-frameworks.sh"; sourceTree = "<group>"; };
  74 +/* End PBXFileReference section */
  75 +
  76 +/* Begin PBXFrameworksBuildPhase section */
  77 + A3C5E84A35A3E4220E0ABE4F3E841A85 /* Frameworks */ = {
  78 + isa = PBXFrameworksBuildPhase;
  79 + buildActionMask = 2147483647;
  80 + files = (
  81 + 25F731DBF396EE4678C091BACEFF299A /* Foundation.framework in Frameworks */,
  82 + );
  83 + runOnlyForDeploymentPostprocessing = 0;
  84 + };
  85 + BED3B2ED3F25C4B4A154C1F6FB6FC8EA /* Frameworks */ = {
  86 + isa = PBXFrameworksBuildPhase;
  87 + buildActionMask = 2147483647;
  88 + files = (
  89 + 6F2A2F1C552B60EC8EF96A26582F4743 /* Foundation.framework in Frameworks */,
  90 + );
  91 + runOnlyForDeploymentPostprocessing = 0;
  92 + };
  93 +/* End PBXFrameworksBuildPhase section */
  94 +
  95 +/* Begin PBXGroup section */
  96 + 009D7B435088D2CF57B8590228CC7854 /* Pod */ = {
  97 + isa = PBXGroup;
  98 + children = (
  99 + 2AC6CAA8392B734BA1785F52B392E807 /* DSBaseModule.podspec */,
  100 + B08784BAD5419833583CE11933390E7F /* LICENSE */,
  101 + 38578D7B293CECA35C1F89A6F3801D8B /* README.md */,
  102 + );
  103 + name = Pod;
  104 + sourceTree = "<group>";
  105 + };
  106 + 424507ABF74FC3F4D1F188CB8226D106 /* Pods-DSBaseModule_Tests */ = {
  107 + isa = PBXGroup;
  108 + children = (
  109 + 930806E9484710A6C359291F5147EBD4 /* Pods-DSBaseModule_Tests.modulemap */,
  110 + 37CF3090E8150C946D15074D7F5D7015 /* Pods-DSBaseModule_Tests-acknowledgements.markdown */,
  111 + CCDDFA62ED8C8A8BB6E5A2CFB2EE6768 /* Pods-DSBaseModule_Tests-acknowledgements.plist */,
  112 + A95C36C7A5C0C0E22D23F1FB9A85E6AE /* Pods-DSBaseModule_Tests-dummy.m */,
  113 + 2BC85587AC1AB54752BBC9208F38CE15 /* Pods-DSBaseModule_Tests-Info.plist */,
  114 + 5F30510EFDAC15A9F150932577CF8DFC /* Pods-DSBaseModule_Tests-umbrella.h */,
  115 + E350F59B79E6A963E28E9F6CEAAB9479 /* Pods-DSBaseModule_Tests.debug.xcconfig */,
  116 + 47BB657C4FEF0FEC949AEAC05E9C24B7 /* Pods-DSBaseModule_Tests.release.xcconfig */,
  117 + );
  118 + name = "Pods-DSBaseModule_Tests";
  119 + path = "Target Support Files/Pods-DSBaseModule_Tests";
  120 + sourceTree = "<group>";
  121 + };
  122 + 5A5CB5406421BD634F4C7462552FDE57 /* Support Files */ = {
  123 + isa = PBXGroup;
  124 + children = (
  125 + 7B6B1AFD0C4749191FC7A01FCE2BC8E7 /* DSBaseModule.xcconfig */,
  126 + );
  127 + name = "Support Files";
  128 + path = "Example/Pods/Target Support Files/DSBaseModule";
  129 + sourceTree = "<group>";
  130 + };
  131 + 633BA40666495FBF67625C5C0CF062E3 /* Development Pods */ = {
  132 + isa = PBXGroup;
  133 + children = (
  134 + 85CDFB49F399A6BFD17A3307A667A739 /* DSBaseModule */,
  135 + );
  136 + name = "Development Pods";
  137 + sourceTree = "<group>";
  138 + };
  139 + 74955319FFF3BC62B2FB34D06ED99CB9 /* Targets Support Files */ = {
  140 + isa = PBXGroup;
  141 + children = (
  142 + C42A2E8B506E839100DCB46D99DF0A47 /* Pods-DSBaseModule_Example */,
  143 + 424507ABF74FC3F4D1F188CB8226D106 /* Pods-DSBaseModule_Tests */,
  144 + );
  145 + name = "Targets Support Files";
  146 + sourceTree = "<group>";
  147 + };
  148 + 85CDFB49F399A6BFD17A3307A667A739 /* DSBaseModule */ = {
  149 + isa = PBXGroup;
  150 + children = (
  151 + DB4EC45EB33F38AAB1068FDE5C8E52FA /* Frameworks */,
  152 + 009D7B435088D2CF57B8590228CC7854 /* Pod */,
  153 + 5A5CB5406421BD634F4C7462552FDE57 /* Support Files */,
  154 + );
  155 + name = DSBaseModule;
  156 + path = ../..;
  157 + sourceTree = "<group>";
  158 + };
  159 + 88975E7C12C0F09F83C823E09F67834C /* Products */ = {
  160 + isa = PBXGroup;
  161 + children = (
  162 + ECA79798CD0507A39BAC2A5CEDAC4077 /* Pods_DSBaseModule_Example.framework */,
  163 + 8A074CFE2BD55640E84FD7DCD026A4C4 /* Pods_DSBaseModule_Tests.framework */,
  164 + );
  165 + name = Products;
  166 + sourceTree = "<group>";
  167 + };
  168 + C0834CEBB1379A84116EF29F93051C60 /* iOS */ = {
  169 + isa = PBXGroup;
  170 + children = (
  171 + 3212113385A8FBBDB272BD23C409FF61 /* Foundation.framework */,
  172 + );
  173 + name = iOS;
  174 + sourceTree = "<group>";
  175 + };
  176 + C42A2E8B506E839100DCB46D99DF0A47 /* Pods-DSBaseModule_Example */ = {
  177 + isa = PBXGroup;
  178 + children = (
  179 + D51EE1D65B204DAF13EA5DCB79C000CD /* Pods-DSBaseModule_Example.modulemap */,
  180 + BD509BBB587FBBB87CF4032305CABE99 /* Pods-DSBaseModule_Example-acknowledgements.markdown */,
  181 + 5BAF8C86F3DA08E2BC162E345194C143 /* Pods-DSBaseModule_Example-acknowledgements.plist */,
  182 + 6CFF22B0F864846E854B1EB87B4E57BC /* Pods-DSBaseModule_Example-dummy.m */,
  183 + FD917F92664F6FF635094DA1625893FD /* Pods-DSBaseModule_Example-frameworks.sh */,
  184 + D6788DEC72D43A3AB1A35A282F230FA6 /* Pods-DSBaseModule_Example-Info.plist */,
  185 + FAB27BF6331B627872D77038908C61AD /* Pods-DSBaseModule_Example-umbrella.h */,
  186 + 4EE9FE36DCA2D18E7E4C79D307A08E94 /* Pods-DSBaseModule_Example.debug.xcconfig */,
  187 + 4DA627B4036EA02D0B62E823AF853FC3 /* Pods-DSBaseModule_Example.release.xcconfig */,
  188 + );
  189 + name = "Pods-DSBaseModule_Example";
  190 + path = "Target Support Files/Pods-DSBaseModule_Example";
  191 + sourceTree = "<group>";
  192 + };
  193 + CF1408CF629C7361332E53B88F7BD30C = {
  194 + isa = PBXGroup;
  195 + children = (
  196 + 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */,
  197 + 633BA40666495FBF67625C5C0CF062E3 /* Development Pods */,
  198 + D210D550F4EA176C3123ED886F8F87F5 /* Frameworks */,
  199 + 88975E7C12C0F09F83C823E09F67834C /* Products */,
  200 + 74955319FFF3BC62B2FB34D06ED99CB9 /* Targets Support Files */,
  201 + );
  202 + sourceTree = "<group>";
  203 + };
  204 + D210D550F4EA176C3123ED886F8F87F5 /* Frameworks */ = {
  205 + isa = PBXGroup;
  206 + children = (
  207 + C0834CEBB1379A84116EF29F93051C60 /* iOS */,
  208 + );
  209 + name = Frameworks;
  210 + sourceTree = "<group>";
  211 + };
  212 + DB4EC45EB33F38AAB1068FDE5C8E52FA /* Frameworks */ = {
  213 + isa = PBXGroup;
  214 + children = (
  215 + 6615E5393F831E32E76AF05ED17BDDA0 /* DSBaseModule.framework */,
  216 + );
  217 + name = Frameworks;
  218 + sourceTree = "<group>";
  219 + };
  220 +/* End PBXGroup section */
  221 +
  222 +/* Begin PBXHeadersBuildPhase section */
  223 + 14B1D310865EE890F2C3B740604D1842 /* Headers */ = {
  224 + isa = PBXHeadersBuildPhase;
  225 + buildActionMask = 2147483647;
  226 + files = (
  227 + 40FE9D2957BD8631CA7F83DDD06F3A04 /* Pods-DSBaseModule_Example-umbrella.h in Headers */,
  228 + );
  229 + runOnlyForDeploymentPostprocessing = 0;
  230 + };
  231 + 4421865372A9EC70D577E32F9AA1B595 /* Headers */ = {
  232 + isa = PBXHeadersBuildPhase;
  233 + buildActionMask = 2147483647;
  234 + files = (
  235 + B6EB823761CE11D40DD1CE54EAFD2CE6 /* Pods-DSBaseModule_Tests-umbrella.h in Headers */,
  236 + );
  237 + runOnlyForDeploymentPostprocessing = 0;
  238 + };
  239 +/* End PBXHeadersBuildPhase section */
  240 +
  241 +/* Begin PBXNativeTarget section */
  242 + 3A5A6EF99A29F96506986F51F49D12F8 /* Pods-DSBaseModule_Example */ = {
  243 + isa = PBXNativeTarget;
  244 + buildConfigurationList = 8D5FDF07C4A6424E77A3B0AF00FC25F0 /* Build configuration list for PBXNativeTarget "Pods-DSBaseModule_Example" */;
  245 + buildPhases = (
  246 + 14B1D310865EE890F2C3B740604D1842 /* Headers */,
  247 + 3382DEC90FC91B32B8BB8401BCC3FB07 /* Sources */,
  248 + A3C5E84A35A3E4220E0ABE4F3E841A85 /* Frameworks */,
  249 + 935E89B049F22B76B5FA4E09D68A7274 /* Resources */,
  250 + );
  251 + buildRules = (
  252 + );
  253 + dependencies = (
  254 + 566F3A62BF551C357D41D8F398BDCBF6 /* PBXTargetDependency */,
  255 + );
  256 + name = "Pods-DSBaseModule_Example";
  257 + productName = "Pods-DSBaseModule_Example";
  258 + productReference = ECA79798CD0507A39BAC2A5CEDAC4077 /* Pods_DSBaseModule_Example.framework */;
  259 + productType = "com.apple.product-type.framework";
  260 + };
  261 + 9975E862D3B4D74CC2969E2595D7763A /* Pods-DSBaseModule_Tests */ = {
  262 + isa = PBXNativeTarget;
  263 + buildConfigurationList = 2A495D91AF2F4AF542252F6ADF46907A /* Build configuration list for PBXNativeTarget "Pods-DSBaseModule_Tests" */;
  264 + buildPhases = (
  265 + 4421865372A9EC70D577E32F9AA1B595 /* Headers */,
  266 + 4158941ABD298019D1AB52C35C052173 /* Sources */,
  267 + BED3B2ED3F25C4B4A154C1F6FB6FC8EA /* Frameworks */,
  268 + 8E5E027F1237AC07AC7264D0DC45F845 /* Resources */,
  269 + );
  270 + buildRules = (
  271 + );
  272 + dependencies = (
  273 + E4D9AB552C411A5F18D446E2537A4B6A /* PBXTargetDependency */,
  274 + );
  275 + name = "Pods-DSBaseModule_Tests";
  276 + productName = "Pods-DSBaseModule_Tests";
  277 + productReference = 8A074CFE2BD55640E84FD7DCD026A4C4 /* Pods_DSBaseModule_Tests.framework */;
  278 + productType = "com.apple.product-type.framework";
  279 + };
  280 +/* End PBXNativeTarget section */
  281 +
  282 +/* Begin PBXProject section */
  283 + BFDFE7DC352907FC980B868725387E98 /* Project object */ = {
  284 + isa = PBXProject;
  285 + attributes = {
  286 + LastSwiftUpdateCheck = 1100;
  287 + LastUpgradeCheck = 1100;
  288 + };
  289 + buildConfigurationList = 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */;
  290 + compatibilityVersion = "Xcode 3.2";
  291 + developmentRegion = en;
  292 + hasScannedForEncodings = 0;
  293 + knownRegions = (
  294 + en,
  295 + Base,
  296 + );
  297 + mainGroup = CF1408CF629C7361332E53B88F7BD30C;
  298 + productRefGroup = 88975E7C12C0F09F83C823E09F67834C /* Products */;
  299 + projectDirPath = "";
  300 + projectRoot = "";
  301 + targets = (
  302 + 2578CDF1768D60EA1C83E6785D35B106 /* DSBaseModule */,
  303 + 3A5A6EF99A29F96506986F51F49D12F8 /* Pods-DSBaseModule_Example */,
  304 + 9975E862D3B4D74CC2969E2595D7763A /* Pods-DSBaseModule_Tests */,
  305 + );
  306 + };
  307 +/* End PBXProject section */
  308 +
  309 +/* Begin PBXResourcesBuildPhase section */
  310 + 8E5E027F1237AC07AC7264D0DC45F845 /* Resources */ = {
  311 + isa = PBXResourcesBuildPhase;
  312 + buildActionMask = 2147483647;
  313 + files = (
  314 + );
  315 + runOnlyForDeploymentPostprocessing = 0;
  316 + };
  317 + 935E89B049F22B76B5FA4E09D68A7274 /* Resources */ = {
  318 + isa = PBXResourcesBuildPhase;
  319 + buildActionMask = 2147483647;
  320 + files = (
  321 + );
  322 + runOnlyForDeploymentPostprocessing = 0;
  323 + };
  324 +/* End PBXResourcesBuildPhase section */
  325 +
  326 +/* Begin PBXSourcesBuildPhase section */
  327 + 3382DEC90FC91B32B8BB8401BCC3FB07 /* Sources */ = {
  328 + isa = PBXSourcesBuildPhase;
  329 + buildActionMask = 2147483647;
  330 + files = (
  331 + 1F7047407DABBDC19C2D7BA260AD1B7E /* Pods-DSBaseModule_Example-dummy.m in Sources */,
  332 + );
  333 + runOnlyForDeploymentPostprocessing = 0;
  334 + };
  335 + 4158941ABD298019D1AB52C35C052173 /* Sources */ = {
  336 + isa = PBXSourcesBuildPhase;
  337 + buildActionMask = 2147483647;
  338 + files = (
  339 + E0FA5622FE74B3283CC9B8641B178F91 /* Pods-DSBaseModule_Tests-dummy.m in Sources */,
  340 + );
  341 + runOnlyForDeploymentPostprocessing = 0;
  342 + };
  343 +/* End PBXSourcesBuildPhase section */
  344 +
  345 +/* Begin PBXTargetDependency section */
  346 + 566F3A62BF551C357D41D8F398BDCBF6 /* PBXTargetDependency */ = {
  347 + isa = PBXTargetDependency;
  348 + name = DSBaseModule;
  349 + target = 2578CDF1768D60EA1C83E6785D35B106 /* DSBaseModule */;
  350 + targetProxy = B457CD3F45D8527CC20EC43DA77ED226 /* PBXContainerItemProxy */;
  351 + };
  352 + E4D9AB552C411A5F18D446E2537A4B6A /* PBXTargetDependency */ = {
  353 + isa = PBXTargetDependency;
  354 + name = "Pods-DSBaseModule_Example";
  355 + target = 3A5A6EF99A29F96506986F51F49D12F8 /* Pods-DSBaseModule_Example */;
  356 + targetProxy = 8D38F4FF734AF873440ED436454E8110 /* PBXContainerItemProxy */;
  357 + };
  358 +/* End PBXTargetDependency section */
  359 +
  360 +/* Begin XCBuildConfiguration section */
  361 + 19DE04BCFC0A87EB0D3252216C849292 /* Debug */ = {
  362 + isa = XCBuildConfiguration;
  363 + baseConfigurationReference = 4EE9FE36DCA2D18E7E4C79D307A08E94 /* Pods-DSBaseModule_Example.debug.xcconfig */;
  364 + buildSettings = {
  365 + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  366 + CODE_SIGN_IDENTITY = "";
  367 + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  368 + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  369 + "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  370 + CURRENT_PROJECT_VERSION = 1;
  371 + DEFINES_MODULE = YES;
  372 + DYLIB_COMPATIBILITY_VERSION = 1;
  373 + DYLIB_CURRENT_VERSION = 1;
  374 + DYLIB_INSTALL_NAME_BASE = "@rpath";
  375 + INFOPLIST_FILE = "Target Support Files/Pods-DSBaseModule_Example/Pods-DSBaseModule_Example-Info.plist";
  376 + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
  377 + IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  378 + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
  379 + MACH_O_TYPE = staticlib;
  380 + MODULEMAP_FILE = "Target Support Files/Pods-DSBaseModule_Example/Pods-DSBaseModule_Example.modulemap";
  381 + OTHER_LDFLAGS = "";
  382 + OTHER_LIBTOOLFLAGS = "";
  383 + PODS_ROOT = "$(SRCROOT)";
  384 + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
  385 + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
  386 + SDKROOT = iphoneos;
  387 + SKIP_INSTALL = YES;
  388 + TARGETED_DEVICE_FAMILY = "1,2";
  389 + VERSIONING_SYSTEM = "apple-generic";
  390 + VERSION_INFO_PREFIX = "";
  391 + };
  392 + name = Debug;
  393 + };
  394 + 36E800D58D47B64260DD333493D772EB /* Debug */ = {
  395 + isa = XCBuildConfiguration;
  396 + baseConfigurationReference = E350F59B79E6A963E28E9F6CEAAB9479 /* Pods-DSBaseModule_Tests.debug.xcconfig */;
  397 + buildSettings = {
  398 + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  399 + CODE_SIGN_IDENTITY = "";
  400 + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  401 + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  402 + "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  403 + CURRENT_PROJECT_VERSION = 1;
  404 + DEFINES_MODULE = YES;
  405 + DYLIB_COMPATIBILITY_VERSION = 1;
  406 + DYLIB_CURRENT_VERSION = 1;
  407 + DYLIB_INSTALL_NAME_BASE = "@rpath";
  408 + INFOPLIST_FILE = "Target Support Files/Pods-DSBaseModule_Tests/Pods-DSBaseModule_Tests-Info.plist";
  409 + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
  410 + IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  411 + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
  412 + MACH_O_TYPE = staticlib;
  413 + MODULEMAP_FILE = "Target Support Files/Pods-DSBaseModule_Tests/Pods-DSBaseModule_Tests.modulemap";
  414 + OTHER_LDFLAGS = "";
  415 + OTHER_LIBTOOLFLAGS = "";
  416 + PODS_ROOT = "$(SRCROOT)";
  417 + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
  418 + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
  419 + SDKROOT = iphoneos;
  420 + SKIP_INSTALL = YES;
  421 + TARGETED_DEVICE_FAMILY = "1,2";
  422 + VERSIONING_SYSTEM = "apple-generic";
  423 + VERSION_INFO_PREFIX = "";
  424 + };
  425 + name = Debug;
  426 + };
  427 + 4BE66A09A74FD25164AAB3C2645B9B93 /* Release */ = {
  428 + isa = XCBuildConfiguration;
  429 + buildSettings = {
  430 + ALWAYS_SEARCH_USER_PATHS = NO;
  431 + CLANG_ANALYZER_NONNULL = YES;
  432 + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  433 + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  434 + CLANG_CXX_LIBRARY = "libc++";
  435 + CLANG_ENABLE_MODULES = YES;
  436 + CLANG_ENABLE_OBJC_ARC = YES;
  437 + CLANG_ENABLE_OBJC_WEAK = YES;
  438 + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  439 + CLANG_WARN_BOOL_CONVERSION = YES;
  440 + CLANG_WARN_COMMA = YES;
  441 + CLANG_WARN_CONSTANT_CONVERSION = YES;
  442 + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  443 + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  444 + CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  445 + CLANG_WARN_EMPTY_BODY = YES;
  446 + CLANG_WARN_ENUM_CONVERSION = YES;
  447 + CLANG_WARN_INFINITE_RECURSION = YES;
  448 + CLANG_WARN_INT_CONVERSION = YES;
  449 + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  450 + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  451 + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  452 + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  453 + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  454 + CLANG_WARN_STRICT_PROTOTYPES = YES;
  455 + CLANG_WARN_SUSPICIOUS_MOVE = YES;
  456 + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  457 + CLANG_WARN_UNREACHABLE_CODE = YES;
  458 + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  459 + COPY_PHASE_STRIP = NO;
  460 + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  461 + ENABLE_NS_ASSERTIONS = NO;
  462 + ENABLE_STRICT_OBJC_MSGSEND = YES;
  463 + GCC_C_LANGUAGE_STANDARD = gnu11;
  464 + GCC_NO_COMMON_BLOCKS = YES;
  465 + GCC_PREPROCESSOR_DEFINITIONS = (
  466 + "POD_CONFIGURATION_RELEASE=1",
  467 + "$(inherited)",
  468 + );
  469 + GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  470 + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  471 + GCC_WARN_UNDECLARED_SELECTOR = YES;
  472 + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  473 + GCC_WARN_UNUSED_FUNCTION = YES;
  474 + GCC_WARN_UNUSED_VARIABLE = YES;
  475 + IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  476 + MTL_ENABLE_DEBUG_INFO = NO;
  477 + MTL_FAST_MATH = YES;
  478 + PRODUCT_NAME = "$(TARGET_NAME)";
  479 + STRIP_INSTALLED_PRODUCT = NO;
  480 + SWIFT_COMPILATION_MODE = wholemodule;
  481 + SWIFT_OPTIMIZATION_LEVEL = "-O";
  482 + SWIFT_VERSION = 5.0;
  483 + SYMROOT = "${SRCROOT}/../build";
  484 + };
  485 + name = Release;
  486 + };
  487 + 70122EF791CA125AD6FAFE99E658904E /* Release */ = {
  488 + isa = XCBuildConfiguration;
  489 + baseConfigurationReference = 47BB657C4FEF0FEC949AEAC05E9C24B7 /* Pods-DSBaseModule_Tests.release.xcconfig */;
  490 + buildSettings = {
  491 + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  492 + CODE_SIGN_IDENTITY = "";
  493 + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  494 + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  495 + "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  496 + CURRENT_PROJECT_VERSION = 1;
  497 + DEFINES_MODULE = YES;
  498 + DYLIB_COMPATIBILITY_VERSION = 1;
  499 + DYLIB_CURRENT_VERSION = 1;
  500 + DYLIB_INSTALL_NAME_BASE = "@rpath";
  501 + INFOPLIST_FILE = "Target Support Files/Pods-DSBaseModule_Tests/Pods-DSBaseModule_Tests-Info.plist";
  502 + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
  503 + IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  504 + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
  505 + MACH_O_TYPE = staticlib;
  506 + MODULEMAP_FILE = "Target Support Files/Pods-DSBaseModule_Tests/Pods-DSBaseModule_Tests.modulemap";
  507 + OTHER_LDFLAGS = "";
  508 + OTHER_LIBTOOLFLAGS = "";
  509 + PODS_ROOT = "$(SRCROOT)";
  510 + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
  511 + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
  512 + SDKROOT = iphoneos;
  513 + SKIP_INSTALL = YES;
  514 + TARGETED_DEVICE_FAMILY = "1,2";
  515 + VALIDATE_PRODUCT = YES;
  516 + VERSIONING_SYSTEM = "apple-generic";
  517 + VERSION_INFO_PREFIX = "";
  518 + };
  519 + name = Release;
  520 + };
  521 + 7EF7227D9B20A1D549000096ACCB23D7 /* Debug */ = {
  522 + isa = XCBuildConfiguration;
  523 + buildSettings = {
  524 + ALWAYS_SEARCH_USER_PATHS = NO;
  525 + CLANG_ANALYZER_NONNULL = YES;
  526 + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  527 + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  528 + CLANG_CXX_LIBRARY = "libc++";
  529 + CLANG_ENABLE_MODULES = YES;
  530 + CLANG_ENABLE_OBJC_ARC = YES;
  531 + CLANG_ENABLE_OBJC_WEAK = YES;
  532 + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  533 + CLANG_WARN_BOOL_CONVERSION = YES;
  534 + CLANG_WARN_COMMA = YES;
  535 + CLANG_WARN_CONSTANT_CONVERSION = YES;
  536 + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  537 + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  538 + CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  539 + CLANG_WARN_EMPTY_BODY = YES;
  540 + CLANG_WARN_ENUM_CONVERSION = YES;
  541 + CLANG_WARN_INFINITE_RECURSION = YES;
  542 + CLANG_WARN_INT_CONVERSION = YES;
  543 + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  544 + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  545 + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  546 + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  547 + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  548 + CLANG_WARN_STRICT_PROTOTYPES = YES;
  549 + CLANG_WARN_SUSPICIOUS_MOVE = YES;
  550 + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  551 + CLANG_WARN_UNREACHABLE_CODE = YES;
  552 + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  553 + COPY_PHASE_STRIP = NO;
  554 + DEBUG_INFORMATION_FORMAT = dwarf;
  555 + ENABLE_STRICT_OBJC_MSGSEND = YES;
  556 + ENABLE_TESTABILITY = YES;
  557 + GCC_C_LANGUAGE_STANDARD = gnu11;
  558 + GCC_DYNAMIC_NO_PIC = NO;
  559 + GCC_NO_COMMON_BLOCKS = YES;
  560 + GCC_OPTIMIZATION_LEVEL = 0;
  561 + GCC_PREPROCESSOR_DEFINITIONS = (
  562 + "POD_CONFIGURATION_DEBUG=1",
  563 + "DEBUG=1",
  564 + "$(inherited)",
  565 + );
  566 + GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  567 + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  568 + GCC_WARN_UNDECLARED_SELECTOR = YES;
  569 + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  570 + GCC_WARN_UNUSED_FUNCTION = YES;
  571 + GCC_WARN_UNUSED_VARIABLE = YES;
  572 + IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  573 + MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
  574 + MTL_FAST_MATH = YES;
  575 + ONLY_ACTIVE_ARCH = YES;
  576 + PRODUCT_NAME = "$(TARGET_NAME)";
  577 + STRIP_INSTALLED_PRODUCT = NO;
  578 + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
  579 + SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  580 + SWIFT_VERSION = 5.0;
  581 + SYMROOT = "${SRCROOT}/../build";
  582 + };
  583 + name = Debug;
  584 + };
  585 + 8DD71C077802A57958F2E3B7762DCC38 /* Release */ = {
  586 + isa = XCBuildConfiguration;
  587 + baseConfigurationReference = 7B6B1AFD0C4749191FC7A01FCE2BC8E7 /* DSBaseModule.xcconfig */;
  588 + buildSettings = {
  589 + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  590 + CODE_SIGN_IDENTITY = "iPhone Developer";
  591 + IPHONEOS_DEPLOYMENT_TARGET = 9.0;
  592 + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
  593 + SDKROOT = iphoneos;
  594 + TARGETED_DEVICE_FAMILY = "1,2";
  595 + VALIDATE_PRODUCT = YES;
  596 + };
  597 + name = Release;
  598 + };
  599 + A1DC76AFEB0F15970F62239ED218488C /* Debug */ = {
  600 + isa = XCBuildConfiguration;
  601 + baseConfigurationReference = 7B6B1AFD0C4749191FC7A01FCE2BC8E7 /* DSBaseModule.xcconfig */;
  602 + buildSettings = {
  603 + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  604 + CODE_SIGN_IDENTITY = "iPhone Developer";
  605 + IPHONEOS_DEPLOYMENT_TARGET = 9.0;
  606 + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
  607 + SDKROOT = iphoneos;
  608 + TARGETED_DEVICE_FAMILY = "1,2";
  609 + };
  610 + name = Debug;
  611 + };
  612 + BC63591A9667A6EB42968E957EB45F68 /* Release */ = {
  613 + isa = XCBuildConfiguration;
  614 + baseConfigurationReference = 4DA627B4036EA02D0B62E823AF853FC3 /* Pods-DSBaseModule_Example.release.xcconfig */;
  615 + buildSettings = {
  616 + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  617 + CODE_SIGN_IDENTITY = "";
  618 + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  619 + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  620 + "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  621 + CURRENT_PROJECT_VERSION = 1;
  622 + DEFINES_MODULE = YES;
  623 + DYLIB_COMPATIBILITY_VERSION = 1;
  624 + DYLIB_CURRENT_VERSION = 1;
  625 + DYLIB_INSTALL_NAME_BASE = "@rpath";
  626 + INFOPLIST_FILE = "Target Support Files/Pods-DSBaseModule_Example/Pods-DSBaseModule_Example-Info.plist";
  627 + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
  628 + IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  629 + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
  630 + MACH_O_TYPE = staticlib;
  631 + MODULEMAP_FILE = "Target Support Files/Pods-DSBaseModule_Example/Pods-DSBaseModule_Example.modulemap";
  632 + OTHER_LDFLAGS = "";
  633 + OTHER_LIBTOOLFLAGS = "";
  634 + PODS_ROOT = "$(SRCROOT)";
  635 + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
  636 + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
  637 + SDKROOT = iphoneos;
  638 + SKIP_INSTALL = YES;
  639 + TARGETED_DEVICE_FAMILY = "1,2";
  640 + VALIDATE_PRODUCT = YES;
  641 + VERSIONING_SYSTEM = "apple-generic";
  642 + VERSION_INFO_PREFIX = "";
  643 + };
  644 + name = Release;
  645 + };
  646 +/* End XCBuildConfiguration section */
  647 +
  648 +/* Begin XCConfigurationList section */
  649 + 2A495D91AF2F4AF542252F6ADF46907A /* Build configuration list for PBXNativeTarget "Pods-DSBaseModule_Tests" */ = {
  650 + isa = XCConfigurationList;
  651 + buildConfigurations = (
  652 + 36E800D58D47B64260DD333493D772EB /* Debug */,
  653 + 70122EF791CA125AD6FAFE99E658904E /* Release */,
  654 + );
  655 + defaultConfigurationIsVisible = 0;
  656 + defaultConfigurationName = Release;
  657 + };
  658 + 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */ = {
  659 + isa = XCConfigurationList;
  660 + buildConfigurations = (
  661 + 7EF7227D9B20A1D549000096ACCB23D7 /* Debug */,
  662 + 4BE66A09A74FD25164AAB3C2645B9B93 /* Release */,
  663 + );
  664 + defaultConfigurationIsVisible = 0;
  665 + defaultConfigurationName = Release;
  666 + };
  667 + 86CFCCB557B2209B128B27DBB84DFE13 /* Build configuration list for PBXAggregateTarget "DSBaseModule" */ = {
  668 + isa = XCConfigurationList;
  669 + buildConfigurations = (
  670 + A1DC76AFEB0F15970F62239ED218488C /* Debug */,
  671 + 8DD71C077802A57958F2E3B7762DCC38 /* Release */,
  672 + );
  673 + defaultConfigurationIsVisible = 0;
  674 + defaultConfigurationName = Release;
  675 + };
  676 + 8D5FDF07C4A6424E77A3B0AF00FC25F0 /* Build configuration list for PBXNativeTarget "Pods-DSBaseModule_Example" */ = {
  677 + isa = XCConfigurationList;
  678 + buildConfigurations = (
  679 + 19DE04BCFC0A87EB0D3252216C849292 /* Debug */,
  680 + BC63591A9667A6EB42968E957EB45F68 /* Release */,
  681 + );
  682 + defaultConfigurationIsVisible = 0;
  683 + defaultConfigurationName = Release;
  684 + };
  685 +/* End XCConfigurationList section */
  686 + };
  687 + rootObject = BFDFE7DC352907FC980B868725387E98 /* Project object */;
  688 +}
Example/Pods/Pods.xcodeproj/xcuserdata/zhaolin.xcuserdatad/xcschemes/DSBaseModule.xcscheme 0 → 100644
  1 +++ a/Example/Pods/Pods.xcodeproj/xcuserdata/zhaolin.xcuserdatad/xcschemes/DSBaseModule.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 = "2578CDF1768D60EA1C83E6785D35B106"
  18 + BuildableName = "DSBaseModule"
  19 + BlueprintName = "DSBaseModule"
  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-DSBaseModule_Example.xcscheme 0 → 100644
  1 +++ a/Example/Pods/Pods.xcodeproj/xcuserdata/zhaolin.xcuserdatad/xcschemes/Pods-DSBaseModule_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 = "3A5A6EF99A29F96506986F51F49D12F8"
  18 + BuildableName = "Pods_DSBaseModule_Example.framework"
  19 + BlueprintName = "Pods-DSBaseModule_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-DSBaseModule_Tests.xcscheme 0 → 100644
  1 +++ a/Example/Pods/Pods.xcodeproj/xcuserdata/zhaolin.xcuserdatad/xcschemes/Pods-DSBaseModule_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 = "9975E862D3B4D74CC2969E2595D7763A"
  18 + BuildableName = "Pods_DSBaseModule_Tests.framework"
  19 + BlueprintName = "Pods-DSBaseModule_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>DSBaseModule.xcscheme</key>
  8 + <dict>
  9 + <key>isShown</key>
  10 + <false/>
  11 + </dict>
  12 + <key>Pods-DSBaseModule_Example.xcscheme</key>
  13 + <dict>
  14 + <key>isShown</key>
  15 + <false/>
  16 + </dict>
  17 + <key>Pods-DSBaseModule_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/DSBaseModule/DSBaseModule-Info.plist 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/DSBaseModule/DSBaseModule-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/DSBaseModule/DSBaseModule-dummy.m 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/DSBaseModule/DSBaseModule-dummy.m
  1 +#import <Foundation/Foundation.h>
  2 +@interface PodsDummy_DSBaseModule : NSObject
  3 +@end
  4 +@implementation PodsDummy_DSBaseModule
  5 +@end
Example/Pods/Target Support Files/DSBaseModule/DSBaseModule-prefix.pch 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/DSBaseModule/DSBaseModule-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/DSBaseModule/DSBaseModule-umbrella.h 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/DSBaseModule/DSBaseModule-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 DSBaseModuleVersionNumber;
  15 +FOUNDATION_EXPORT const unsigned char DSBaseModuleVersionString[];
  16 +
Example/Pods/Target Support Files/DSBaseModule/DSBaseModule.modulemap 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/DSBaseModule/DSBaseModule.modulemap
  1 +framework module DSBaseModule {
  2 + umbrella header "DSBaseModule-umbrella.h"
  3 +
  4 + export *
  5 + module * { export * }
  6 +}
Example/Pods/Target Support Files/DSBaseModule/DSBaseModule.xcconfig 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/DSBaseModule/DSBaseModule.xcconfig
  1 +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/DSBaseModule
  2 +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/../../DSBaseModule/Frameworks"
  3 +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
  4 +PODS_BUILD_DIR = ${BUILD_DIR}
  5 +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)
  6 +PODS_ROOT = ${SRCROOT}
  7 +PODS_TARGET_SRCROOT = ${PODS_ROOT}/../..
  8 +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier}
  9 +SKIP_INSTALL = YES
  10 +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES
Example/Pods/Target Support Files/Pods-DSBaseModule_Example/Pods-DSBaseModule_Example-Info.plist 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/Pods-DSBaseModule_Example/Pods-DSBaseModule_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-DSBaseModule_Example/Pods-DSBaseModule_Example-acknowledgements.markdown 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/Pods-DSBaseModule_Example/Pods-DSBaseModule_Example-acknowledgements.markdown
  1 +# Acknowledgements
  2 +This application makes use of the following third party libraries:
  3 +
  4 +## DSBaseModule
  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-DSBaseModule_Example/Pods-DSBaseModule_Example-acknowledgements.plist 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/Pods-DSBaseModule_Example/Pods-DSBaseModule_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 &lt;694092596@qq.com&gt;
  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>DSBaseModule</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-DSBaseModule_Example/Pods-DSBaseModule_Example-dummy.m 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/Pods-DSBaseModule_Example/Pods-DSBaseModule_Example-dummy.m
  1 +#import <Foundation/Foundation.h>
  2 +@interface PodsDummy_Pods_DSBaseModule_Example : NSObject
  3 +@end
  4 +@implementation PodsDummy_Pods_DSBaseModule_Example
  5 +@end
Example/Pods/Target Support Files/Pods-DSBaseModule_Example/Pods-DSBaseModule_Example-frameworks.sh 0 → 100755
  1 +++ a/Example/Pods/Target Support Files/Pods-DSBaseModule_Example/Pods-DSBaseModule_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 "${PODS_ROOT}/../../DSBaseModule/Frameworks/DSBaseModule.framework"
  165 +fi
  166 +if [[ "$CONFIGURATION" == "Release" ]]; then
  167 + install_framework "${PODS_ROOT}/../../DSBaseModule/Frameworks/DSBaseModule.framework"
  168 +fi
  169 +if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then
  170 + wait
  171 +fi
Example/Pods/Target Support Files/Pods-DSBaseModule_Example/Pods-DSBaseModule_Example-umbrella.h 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/Pods-DSBaseModule_Example/Pods-DSBaseModule_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_DSBaseModule_ExampleVersionNumber;
  15 +FOUNDATION_EXPORT const unsigned char Pods_DSBaseModule_ExampleVersionString[];
  16 +
Example/Pods/Target Support Files/Pods-DSBaseModule_Example/Pods-DSBaseModule_Example.debug.xcconfig 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/Pods-DSBaseModule_Example/Pods-DSBaseModule_Example.debug.xcconfig
  1 +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/../../DSBaseModule/Frameworks"
  2 +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
  3 +LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks'
  4 +OTHER_LDFLAGS = $(inherited) -framework "DSBaseModule"
  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-DSBaseModule_Example/Pods-DSBaseModule_Example.modulemap 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/Pods-DSBaseModule_Example/Pods-DSBaseModule_Example.modulemap
  1 +framework module Pods_DSBaseModule_Example {
  2 + umbrella header "Pods-DSBaseModule_Example-umbrella.h"
  3 +
  4 + export *
  5 + module * { export * }
  6 +}
Example/Pods/Target Support Files/Pods-DSBaseModule_Example/Pods-DSBaseModule_Example.release.xcconfig 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/Pods-DSBaseModule_Example/Pods-DSBaseModule_Example.release.xcconfig
  1 +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/../../DSBaseModule/Frameworks"
  2 +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
  3 +LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks'
  4 +OTHER_LDFLAGS = $(inherited) -framework "DSBaseModule"
  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-DSBaseModule_Tests/Pods-DSBaseModule_Tests-Info.plist 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/Pods-DSBaseModule_Tests/Pods-DSBaseModule_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-DSBaseModule_Tests/Pods-DSBaseModule_Tests-acknowledgements.markdown 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/Pods-DSBaseModule_Tests/Pods-DSBaseModule_Tests-acknowledgements.markdown
  1 +# Acknowledgements
  2 +This application makes use of the following third party libraries:
  3 +Generated by CocoaPods - https://cocoapods.org
Example/Pods/Target Support Files/Pods-DSBaseModule_Tests/Pods-DSBaseModule_Tests-acknowledgements.plist 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/Pods-DSBaseModule_Tests/Pods-DSBaseModule_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-DSBaseModule_Tests/Pods-DSBaseModule_Tests-dummy.m 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/Pods-DSBaseModule_Tests/Pods-DSBaseModule_Tests-dummy.m
  1 +#import <Foundation/Foundation.h>
  2 +@interface PodsDummy_Pods_DSBaseModule_Tests : NSObject
  3 +@end
  4 +@implementation PodsDummy_Pods_DSBaseModule_Tests
  5 +@end
Example/Pods/Target Support Files/Pods-DSBaseModule_Tests/Pods-DSBaseModule_Tests-umbrella.h 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/Pods-DSBaseModule_Tests/Pods-DSBaseModule_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_DSBaseModule_TestsVersionNumber;
  15 +FOUNDATION_EXPORT const unsigned char Pods_DSBaseModule_TestsVersionString[];
  16 +
Example/Pods/Target Support Files/Pods-DSBaseModule_Tests/Pods-DSBaseModule_Tests.debug.xcconfig 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/Pods-DSBaseModule_Tests/Pods-DSBaseModule_Tests.debug.xcconfig
  1 +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/../../DSBaseModule/Frameworks"
  2 +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
  3 +OTHER_LDFLAGS = $(inherited) -framework "DSBaseModule"
  4 +PODS_BUILD_DIR = ${BUILD_DIR}
  5 +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)
  6 +PODS_PODFILE_DIR_PATH = ${SRCROOT}/.
  7 +PODS_ROOT = ${SRCROOT}/Pods
  8 +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES
Example/Pods/Target Support Files/Pods-DSBaseModule_Tests/Pods-DSBaseModule_Tests.modulemap 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/Pods-DSBaseModule_Tests/Pods-DSBaseModule_Tests.modulemap
  1 +framework module Pods_DSBaseModule_Tests {
  2 + umbrella header "Pods-DSBaseModule_Tests-umbrella.h"
  3 +
  4 + export *
  5 + module * { export * }
  6 +}
Example/Pods/Target Support Files/Pods-DSBaseModule_Tests/Pods-DSBaseModule_Tests.release.xcconfig 0 → 100644
  1 +++ a/Example/Pods/Target Support Files/Pods-DSBaseModule_Tests/Pods-DSBaseModule_Tests.release.xcconfig
  1 +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/../../DSBaseModule/Frameworks"
  2 +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
  3 +OTHER_LDFLAGS = $(inherited) -framework "DSBaseModule"
  4 +PODS_BUILD_DIR = ${BUILD_DIR}
  5 +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)
  6 +PODS_PODFILE_DIR_PATH = ${SRCROOT}/.
  7 +PODS_ROOT = ${SRCROOT}/Pods
  8 +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
  1 +++ a/Example/Tests/Tests-Prefix.pch
  1 +// The contents of this file are implicitly included at the beginning of every test case source file.
  2 +
  3 +#ifdef __OBJC__
  4 +
  5 +
  6 +
  7 +#endif
Example/Tests/Tests.m 0 → 100644
  1 +++ a/Example/Tests/Tests.m
  1 +//
  2 +// DSBaseModuleTests.m
  3 +// DSBaseModuleTests
  4 +//
  5 +// Created by 694092596@qq.com on 02/29/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
  1 +++ a/Example/Tests/en.lproj/InfoPlist.strings
  1 +/* Localized versions of Info.plist keys */
  2 +
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 +# DSBaseModule
  2 +
  3 +[![CI Status](https://img.shields.io/travis/694092596@qq.com/DSBaseModule.svg?style=flat)](https://travis-ci.org/694092596@qq.com/DSBaseModule)
  4 +[![Version](https://img.shields.io/cocoapods/v/DSBaseModule.svg?style=flat)](https://cocoapods.org/pods/DSBaseModule)
  5 +[![License](https://img.shields.io/cocoapods/l/DSBaseModule.svg?style=flat)](https://cocoapods.org/pods/DSBaseModule)
  6 +[![Platform](https://img.shields.io/cocoapods/p/DSBaseModule.svg?style=flat)](https://cocoapods.org/pods/DSBaseModule)
  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 +DSBaseModule is available through [CocoaPods](https://cocoapods.org). To install
  17 +it, simply add the following line to your Podfile:
  18 +
  19 +```ruby
  20 +pod 'DSBaseModule'
  21 +```
  22 +
  23 +## Author
  24 +
  25 +694092596@qq.com, 694092596@qq.com
  26 +
  27 +## License
  28 +
  29 +DSBaseModule is available under the MIT license. See the LICENSE file for more info.
_Pods.xcodeproj 0 → 120000
  1 +++ a/_Pods.xcodeproj
  1 +Example/Pods/Pods.xcodeproj
0 \ No newline at end of file 2 \ No newline at end of file