├── .gitignore ├── README.md ├── sample ├── Podfile ├── Podfile.lock ├── sample.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── sample.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings ├── sample │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift ├── sampleTests │ ├── Info.plist │ └── sampleTests.swift └── sampleUITests │ ├── Info.plist │ └── sampleUITests.swift └── sdk ├── sdk.podspec ├── sdk.xcodeproj ├── project.pbxproj └── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── sdk ├── Info.plist └── sdk.h └── sdkTests ├── Info.plist └── sdkTests.swift /.gitignore: -------------------------------------------------------------------------------- 1 | ### Carthage ### 2 | # Carthage 3 | # 4 | # Add this line if you want to avoid checking in source code from Carthage dependencies. 5 | # Carthage/Checkouts 6 | 7 | Carthage/Build 8 | 9 | ### CocoaPods ### 10 | ## CocoaPods GitIgnore Template 11 | 12 | # CocoaPods - Only use to conserve bandwidth / Save time on Pushing 13 | # - Also handy if you have a large number of dependant pods 14 | # - AS PER https://guides.cocoapods.org/using/using-cocoapods.html NEVER IGNORE THE LOCK FILE 15 | Pods/ 16 | 17 | ### fastlane ### 18 | # fastlane - A streamlined workflow tool for Cocoa deployment 19 | # 20 | # It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the 21 | # screenshots whenever they are needed. 22 | # For more information about the recommended setup visit: 23 | # https://docs.fastlane.tools/best-practices/source-control/#source-control 24 | 25 | # fastlane specific 26 | fastlane/report.xml 27 | 28 | # deliver temporary files 29 | fastlane/Preview.html 30 | 31 | # snapshot generated screenshots 32 | fastlane/screenshots/**/*.png 33 | fastlane/screenshots/screenshots.html 34 | 35 | # scan temporary files 36 | fastlane/test_output 37 | ### macOS ### 38 | *.DS_Store 39 | .AppleDouble 40 | .LSOverride 41 | 42 | # Icon must end with two \r 43 | Icon 44 | 45 | # Thumbnails 46 | ._* 47 | 48 | # Files that might appear in the root of a volume 49 | .DocumentRevisions-V100 50 | .fseventsd 51 | .Spotlight-V100 52 | .TemporaryItems 53 | .Trashes 54 | .VolumeIcon.icns 55 | .com.apple.timemachine.donotpresent 56 | 57 | # Directories potentially created on remote AFP share 58 | .AppleDB 59 | .AppleDesktop 60 | Network Trash Folder 61 | Temporary Items 62 | .apdisk 63 | 64 | ### Objective-C ### 65 | # Xcode 66 | # 67 | # gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore 68 | 69 | ## Build generated 70 | build/ 71 | DerivedData/ 72 | 73 | ## Various settings 74 | *.pbxuser 75 | !default.pbxuser 76 | *.mode1v3 77 | !default.mode1v3 78 | *.mode2v3 79 | !default.mode2v3 80 | *.perspectivev3 81 | !default.perspectivev3 82 | xcuserdata/ 83 | 84 | ## Other 85 | *.moved-aside 86 | *.xccheckout 87 | *.xcscmblueprint 88 | 89 | ## Obj-C/Swift specific 90 | *.hmap 91 | *.ipa 92 | *.dSYM.zip 93 | *.dSYM 94 | 95 | # Code Injection 96 | # 97 | # After new code Injection tools there's a generated folder /iOSInjectionProject 98 | # https://github.com/johnno1962/injectionforxcode 99 | 100 | iOSInjectionProject/ 101 | 102 | ### Objective-C Patch ### 103 | 104 | ### Swift ### 105 | # Xcode 106 | # 107 | # gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore 108 | 109 | ## Build generated 110 | 111 | ## Various settings 112 | 113 | ## Other 114 | 115 | ## Obj-C/Swift specific 116 | 117 | ## Playgrounds 118 | timeline.xctimeline 119 | playground.xcworkspace 120 | 121 | # Swift Package Manager 122 | # 123 | # Add this line if you want to avoid checking in source code from Swift Package Manager dependencies. 124 | # Packages/ 125 | # Package.pins 126 | .build/ 127 | 128 | # CocoaPods - Refactored to standalone file 129 | 130 | # Carthage - Refactored to standalone file 131 | 132 | # fastlane 133 | # 134 | # It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the 135 | # screenshots whenever they are needed. 136 | # For more information about the recommended setup visit: 137 | # https://docs.fastlane.tools/best-practices/source-control/#source-control 138 | 139 | ### AppCode ### 140 | .idea/ 141 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # iOS Multiple Projects Workspace Setup 2 | 3 | Sample that demonstrates how to setup multiple projects workspace for iOS using Xcode and Cocoa-pods. It allows to: 4 | 5 | - Use different repositories for different projects; 6 | - Use different Cocoa-pods dependencies for different projects; 7 | - Work with all projects from one workspace (Xcode window). 8 | 9 | ## Installation 10 | 11 | - Clone repository; 12 | - Open `sample` folder and run `pod install` there; 13 | - Open `sample.workspace`; 14 | - Switch targets to switch projects; 15 | - Enjoy using one workspace with multiple projects and `Cocoa-pods` dependencies. 16 | -------------------------------------------------------------------------------- /sample/Podfile: -------------------------------------------------------------------------------- 1 | # Uncomment the next line to define a global platform for your project 2 | # platform :ios, '9.0' 3 | 4 | # Comment the next line if you're not using Swift and don't want to use dynamic frameworks 5 | use_frameworks! 6 | 7 | workspace 'sample' 8 | 9 | def sample_pods 10 | pod 'SSZipArchive' 11 | end 12 | 13 | def sdk_pods 14 | podspec :path => '../sdk/sdk.podspec' 15 | end 16 | 17 | target 'sample' do 18 | project '../sample/sample.xcodeproj' 19 | sample_pods 20 | sdk_pods 21 | end 22 | 23 | target 'sdk' do 24 | project '../sdk/sdk.xcodeproj' 25 | sdk_pods 26 | end -------------------------------------------------------------------------------- /sample/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - Mixpanel-swift (2.6.5): 3 | - Mixpanel-swift/Complete (= 2.6.5) 4 | - Mixpanel-swift/Complete (2.6.5) 5 | - SSZipArchive (2.2.2) 6 | 7 | DEPENDENCIES: 8 | - Mixpanel-swift 9 | - SSZipArchive 10 | 11 | SPEC REPOS: 12 | https://github.com/cocoapods/specs.git: 13 | - Mixpanel-swift 14 | - SSZipArchive 15 | 16 | SPEC CHECKSUMS: 17 | Mixpanel-swift: 1542908cda2c3858027e1d38f31f34fb6b16f4fc 18 | SSZipArchive: fa16b8cc4cdeceb698e5e5d9f67e9558532fbf23 19 | 20 | PODFILE CHECKSUM: eb43c6c392ed819a3b954c07205190809408d259 21 | 22 | COCOAPODS: 1.7.5 23 | -------------------------------------------------------------------------------- /sample/sample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 51; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 07386A3CBD113048CDB24B88 /* Pods_sample.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4654FB66ACF4792D47C46D04 /* Pods_sample.framework */; }; 11 | 5534FD51233A44FB00D1226A /* sdk.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5534FD50233A44FB00D1226A /* sdk.framework */; }; 12 | 5568D3052327D56000BBE15E /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5568D3042327D56000BBE15E /* AppDelegate.swift */; }; 13 | 5568D3072327D56000BBE15E /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5568D3062327D56000BBE15E /* ViewController.swift */; }; 14 | 5568D30A2327D56000BBE15E /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 5568D3082327D56000BBE15E /* Main.storyboard */; }; 15 | 5568D30C2327D56100BBE15E /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 5568D30B2327D56100BBE15E /* Assets.xcassets */; }; 16 | 5568D30F2327D56100BBE15E /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 5568D30D2327D56100BBE15E /* LaunchScreen.storyboard */; }; 17 | 5568D31A2327D56100BBE15E /* sampleTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5568D3192327D56100BBE15E /* sampleTests.swift */; }; 18 | 5568D3252327D56100BBE15E /* sampleUITests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5568D3242327D56100BBE15E /* sampleUITests.swift */; }; 19 | /* End PBXBuildFile section */ 20 | 21 | /* Begin PBXContainerItemProxy section */ 22 | 5568D3162327D56100BBE15E /* PBXContainerItemProxy */ = { 23 | isa = PBXContainerItemProxy; 24 | containerPortal = 5568D2F92327D56000BBE15E /* Project object */; 25 | proxyType = 1; 26 | remoteGlobalIDString = 5568D3002327D56000BBE15E; 27 | remoteInfo = sample; 28 | }; 29 | 5568D3212327D56100BBE15E /* PBXContainerItemProxy */ = { 30 | isa = PBXContainerItemProxy; 31 | containerPortal = 5568D2F92327D56000BBE15E /* Project object */; 32 | proxyType = 1; 33 | remoteGlobalIDString = 5568D3002327D56000BBE15E; 34 | remoteInfo = sample; 35 | }; 36 | /* End PBXContainerItemProxy section */ 37 | 38 | /* Begin PBXFileReference section */ 39 | 311F3EAF55B55232A49F13FA /* Pods-sample.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-sample.release.xcconfig"; path = "Target Support Files/Pods-sample/Pods-sample.release.xcconfig"; sourceTree = ""; }; 40 | 4654FB66ACF4792D47C46D04 /* Pods_sample.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_sample.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 41 | 5534FD50233A44FB00D1226A /* sdk.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = sdk.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 42 | 5568D3012327D56000BBE15E /* sample.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = sample.app; sourceTree = BUILT_PRODUCTS_DIR; }; 43 | 5568D3042327D56000BBE15E /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 44 | 5568D3062327D56000BBE15E /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; }; 45 | 5568D3092327D56000BBE15E /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 46 | 5568D30B2327D56100BBE15E /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; 47 | 5568D30E2327D56100BBE15E /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; 48 | 5568D3102327D56100BBE15E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 49 | 5568D3152327D56100BBE15E /* sampleTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = sampleTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 50 | 5568D3192327D56100BBE15E /* sampleTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = sampleTests.swift; sourceTree = ""; }; 51 | 5568D31B2327D56100BBE15E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 52 | 5568D3202327D56100BBE15E /* sampleUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = sampleUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 53 | 5568D3242327D56100BBE15E /* sampleUITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = sampleUITests.swift; sourceTree = ""; }; 54 | 5568D3262327D56100BBE15E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 55 | 55CCFC6D232BD02500A43645 /* sdk.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = sdk.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 56 | 55CCFC6F232BD10D00A43645 /* sdk.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = sdk.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 57 | D34190328EE7D8252126DF48 /* Pods-sample.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-sample.debug.xcconfig"; path = "Target Support Files/Pods-sample/Pods-sample.debug.xcconfig"; sourceTree = ""; }; 58 | /* End PBXFileReference section */ 59 | 60 | /* Begin PBXFrameworksBuildPhase section */ 61 | 5568D2FE2327D56000BBE15E /* Frameworks */ = { 62 | isa = PBXFrameworksBuildPhase; 63 | buildActionMask = 2147483647; 64 | files = ( 65 | 5534FD51233A44FB00D1226A /* sdk.framework in Frameworks */, 66 | 07386A3CBD113048CDB24B88 /* Pods_sample.framework in Frameworks */, 67 | ); 68 | runOnlyForDeploymentPostprocessing = 0; 69 | }; 70 | 5568D3122327D56100BBE15E /* Frameworks */ = { 71 | isa = PBXFrameworksBuildPhase; 72 | buildActionMask = 2147483647; 73 | files = ( 74 | ); 75 | runOnlyForDeploymentPostprocessing = 0; 76 | }; 77 | 5568D31D2327D56100BBE15E /* Frameworks */ = { 78 | isa = PBXFrameworksBuildPhase; 79 | buildActionMask = 2147483647; 80 | files = ( 81 | ); 82 | runOnlyForDeploymentPostprocessing = 0; 83 | }; 84 | /* End PBXFrameworksBuildPhase section */ 85 | 86 | /* Begin PBXGroup section */ 87 | 45D66B77A950F865F52E63B5 /* Frameworks */ = { 88 | isa = PBXGroup; 89 | children = ( 90 | 5534FD50233A44FB00D1226A /* sdk.framework */, 91 | 55CCFC6F232BD10D00A43645 /* sdk.framework */, 92 | 55CCFC6D232BD02500A43645 /* sdk.framework */, 93 | 4654FB66ACF4792D47C46D04 /* Pods_sample.framework */, 94 | ); 95 | name = Frameworks; 96 | sourceTree = ""; 97 | }; 98 | 5568D2F82327D56000BBE15E = { 99 | isa = PBXGroup; 100 | children = ( 101 | 5568D3032327D56000BBE15E /* sample */, 102 | 5568D3182327D56100BBE15E /* sampleTests */, 103 | 5568D3232327D56100BBE15E /* sampleUITests */, 104 | 5568D3022327D56000BBE15E /* Products */, 105 | BCB11841CBD84822EE3A9A70 /* Pods */, 106 | 45D66B77A950F865F52E63B5 /* Frameworks */, 107 | ); 108 | sourceTree = ""; 109 | }; 110 | 5568D3022327D56000BBE15E /* Products */ = { 111 | isa = PBXGroup; 112 | children = ( 113 | 5568D3012327D56000BBE15E /* sample.app */, 114 | 5568D3152327D56100BBE15E /* sampleTests.xctest */, 115 | 5568D3202327D56100BBE15E /* sampleUITests.xctest */, 116 | ); 117 | name = Products; 118 | sourceTree = ""; 119 | }; 120 | 5568D3032327D56000BBE15E /* sample */ = { 121 | isa = PBXGroup; 122 | children = ( 123 | 5568D3042327D56000BBE15E /* AppDelegate.swift */, 124 | 5568D3062327D56000BBE15E /* ViewController.swift */, 125 | 5568D3082327D56000BBE15E /* Main.storyboard */, 126 | 5568D30B2327D56100BBE15E /* Assets.xcassets */, 127 | 5568D30D2327D56100BBE15E /* LaunchScreen.storyboard */, 128 | 5568D3102327D56100BBE15E /* Info.plist */, 129 | ); 130 | path = sample; 131 | sourceTree = ""; 132 | }; 133 | 5568D3182327D56100BBE15E /* sampleTests */ = { 134 | isa = PBXGroup; 135 | children = ( 136 | 5568D3192327D56100BBE15E /* sampleTests.swift */, 137 | 5568D31B2327D56100BBE15E /* Info.plist */, 138 | ); 139 | path = sampleTests; 140 | sourceTree = ""; 141 | }; 142 | 5568D3232327D56100BBE15E /* sampleUITests */ = { 143 | isa = PBXGroup; 144 | children = ( 145 | 5568D3242327D56100BBE15E /* sampleUITests.swift */, 146 | 5568D3262327D56100BBE15E /* Info.plist */, 147 | ); 148 | path = sampleUITests; 149 | sourceTree = ""; 150 | }; 151 | BCB11841CBD84822EE3A9A70 /* Pods */ = { 152 | isa = PBXGroup; 153 | children = ( 154 | D34190328EE7D8252126DF48 /* Pods-sample.debug.xcconfig */, 155 | 311F3EAF55B55232A49F13FA /* Pods-sample.release.xcconfig */, 156 | ); 157 | path = Pods; 158 | sourceTree = ""; 159 | }; 160 | /* End PBXGroup section */ 161 | 162 | /* Begin PBXNativeTarget section */ 163 | 5568D3002327D56000BBE15E /* sample */ = { 164 | isa = PBXNativeTarget; 165 | buildConfigurationList = 5568D3292327D56100BBE15E /* Build configuration list for PBXNativeTarget "sample" */; 166 | buildPhases = ( 167 | 98FED20A9988DEB68E125BA4 /* [CP] Check Pods Manifest.lock */, 168 | 5568D2FD2327D56000BBE15E /* Sources */, 169 | 5568D2FE2327D56000BBE15E /* Frameworks */, 170 | 5568D2FF2327D56000BBE15E /* Resources */, 171 | F9D4A4BBA9F58043DC10DB5E /* [CP] Embed Pods Frameworks */, 172 | ); 173 | buildRules = ( 174 | ); 175 | dependencies = ( 176 | ); 177 | name = sample; 178 | productName = sample; 179 | productReference = 5568D3012327D56000BBE15E /* sample.app */; 180 | productType = "com.apple.product-type.application"; 181 | }; 182 | 5568D3142327D56100BBE15E /* sampleTests */ = { 183 | isa = PBXNativeTarget; 184 | buildConfigurationList = 5568D32C2327D56100BBE15E /* Build configuration list for PBXNativeTarget "sampleTests" */; 185 | buildPhases = ( 186 | 5568D3112327D56100BBE15E /* Sources */, 187 | 5568D3122327D56100BBE15E /* Frameworks */, 188 | 5568D3132327D56100BBE15E /* Resources */, 189 | ); 190 | buildRules = ( 191 | ); 192 | dependencies = ( 193 | 5568D3172327D56100BBE15E /* PBXTargetDependency */, 194 | ); 195 | name = sampleTests; 196 | productName = sampleTests; 197 | productReference = 5568D3152327D56100BBE15E /* sampleTests.xctest */; 198 | productType = "com.apple.product-type.bundle.unit-test"; 199 | }; 200 | 5568D31F2327D56100BBE15E /* sampleUITests */ = { 201 | isa = PBXNativeTarget; 202 | buildConfigurationList = 5568D32F2327D56100BBE15E /* Build configuration list for PBXNativeTarget "sampleUITests" */; 203 | buildPhases = ( 204 | 5568D31C2327D56100BBE15E /* Sources */, 205 | 5568D31D2327D56100BBE15E /* Frameworks */, 206 | 5568D31E2327D56100BBE15E /* Resources */, 207 | ); 208 | buildRules = ( 209 | ); 210 | dependencies = ( 211 | 5568D3222327D56100BBE15E /* PBXTargetDependency */, 212 | ); 213 | name = sampleUITests; 214 | productName = sampleUITests; 215 | productReference = 5568D3202327D56100BBE15E /* sampleUITests.xctest */; 216 | productType = "com.apple.product-type.bundle.ui-testing"; 217 | }; 218 | /* End PBXNativeTarget section */ 219 | 220 | /* Begin PBXProject section */ 221 | 5568D2F92327D56000BBE15E /* Project object */ = { 222 | isa = PBXProject; 223 | attributes = { 224 | LastSwiftUpdateCheck = 1020; 225 | LastUpgradeCheck = 1020; 226 | ORGANIZATIONNAME = "Yakiv Mospan"; 227 | TargetAttributes = { 228 | 5568D3002327D56000BBE15E = { 229 | CreatedOnToolsVersion = 10.2.1; 230 | }; 231 | 5568D3142327D56100BBE15E = { 232 | CreatedOnToolsVersion = 10.2.1; 233 | TestTargetID = 5568D3002327D56000BBE15E; 234 | }; 235 | 5568D31F2327D56100BBE15E = { 236 | CreatedOnToolsVersion = 10.2.1; 237 | TestTargetID = 5568D3002327D56000BBE15E; 238 | }; 239 | }; 240 | }; 241 | buildConfigurationList = 5568D2FC2327D56000BBE15E /* Build configuration list for PBXProject "sample" */; 242 | compatibilityVersion = "Xcode 9.3"; 243 | developmentRegion = en; 244 | hasScannedForEncodings = 0; 245 | knownRegions = ( 246 | en, 247 | Base, 248 | ); 249 | mainGroup = 5568D2F82327D56000BBE15E; 250 | productRefGroup = 5568D3022327D56000BBE15E /* Products */; 251 | projectDirPath = ""; 252 | projectRoot = ""; 253 | targets = ( 254 | 5568D3002327D56000BBE15E /* sample */, 255 | 5568D3142327D56100BBE15E /* sampleTests */, 256 | 5568D31F2327D56100BBE15E /* sampleUITests */, 257 | ); 258 | }; 259 | /* End PBXProject section */ 260 | 261 | /* Begin PBXResourcesBuildPhase section */ 262 | 5568D2FF2327D56000BBE15E /* Resources */ = { 263 | isa = PBXResourcesBuildPhase; 264 | buildActionMask = 2147483647; 265 | files = ( 266 | 5568D30F2327D56100BBE15E /* LaunchScreen.storyboard in Resources */, 267 | 5568D30C2327D56100BBE15E /* Assets.xcassets in Resources */, 268 | 5568D30A2327D56000BBE15E /* Main.storyboard in Resources */, 269 | ); 270 | runOnlyForDeploymentPostprocessing = 0; 271 | }; 272 | 5568D3132327D56100BBE15E /* Resources */ = { 273 | isa = PBXResourcesBuildPhase; 274 | buildActionMask = 2147483647; 275 | files = ( 276 | ); 277 | runOnlyForDeploymentPostprocessing = 0; 278 | }; 279 | 5568D31E2327D56100BBE15E /* Resources */ = { 280 | isa = PBXResourcesBuildPhase; 281 | buildActionMask = 2147483647; 282 | files = ( 283 | ); 284 | runOnlyForDeploymentPostprocessing = 0; 285 | }; 286 | /* End PBXResourcesBuildPhase section */ 287 | 288 | /* Begin PBXShellScriptBuildPhase section */ 289 | 98FED20A9988DEB68E125BA4 /* [CP] Check Pods Manifest.lock */ = { 290 | isa = PBXShellScriptBuildPhase; 291 | buildActionMask = 2147483647; 292 | files = ( 293 | ); 294 | inputFileListPaths = ( 295 | ); 296 | inputPaths = ( 297 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock", 298 | "${PODS_ROOT}/Manifest.lock", 299 | ); 300 | name = "[CP] Check Pods Manifest.lock"; 301 | outputFileListPaths = ( 302 | ); 303 | outputPaths = ( 304 | "$(DERIVED_FILE_DIR)/Pods-sample-checkManifestLockResult.txt", 305 | ); 306 | runOnlyForDeploymentPostprocessing = 0; 307 | shellPath = /bin/sh; 308 | 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"; 309 | showEnvVarsInLog = 0; 310 | }; 311 | F9D4A4BBA9F58043DC10DB5E /* [CP] Embed Pods Frameworks */ = { 312 | isa = PBXShellScriptBuildPhase; 313 | buildActionMask = 2147483647; 314 | files = ( 315 | ); 316 | inputFileListPaths = ( 317 | "${PODS_ROOT}/Target Support Files/Pods-sample/Pods-sample-frameworks-${CONFIGURATION}-input-files.xcfilelist", 318 | ); 319 | name = "[CP] Embed Pods Frameworks"; 320 | outputFileListPaths = ( 321 | "${PODS_ROOT}/Target Support Files/Pods-sample/Pods-sample-frameworks-${CONFIGURATION}-output-files.xcfilelist", 322 | ); 323 | runOnlyForDeploymentPostprocessing = 0; 324 | shellPath = /bin/sh; 325 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-sample/Pods-sample-frameworks.sh\"\n"; 326 | showEnvVarsInLog = 0; 327 | }; 328 | /* End PBXShellScriptBuildPhase section */ 329 | 330 | /* Begin PBXSourcesBuildPhase section */ 331 | 5568D2FD2327D56000BBE15E /* Sources */ = { 332 | isa = PBXSourcesBuildPhase; 333 | buildActionMask = 2147483647; 334 | files = ( 335 | 5568D3072327D56000BBE15E /* ViewController.swift in Sources */, 336 | 5568D3052327D56000BBE15E /* AppDelegate.swift in Sources */, 337 | ); 338 | runOnlyForDeploymentPostprocessing = 0; 339 | }; 340 | 5568D3112327D56100BBE15E /* Sources */ = { 341 | isa = PBXSourcesBuildPhase; 342 | buildActionMask = 2147483647; 343 | files = ( 344 | 5568D31A2327D56100BBE15E /* sampleTests.swift in Sources */, 345 | ); 346 | runOnlyForDeploymentPostprocessing = 0; 347 | }; 348 | 5568D31C2327D56100BBE15E /* Sources */ = { 349 | isa = PBXSourcesBuildPhase; 350 | buildActionMask = 2147483647; 351 | files = ( 352 | 5568D3252327D56100BBE15E /* sampleUITests.swift in Sources */, 353 | ); 354 | runOnlyForDeploymentPostprocessing = 0; 355 | }; 356 | /* End PBXSourcesBuildPhase section */ 357 | 358 | /* Begin PBXTargetDependency section */ 359 | 5568D3172327D56100BBE15E /* PBXTargetDependency */ = { 360 | isa = PBXTargetDependency; 361 | target = 5568D3002327D56000BBE15E /* sample */; 362 | targetProxy = 5568D3162327D56100BBE15E /* PBXContainerItemProxy */; 363 | }; 364 | 5568D3222327D56100BBE15E /* PBXTargetDependency */ = { 365 | isa = PBXTargetDependency; 366 | target = 5568D3002327D56000BBE15E /* sample */; 367 | targetProxy = 5568D3212327D56100BBE15E /* PBXContainerItemProxy */; 368 | }; 369 | /* End PBXTargetDependency section */ 370 | 371 | /* Begin PBXVariantGroup section */ 372 | 5568D3082327D56000BBE15E /* Main.storyboard */ = { 373 | isa = PBXVariantGroup; 374 | children = ( 375 | 5568D3092327D56000BBE15E /* Base */, 376 | ); 377 | name = Main.storyboard; 378 | sourceTree = ""; 379 | }; 380 | 5568D30D2327D56100BBE15E /* LaunchScreen.storyboard */ = { 381 | isa = PBXVariantGroup; 382 | children = ( 383 | 5568D30E2327D56100BBE15E /* Base */, 384 | ); 385 | name = LaunchScreen.storyboard; 386 | sourceTree = ""; 387 | }; 388 | /* End PBXVariantGroup section */ 389 | 390 | /* Begin XCBuildConfiguration section */ 391 | 5568D3272327D56100BBE15E /* Debug */ = { 392 | isa = XCBuildConfiguration; 393 | buildSettings = { 394 | ALWAYS_SEARCH_USER_PATHS = NO; 395 | CLANG_ANALYZER_NONNULL = YES; 396 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 397 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 398 | CLANG_CXX_LIBRARY = "libc++"; 399 | CLANG_ENABLE_MODULES = YES; 400 | CLANG_ENABLE_OBJC_ARC = YES; 401 | CLANG_ENABLE_OBJC_WEAK = YES; 402 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 403 | CLANG_WARN_BOOL_CONVERSION = YES; 404 | CLANG_WARN_COMMA = YES; 405 | CLANG_WARN_CONSTANT_CONVERSION = YES; 406 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 407 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 408 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 409 | CLANG_WARN_EMPTY_BODY = YES; 410 | CLANG_WARN_ENUM_CONVERSION = YES; 411 | CLANG_WARN_INFINITE_RECURSION = YES; 412 | CLANG_WARN_INT_CONVERSION = YES; 413 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 414 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 415 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 416 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 417 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 418 | CLANG_WARN_STRICT_PROTOTYPES = YES; 419 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 420 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 421 | CLANG_WARN_UNREACHABLE_CODE = YES; 422 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 423 | CODE_SIGN_IDENTITY = "iPhone Developer"; 424 | COPY_PHASE_STRIP = NO; 425 | DEBUG_INFORMATION_FORMAT = dwarf; 426 | ENABLE_STRICT_OBJC_MSGSEND = YES; 427 | ENABLE_TESTABILITY = YES; 428 | GCC_C_LANGUAGE_STANDARD = gnu11; 429 | GCC_DYNAMIC_NO_PIC = NO; 430 | GCC_NO_COMMON_BLOCKS = YES; 431 | GCC_OPTIMIZATION_LEVEL = 0; 432 | GCC_PREPROCESSOR_DEFINITIONS = ( 433 | "DEBUG=1", 434 | "$(inherited)", 435 | ); 436 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 437 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 438 | GCC_WARN_UNDECLARED_SELECTOR = YES; 439 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 440 | GCC_WARN_UNUSED_FUNCTION = YES; 441 | GCC_WARN_UNUSED_VARIABLE = YES; 442 | IPHONEOS_DEPLOYMENT_TARGET = 12.2; 443 | MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; 444 | MTL_FAST_MATH = YES; 445 | ONLY_ACTIVE_ARCH = YES; 446 | SDKROOT = iphoneos; 447 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; 448 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 449 | }; 450 | name = Debug; 451 | }; 452 | 5568D3282327D56100BBE15E /* Release */ = { 453 | isa = XCBuildConfiguration; 454 | buildSettings = { 455 | ALWAYS_SEARCH_USER_PATHS = NO; 456 | CLANG_ANALYZER_NONNULL = YES; 457 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 458 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 459 | CLANG_CXX_LIBRARY = "libc++"; 460 | CLANG_ENABLE_MODULES = YES; 461 | CLANG_ENABLE_OBJC_ARC = YES; 462 | CLANG_ENABLE_OBJC_WEAK = YES; 463 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 464 | CLANG_WARN_BOOL_CONVERSION = YES; 465 | CLANG_WARN_COMMA = YES; 466 | CLANG_WARN_CONSTANT_CONVERSION = YES; 467 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 468 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 469 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 470 | CLANG_WARN_EMPTY_BODY = YES; 471 | CLANG_WARN_ENUM_CONVERSION = YES; 472 | CLANG_WARN_INFINITE_RECURSION = YES; 473 | CLANG_WARN_INT_CONVERSION = YES; 474 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 475 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 476 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 477 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 478 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 479 | CLANG_WARN_STRICT_PROTOTYPES = YES; 480 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 481 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 482 | CLANG_WARN_UNREACHABLE_CODE = YES; 483 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 484 | CODE_SIGN_IDENTITY = "iPhone Developer"; 485 | COPY_PHASE_STRIP = NO; 486 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 487 | ENABLE_NS_ASSERTIONS = NO; 488 | ENABLE_STRICT_OBJC_MSGSEND = YES; 489 | GCC_C_LANGUAGE_STANDARD = gnu11; 490 | GCC_NO_COMMON_BLOCKS = YES; 491 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 492 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 493 | GCC_WARN_UNDECLARED_SELECTOR = YES; 494 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 495 | GCC_WARN_UNUSED_FUNCTION = YES; 496 | GCC_WARN_UNUSED_VARIABLE = YES; 497 | IPHONEOS_DEPLOYMENT_TARGET = 12.2; 498 | MTL_ENABLE_DEBUG_INFO = NO; 499 | MTL_FAST_MATH = YES; 500 | SDKROOT = iphoneos; 501 | SWIFT_COMPILATION_MODE = wholemodule; 502 | SWIFT_OPTIMIZATION_LEVEL = "-O"; 503 | VALIDATE_PRODUCT = YES; 504 | }; 505 | name = Release; 506 | }; 507 | 5568D32A2327D56100BBE15E /* Debug */ = { 508 | isa = XCBuildConfiguration; 509 | baseConfigurationReference = D34190328EE7D8252126DF48 /* Pods-sample.debug.xcconfig */; 510 | buildSettings = { 511 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 512 | CODE_SIGN_STYLE = Automatic; 513 | INFOPLIST_FILE = sample/Info.plist; 514 | LD_RUNPATH_SEARCH_PATHS = ( 515 | "$(inherited)", 516 | "@executable_path/Frameworks", 517 | ); 518 | PRODUCT_BUNDLE_IDENTIFIER = "com.yakivmospan.worspace-setup.sample.sample"; 519 | PRODUCT_NAME = "$(TARGET_NAME)"; 520 | SWIFT_VERSION = 5.0; 521 | TARGETED_DEVICE_FAMILY = "1,2"; 522 | }; 523 | name = Debug; 524 | }; 525 | 5568D32B2327D56100BBE15E /* Release */ = { 526 | isa = XCBuildConfiguration; 527 | baseConfigurationReference = 311F3EAF55B55232A49F13FA /* Pods-sample.release.xcconfig */; 528 | buildSettings = { 529 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 530 | CODE_SIGN_STYLE = Automatic; 531 | INFOPLIST_FILE = sample/Info.plist; 532 | LD_RUNPATH_SEARCH_PATHS = ( 533 | "$(inherited)", 534 | "@executable_path/Frameworks", 535 | ); 536 | PRODUCT_BUNDLE_IDENTIFIER = "com.yakivmospan.worspace-setup.sample.sample"; 537 | PRODUCT_NAME = "$(TARGET_NAME)"; 538 | SWIFT_VERSION = 5.0; 539 | TARGETED_DEVICE_FAMILY = "1,2"; 540 | }; 541 | name = Release; 542 | }; 543 | 5568D32D2327D56100BBE15E /* Debug */ = { 544 | isa = XCBuildConfiguration; 545 | buildSettings = { 546 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; 547 | BUNDLE_LOADER = "$(TEST_HOST)"; 548 | CODE_SIGN_STYLE = Automatic; 549 | INFOPLIST_FILE = sampleTests/Info.plist; 550 | LD_RUNPATH_SEARCH_PATHS = ( 551 | "$(inherited)", 552 | "@executable_path/Frameworks", 553 | "@loader_path/Frameworks", 554 | ); 555 | PRODUCT_BUNDLE_IDENTIFIER = "com.yakivmospan.worspace-setup.sample.sampleTests"; 556 | PRODUCT_NAME = "$(TARGET_NAME)"; 557 | SWIFT_VERSION = 5.0; 558 | TARGETED_DEVICE_FAMILY = "1,2"; 559 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/sample.app/sample"; 560 | }; 561 | name = Debug; 562 | }; 563 | 5568D32E2327D56100BBE15E /* Release */ = { 564 | isa = XCBuildConfiguration; 565 | buildSettings = { 566 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; 567 | BUNDLE_LOADER = "$(TEST_HOST)"; 568 | CODE_SIGN_STYLE = Automatic; 569 | INFOPLIST_FILE = sampleTests/Info.plist; 570 | LD_RUNPATH_SEARCH_PATHS = ( 571 | "$(inherited)", 572 | "@executable_path/Frameworks", 573 | "@loader_path/Frameworks", 574 | ); 575 | PRODUCT_BUNDLE_IDENTIFIER = "com.yakivmospan.worspace-setup.sample.sampleTests"; 576 | PRODUCT_NAME = "$(TARGET_NAME)"; 577 | SWIFT_VERSION = 5.0; 578 | TARGETED_DEVICE_FAMILY = "1,2"; 579 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/sample.app/sample"; 580 | }; 581 | name = Release; 582 | }; 583 | 5568D3302327D56100BBE15E /* Debug */ = { 584 | isa = XCBuildConfiguration; 585 | buildSettings = { 586 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; 587 | CODE_SIGN_STYLE = Automatic; 588 | INFOPLIST_FILE = sampleUITests/Info.plist; 589 | LD_RUNPATH_SEARCH_PATHS = ( 590 | "$(inherited)", 591 | "@executable_path/Frameworks", 592 | "@loader_path/Frameworks", 593 | ); 594 | PRODUCT_BUNDLE_IDENTIFIER = "com.yakivmospan.worspace-setup.sample.sampleUITests"; 595 | PRODUCT_NAME = "$(TARGET_NAME)"; 596 | SWIFT_VERSION = 5.0; 597 | TARGETED_DEVICE_FAMILY = "1,2"; 598 | TEST_TARGET_NAME = sample; 599 | }; 600 | name = Debug; 601 | }; 602 | 5568D3312327D56100BBE15E /* Release */ = { 603 | isa = XCBuildConfiguration; 604 | buildSettings = { 605 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; 606 | CODE_SIGN_STYLE = Automatic; 607 | INFOPLIST_FILE = sampleUITests/Info.plist; 608 | LD_RUNPATH_SEARCH_PATHS = ( 609 | "$(inherited)", 610 | "@executable_path/Frameworks", 611 | "@loader_path/Frameworks", 612 | ); 613 | PRODUCT_BUNDLE_IDENTIFIER = "com.yakivmospan.worspace-setup.sample.sampleUITests"; 614 | PRODUCT_NAME = "$(TARGET_NAME)"; 615 | SWIFT_VERSION = 5.0; 616 | TARGETED_DEVICE_FAMILY = "1,2"; 617 | TEST_TARGET_NAME = sample; 618 | }; 619 | name = Release; 620 | }; 621 | /* End XCBuildConfiguration section */ 622 | 623 | /* Begin XCConfigurationList section */ 624 | 5568D2FC2327D56000BBE15E /* Build configuration list for PBXProject "sample" */ = { 625 | isa = XCConfigurationList; 626 | buildConfigurations = ( 627 | 5568D3272327D56100BBE15E /* Debug */, 628 | 5568D3282327D56100BBE15E /* Release */, 629 | ); 630 | defaultConfigurationIsVisible = 0; 631 | defaultConfigurationName = Release; 632 | }; 633 | 5568D3292327D56100BBE15E /* Build configuration list for PBXNativeTarget "sample" */ = { 634 | isa = XCConfigurationList; 635 | buildConfigurations = ( 636 | 5568D32A2327D56100BBE15E /* Debug */, 637 | 5568D32B2327D56100BBE15E /* Release */, 638 | ); 639 | defaultConfigurationIsVisible = 0; 640 | defaultConfigurationName = Release; 641 | }; 642 | 5568D32C2327D56100BBE15E /* Build configuration list for PBXNativeTarget "sampleTests" */ = { 643 | isa = XCConfigurationList; 644 | buildConfigurations = ( 645 | 5568D32D2327D56100BBE15E /* Debug */, 646 | 5568D32E2327D56100BBE15E /* Release */, 647 | ); 648 | defaultConfigurationIsVisible = 0; 649 | defaultConfigurationName = Release; 650 | }; 651 | 5568D32F2327D56100BBE15E /* Build configuration list for PBXNativeTarget "sampleUITests" */ = { 652 | isa = XCConfigurationList; 653 | buildConfigurations = ( 654 | 5568D3302327D56100BBE15E /* Debug */, 655 | 5568D3312327D56100BBE15E /* Release */, 656 | ); 657 | defaultConfigurationIsVisible = 0; 658 | defaultConfigurationName = Release; 659 | }; 660 | /* End XCConfigurationList section */ 661 | }; 662 | rootObject = 5568D2F92327D56000BBE15E /* Project object */; 663 | } 664 | -------------------------------------------------------------------------------- /sample/sample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /sample/sample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /sample/sample.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /sample/sample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /sample/sample.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sample/sample/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.swift 3 | // sample 4 | // 5 | // Created by Yakiv Mospan on 9/10/19. 6 | // Copyright © 2019 Yakiv Mospan. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | @UIApplicationMain 12 | class AppDelegate: UIResponder, UIApplicationDelegate { 13 | 14 | var window: UIWindow? 15 | 16 | 17 | func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { 18 | // Override point for customization after application launch. 19 | return true 20 | } 21 | 22 | func applicationWillResignActive(_ application: UIApplication) { 23 | // 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. 24 | // Use this method to pause ongoing tasks, disable timers, and invalidate graphics rendering callbacks. Games should use this method to pause the game. 25 | } 26 | 27 | func applicationDidEnterBackground(_ application: UIApplication) { 28 | // 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. 29 | // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. 30 | } 31 | 32 | func applicationWillEnterForeground(_ application: UIApplication) { 33 | // Called as part of the transition from the background to the active state; here you can undo many of the changes made on entering the background. 34 | } 35 | 36 | func applicationDidBecomeActive(_ application: UIApplication) { 37 | // 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. 38 | } 39 | 40 | func applicationWillTerminate(_ application: UIApplication) { 41 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. 42 | } 43 | 44 | 45 | } 46 | 47 | -------------------------------------------------------------------------------- /sample/sample/Assets.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 | } -------------------------------------------------------------------------------- /sample/sample/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /sample/sample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /sample/sample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /sample/sample/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | APPL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleVersion 20 | 1 21 | LSRequiresIPhoneOS 22 | 23 | UILaunchStoryboardName 24 | LaunchScreen 25 | UIMainStoryboardFile 26 | Main 27 | UIRequiredDeviceCapabilities 28 | 29 | armv7 30 | 31 | UISupportedInterfaceOrientations 32 | 33 | UIInterfaceOrientationPortrait 34 | UIInterfaceOrientationLandscapeLeft 35 | UIInterfaceOrientationLandscapeRight 36 | 37 | UISupportedInterfaceOrientations~ipad 38 | 39 | UIInterfaceOrientationPortrait 40 | UIInterfaceOrientationPortraitUpsideDown 41 | UIInterfaceOrientationLandscapeLeft 42 | UIInterfaceOrientationLandscapeRight 43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /sample/sample/ViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.swift 3 | // sample 4 | // 5 | // Created by Yakiv Mospan on 9/10/19. 6 | // Copyright © 2019 Yakiv Mospan. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | import sdk 11 | import Mixpanel 12 | import SSZipArchive 13 | 14 | class ViewController: UIViewController { 15 | 16 | override func viewDidLoad() { 17 | super.viewDidLoad() 18 | 19 | runTest() 20 | runTest6() 21 | // Do any additional setup after loading the view. 22 | } 23 | 24 | 25 | } 26 | 27 | -------------------------------------------------------------------------------- /sample/sampleTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleVersion 20 | 1 21 | 22 | 23 | -------------------------------------------------------------------------------- /sample/sampleTests/sampleTests.swift: -------------------------------------------------------------------------------- 1 | // 2 | // sampleTests.swift 3 | // sampleTests 4 | // 5 | // Created by Yakiv Mospan on 9/10/19. 6 | // Copyright © 2019 Yakiv Mospan. All rights reserved. 7 | // 8 | 9 | import XCTest 10 | @testable import sample 11 | 12 | class sampleTests: XCTestCase { 13 | 14 | override func setUp() { 15 | // Put setup code here. This method is called before the invocation of each test method in the class. 16 | } 17 | 18 | override func tearDown() { 19 | // Put teardown code here. This method is called after the invocation of each test method in the class. 20 | } 21 | 22 | func testExample() { 23 | // This is an example of a functional test case. 24 | // Use XCTAssert and related functions to verify your tests produce the correct results. 25 | } 26 | 27 | func testPerformanceExample() { 28 | // This is an example of a performance test case. 29 | self.measure { 30 | // Put the code you want to measure the time of here. 31 | } 32 | } 33 | 34 | } 35 | -------------------------------------------------------------------------------- /sample/sampleUITests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleVersion 20 | 1 21 | 22 | 23 | -------------------------------------------------------------------------------- /sample/sampleUITests/sampleUITests.swift: -------------------------------------------------------------------------------- 1 | // 2 | // sampleUITests.swift 3 | // sampleUITests 4 | // 5 | // Created by Yakiv Mospan on 9/10/19. 6 | // Copyright © 2019 Yakiv Mospan. All rights reserved. 7 | // 8 | 9 | import XCTest 10 | 11 | class sampleUITests: XCTestCase { 12 | 13 | override func setUp() { 14 | // Put setup code here. This method is called before the invocation of each test method in the class. 15 | 16 | // In UI tests it is usually best to stop immediately when a failure occurs. 17 | continueAfterFailure = false 18 | 19 | // UI tests must launch the application that they test. Doing this in setup will make sure it happens for each test method. 20 | XCUIApplication().launch() 21 | 22 | // In UI tests it’s important to set the initial state - such as interface orientation - required for your tests before they run. The setUp method is a good place to do this. 23 | } 24 | 25 | override func tearDown() { 26 | // Put teardown code here. This method is called after the invocation of each test method in the class. 27 | } 28 | 29 | func testExample() { 30 | // Use recording to get started writing UI tests. 31 | // Use XCTAssert and related functions to verify your tests produce the correct results. 32 | } 33 | 34 | } 35 | -------------------------------------------------------------------------------- /sdk/sdk.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod spec lint sdk.podspec' to ensure this is a 3 | # valid spec and to remove all comments including this before submitting the spec. 4 | # 5 | # To learn more about Podspec attributes see https://guides.cocoapods.org/syntax/podspec.html 6 | # To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/ 7 | # 8 | 9 | Pod::Spec.new do |spec| 10 | 11 | # ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― # 12 | # 13 | # These will help people to find your library, and whilst it 14 | # can feel like a chore to fill in it's definitely to your advantage. The 15 | # summary should be tweet-length, and the description more in depth. 16 | # 17 | 18 | spec.name = "sdk" 19 | spec.version = "0.0.1" 20 | spec.summary = "It is very useful test SDK." 21 | 22 | # This description is used to generate tags and improve search results. 23 | # * Think: What does it do? Why did you write it? What is the focus? 24 | # * Try to keep it short, snappy and to the point. 25 | # * Write the description between the DESC delimiters below. 26 | # * Finally, don't worry about the indent, CocoaPods strips it! 27 | spec.description = <<-DESC 28 | DESC 29 | 30 | spec.homepage = "http://test/SDK" 31 | # spec.screenshots = "www.example.com/screenshots_1.gif", "www.example.com/screenshots_2.gif" 32 | 33 | 34 | # ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― # 35 | # 36 | # Licensing your code is important. See https://choosealicense.com for more info. 37 | # CocoaPods will detect a license file if there is a named LICENSE* 38 | # Popular ones are 'MIT', 'BSD' and 'Apache License, Version 2.0'. 39 | # 40 | 41 | spec.license = "MIT (example)" 42 | # spec.license = { :type => "MIT", :file => "FILE_LICENSE" } 43 | 44 | 45 | # ――― Author Metadata ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― # 46 | # 47 | # Specify the authors of the library, with email addresses. Email addresses 48 | # of the authors are extracted from the SCM log. E.g. $ git log. CocoaPods also 49 | # accepts just a name if you'd rather not provide an email address. 50 | # 51 | # Specify a social_media_url where others can refer to, for example a twitter 52 | # profile URL. 53 | # 54 | 55 | spec.author = { "Yakiv Mospan" => "yakiv.mospan@gmail.com" } 56 | # Or just: spec.author = "Yakiv Mospan" 57 | # spec.authors = { "Yakiv Mospan" => "yakiv.mospan@gmail.com" } 58 | # spec.social_media_url = "https://twitter.com/Yakiv Mospan" 59 | 60 | # ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― # 61 | # 62 | # If this Pod runs only on iOS or OS X, then specify the platform and 63 | # the deployment target. You can optionally include the target after the platform. 64 | # 65 | 66 | # spec.platform = :ios 67 | # spec.platform = :ios, "5.0" 68 | 69 | # When using multiple platforms 70 | # spec.ios.deployment_target = "5.0" 71 | # spec.osx.deployment_target = "10.7" 72 | # spec.watchos.deployment_target = "2.0" 73 | # spec.tvos.deployment_target = "9.0" 74 | 75 | 76 | # ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― # 77 | # 78 | # Specify the location from where the source should be retrieved. 79 | # Supports git, hg, bzr, svn and HTTP. 80 | # 81 | 82 | spec.source = { :git => "http://test/SDK.git" } 83 | 84 | 85 | # ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― # 86 | # 87 | # CocoaPods is smart about how it includes source code. For source files 88 | # giving a folder will include any swift, h, m, mm, c & cpp files. 89 | # For header files it will include any header in the folder. 90 | # Not including the public_header_files will make all headers public. 91 | # 92 | 93 | spec.source_files = "sdk" 94 | spec.exclude_files = "Classes/Exclude" 95 | 96 | # spec.public_header_files = "Classes/**/*.h" 97 | 98 | 99 | # ――― Resources ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― # 100 | # 101 | # A list of resources included with the Pod. These are copied into the 102 | # target bundle with a build phase script. Anything else will be cleaned. 103 | # You can preserve files from being cleaned, please don't preserve 104 | # non-essential files like tests, examples and documentation. 105 | # 106 | 107 | # spec.resource = "icon.png" 108 | # spec.resources = "Resources/*.png" 109 | 110 | # spec.preserve_paths = "FilesToSave", "MoreFilesToSave" 111 | 112 | 113 | # ――― Project Linking ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― # 114 | # 115 | # Link your library with frameworks, or libraries. Libraries do not include 116 | # the lib prefix of their name. 117 | # 118 | 119 | spec.framework = "Foundation" 120 | # spec.frameworks = "SomeFramework", "AnotherFramework" 121 | 122 | # spec.library = "iconv" 123 | # spec.libraries = "iconv", "xml2" 124 | 125 | 126 | # ――― Project Settings ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― # 127 | # 128 | # If your library depends on compiler flags you can set them in the xcconfig hash 129 | # where they will only apply to your library. If you depend on other Podspecs 130 | # you can include multiple dependencies to ensure it works. 131 | 132 | # spec.requires_arc = true 133 | 134 | # spec.xcconfig = { "HEADER_SEARCH_PATHS" => "$(SDKROOT)/usr/include/libxml2" } 135 | spec.dependency "Mixpanel-swift" 136 | 137 | 138 | end 139 | -------------------------------------------------------------------------------- /sdk/sdk.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 50; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 34152A7E9E8B837FE00972ED /* Pods_sdk.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 20FAC2F7C2701A9F7150271D /* Pods_sdk.framework */; }; 11 | 5568D2E62327D47600BBE15E /* sdk.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5568D2DC2327D47600BBE15E /* sdk.framework */; }; 12 | 5568D2EB2327D47600BBE15E /* sdkTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5568D2EA2327D47600BBE15E /* sdkTests.swift */; }; 13 | 5568D2ED2327D47600BBE15E /* sdk.h in Headers */ = {isa = PBXBuildFile; fileRef = 5568D2DF2327D47600BBE15E /* sdk.h */; settings = {ATTRIBUTES = (Public, ); }; }; 14 | 5568D2F72327D4E600BBE15E /* SdkFuncs.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5568D2F62327D4E500BBE15E /* SdkFuncs.swift */; }; 15 | /* End PBXBuildFile section */ 16 | 17 | /* Begin PBXContainerItemProxy section */ 18 | 5568D2E72327D47600BBE15E /* PBXContainerItemProxy */ = { 19 | isa = PBXContainerItemProxy; 20 | containerPortal = 5568D2D32327D47600BBE15E /* Project object */; 21 | proxyType = 1; 22 | remoteGlobalIDString = 5568D2DB2327D47600BBE15E; 23 | remoteInfo = sdk; 24 | }; 25 | /* End PBXContainerItemProxy section */ 26 | 27 | /* Begin PBXFileReference section */ 28 | 127BD69953E2D7A5A28EC064 /* Pods-sdk.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-sdk.release.xcconfig"; path = "Target Support Files/Pods-sdk/Pods-sdk.release.xcconfig"; sourceTree = ""; }; 29 | 20FAC2F7C2701A9F7150271D /* Pods_sdk.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_sdk.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 30 | 5568D2DC2327D47600BBE15E /* sdk.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = sdk.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 31 | 5568D2DF2327D47600BBE15E /* sdk.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = sdk.h; sourceTree = ""; }; 32 | 5568D2E02327D47600BBE15E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 33 | 5568D2E52327D47600BBE15E /* sdkTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = sdkTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 34 | 5568D2EA2327D47600BBE15E /* sdkTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = sdkTests.swift; sourceTree = ""; }; 35 | 5568D2EC2327D47600BBE15E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 36 | 5568D2F62327D4E500BBE15E /* SdkFuncs.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = SdkFuncs.swift; path = "../../../workspace-test/Sdk/Sdk/SdkFuncs.swift"; sourceTree = ""; }; 37 | 9D78722C32361D6F2CB2FC50 /* Pods-sdk.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-sdk.debug.xcconfig"; path = "Target Support Files/Pods-sdk/Pods-sdk.debug.xcconfig"; sourceTree = ""; }; 38 | /* End PBXFileReference section */ 39 | 40 | /* Begin PBXFrameworksBuildPhase section */ 41 | 5568D2D92327D47600BBE15E /* Frameworks */ = { 42 | isa = PBXFrameworksBuildPhase; 43 | buildActionMask = 2147483647; 44 | files = ( 45 | 34152A7E9E8B837FE00972ED /* Pods_sdk.framework in Frameworks */, 46 | ); 47 | runOnlyForDeploymentPostprocessing = 0; 48 | }; 49 | 5568D2E22327D47600BBE15E /* Frameworks */ = { 50 | isa = PBXFrameworksBuildPhase; 51 | buildActionMask = 2147483647; 52 | files = ( 53 | 5568D2E62327D47600BBE15E /* sdk.framework in Frameworks */, 54 | ); 55 | runOnlyForDeploymentPostprocessing = 0; 56 | }; 57 | /* End PBXFrameworksBuildPhase section */ 58 | 59 | /* Begin PBXGroup section */ 60 | 048F252FA88D8FC4C2B16112 /* Pods */ = { 61 | isa = PBXGroup; 62 | children = ( 63 | 9D78722C32361D6F2CB2FC50 /* Pods-sdk.debug.xcconfig */, 64 | 127BD69953E2D7A5A28EC064 /* Pods-sdk.release.xcconfig */, 65 | ); 66 | name = Pods; 67 | path = ../sample/Pods; 68 | sourceTree = ""; 69 | }; 70 | 052F82963622D4D70711DD20 /* Frameworks */ = { 71 | isa = PBXGroup; 72 | children = ( 73 | 20FAC2F7C2701A9F7150271D /* Pods_sdk.framework */, 74 | ); 75 | name = Frameworks; 76 | sourceTree = ""; 77 | }; 78 | 5568D2D22327D47600BBE15E = { 79 | isa = PBXGroup; 80 | children = ( 81 | 5568D2DE2327D47600BBE15E /* sdk */, 82 | 5568D2E92327D47600BBE15E /* sdkTests */, 83 | 5568D2DD2327D47600BBE15E /* Products */, 84 | 048F252FA88D8FC4C2B16112 /* Pods */, 85 | 052F82963622D4D70711DD20 /* Frameworks */, 86 | ); 87 | sourceTree = ""; 88 | }; 89 | 5568D2DD2327D47600BBE15E /* Products */ = { 90 | isa = PBXGroup; 91 | children = ( 92 | 5568D2DC2327D47600BBE15E /* sdk.framework */, 93 | 5568D2E52327D47600BBE15E /* sdkTests.xctest */, 94 | ); 95 | name = Products; 96 | sourceTree = ""; 97 | }; 98 | 5568D2DE2327D47600BBE15E /* sdk */ = { 99 | isa = PBXGroup; 100 | children = ( 101 | 5568D2F62327D4E500BBE15E /* SdkFuncs.swift */, 102 | 5568D2DF2327D47600BBE15E /* sdk.h */, 103 | 5568D2E02327D47600BBE15E /* Info.plist */, 104 | ); 105 | path = sdk; 106 | sourceTree = ""; 107 | }; 108 | 5568D2E92327D47600BBE15E /* sdkTests */ = { 109 | isa = PBXGroup; 110 | children = ( 111 | 5568D2EA2327D47600BBE15E /* sdkTests.swift */, 112 | 5568D2EC2327D47600BBE15E /* Info.plist */, 113 | ); 114 | path = sdkTests; 115 | sourceTree = ""; 116 | }; 117 | /* End PBXGroup section */ 118 | 119 | /* Begin PBXHeadersBuildPhase section */ 120 | 5568D2D72327D47600BBE15E /* Headers */ = { 121 | isa = PBXHeadersBuildPhase; 122 | buildActionMask = 2147483647; 123 | files = ( 124 | 5568D2ED2327D47600BBE15E /* sdk.h in Headers */, 125 | ); 126 | runOnlyForDeploymentPostprocessing = 0; 127 | }; 128 | /* End PBXHeadersBuildPhase section */ 129 | 130 | /* Begin PBXNativeTarget section */ 131 | 5568D2DB2327D47600BBE15E /* sdk */ = { 132 | isa = PBXNativeTarget; 133 | buildConfigurationList = 5568D2F02327D47600BBE15E /* Build configuration list for PBXNativeTarget "sdk" */; 134 | buildPhases = ( 135 | C15881ED4A1D9B79C180FC81 /* [CP] Check Pods Manifest.lock */, 136 | 5568D2D72327D47600BBE15E /* Headers */, 137 | 5568D2D82327D47600BBE15E /* Sources */, 138 | 5568D2D92327D47600BBE15E /* Frameworks */, 139 | 5568D2DA2327D47600BBE15E /* Resources */, 140 | ); 141 | buildRules = ( 142 | ); 143 | dependencies = ( 144 | ); 145 | name = sdk; 146 | productName = sdk; 147 | productReference = 5568D2DC2327D47600BBE15E /* sdk.framework */; 148 | productType = "com.apple.product-type.framework"; 149 | }; 150 | 5568D2E42327D47600BBE15E /* sdkTests */ = { 151 | isa = PBXNativeTarget; 152 | buildConfigurationList = 5568D2F32327D47600BBE15E /* Build configuration list for PBXNativeTarget "sdkTests" */; 153 | buildPhases = ( 154 | 5568D2E12327D47600BBE15E /* Sources */, 155 | 5568D2E22327D47600BBE15E /* Frameworks */, 156 | 5568D2E32327D47600BBE15E /* Resources */, 157 | ); 158 | buildRules = ( 159 | ); 160 | dependencies = ( 161 | 5568D2E82327D47600BBE15E /* PBXTargetDependency */, 162 | ); 163 | name = sdkTests; 164 | productName = sdkTests; 165 | productReference = 5568D2E52327D47600BBE15E /* sdkTests.xctest */; 166 | productType = "com.apple.product-type.bundle.unit-test"; 167 | }; 168 | /* End PBXNativeTarget section */ 169 | 170 | /* Begin PBXProject section */ 171 | 5568D2D32327D47600BBE15E /* Project object */ = { 172 | isa = PBXProject; 173 | attributes = { 174 | LastSwiftUpdateCheck = 1020; 175 | LastUpgradeCheck = 1020; 176 | ORGANIZATIONNAME = "Yakiv Mospan"; 177 | TargetAttributes = { 178 | 5568D2DB2327D47600BBE15E = { 179 | CreatedOnToolsVersion = 10.2.1; 180 | LastSwiftMigration = 1020; 181 | }; 182 | 5568D2E42327D47600BBE15E = { 183 | CreatedOnToolsVersion = 10.2.1; 184 | }; 185 | }; 186 | }; 187 | buildConfigurationList = 5568D2D62327D47600BBE15E /* Build configuration list for PBXProject "sdk" */; 188 | compatibilityVersion = "Xcode 9.3"; 189 | developmentRegion = en; 190 | hasScannedForEncodings = 0; 191 | knownRegions = ( 192 | en, 193 | ); 194 | mainGroup = 5568D2D22327D47600BBE15E; 195 | productRefGroup = 5568D2DD2327D47600BBE15E /* Products */; 196 | projectDirPath = ""; 197 | projectRoot = ""; 198 | targets = ( 199 | 5568D2DB2327D47600BBE15E /* sdk */, 200 | 5568D2E42327D47600BBE15E /* sdkTests */, 201 | ); 202 | }; 203 | /* End PBXProject section */ 204 | 205 | /* Begin PBXResourcesBuildPhase section */ 206 | 5568D2DA2327D47600BBE15E /* Resources */ = { 207 | isa = PBXResourcesBuildPhase; 208 | buildActionMask = 2147483647; 209 | files = ( 210 | ); 211 | runOnlyForDeploymentPostprocessing = 0; 212 | }; 213 | 5568D2E32327D47600BBE15E /* Resources */ = { 214 | isa = PBXResourcesBuildPhase; 215 | buildActionMask = 2147483647; 216 | files = ( 217 | ); 218 | runOnlyForDeploymentPostprocessing = 0; 219 | }; 220 | /* End PBXResourcesBuildPhase section */ 221 | 222 | /* Begin PBXShellScriptBuildPhase section */ 223 | C15881ED4A1D9B79C180FC81 /* [CP] Check Pods Manifest.lock */ = { 224 | isa = PBXShellScriptBuildPhase; 225 | buildActionMask = 2147483647; 226 | files = ( 227 | ); 228 | inputFileListPaths = ( 229 | ); 230 | inputPaths = ( 231 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock", 232 | "${PODS_ROOT}/Manifest.lock", 233 | ); 234 | name = "[CP] Check Pods Manifest.lock"; 235 | outputFileListPaths = ( 236 | ); 237 | outputPaths = ( 238 | "$(DERIVED_FILE_DIR)/Pods-sdk-checkManifestLockResult.txt", 239 | ); 240 | runOnlyForDeploymentPostprocessing = 0; 241 | shellPath = /bin/sh; 242 | 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"; 243 | showEnvVarsInLog = 0; 244 | }; 245 | /* End PBXShellScriptBuildPhase section */ 246 | 247 | /* Begin PBXSourcesBuildPhase section */ 248 | 5568D2D82327D47600BBE15E /* Sources */ = { 249 | isa = PBXSourcesBuildPhase; 250 | buildActionMask = 2147483647; 251 | files = ( 252 | 5568D2F72327D4E600BBE15E /* SdkFuncs.swift in Sources */, 253 | ); 254 | runOnlyForDeploymentPostprocessing = 0; 255 | }; 256 | 5568D2E12327D47600BBE15E /* Sources */ = { 257 | isa = PBXSourcesBuildPhase; 258 | buildActionMask = 2147483647; 259 | files = ( 260 | 5568D2EB2327D47600BBE15E /* sdkTests.swift in Sources */, 261 | ); 262 | runOnlyForDeploymentPostprocessing = 0; 263 | }; 264 | /* End PBXSourcesBuildPhase section */ 265 | 266 | /* Begin PBXTargetDependency section */ 267 | 5568D2E82327D47600BBE15E /* PBXTargetDependency */ = { 268 | isa = PBXTargetDependency; 269 | target = 5568D2DB2327D47600BBE15E /* sdk */; 270 | targetProxy = 5568D2E72327D47600BBE15E /* PBXContainerItemProxy */; 271 | }; 272 | /* End PBXTargetDependency section */ 273 | 274 | /* Begin XCBuildConfiguration section */ 275 | 5568D2EE2327D47600BBE15E /* Debug */ = { 276 | isa = XCBuildConfiguration; 277 | buildSettings = { 278 | ALWAYS_SEARCH_USER_PATHS = NO; 279 | CLANG_ANALYZER_NONNULL = YES; 280 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 281 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 282 | CLANG_CXX_LIBRARY = "libc++"; 283 | CLANG_ENABLE_MODULES = YES; 284 | CLANG_ENABLE_OBJC_ARC = YES; 285 | CLANG_ENABLE_OBJC_WEAK = YES; 286 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 287 | CLANG_WARN_BOOL_CONVERSION = YES; 288 | CLANG_WARN_COMMA = YES; 289 | CLANG_WARN_CONSTANT_CONVERSION = YES; 290 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 291 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 292 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 293 | CLANG_WARN_EMPTY_BODY = YES; 294 | CLANG_WARN_ENUM_CONVERSION = YES; 295 | CLANG_WARN_INFINITE_RECURSION = YES; 296 | CLANG_WARN_INT_CONVERSION = YES; 297 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 298 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 299 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 300 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 301 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 302 | CLANG_WARN_STRICT_PROTOTYPES = YES; 303 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 304 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 305 | CLANG_WARN_UNREACHABLE_CODE = YES; 306 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 307 | CODE_SIGN_IDENTITY = "iPhone Developer"; 308 | COPY_PHASE_STRIP = NO; 309 | CURRENT_PROJECT_VERSION = 1; 310 | DEBUG_INFORMATION_FORMAT = dwarf; 311 | ENABLE_STRICT_OBJC_MSGSEND = YES; 312 | ENABLE_TESTABILITY = YES; 313 | GCC_C_LANGUAGE_STANDARD = gnu11; 314 | GCC_DYNAMIC_NO_PIC = NO; 315 | GCC_NO_COMMON_BLOCKS = YES; 316 | GCC_OPTIMIZATION_LEVEL = 0; 317 | GCC_PREPROCESSOR_DEFINITIONS = ( 318 | "DEBUG=1", 319 | "$(inherited)", 320 | ); 321 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 322 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 323 | GCC_WARN_UNDECLARED_SELECTOR = YES; 324 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 325 | GCC_WARN_UNUSED_FUNCTION = YES; 326 | GCC_WARN_UNUSED_VARIABLE = YES; 327 | IPHONEOS_DEPLOYMENT_TARGET = 12.2; 328 | MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; 329 | MTL_FAST_MATH = YES; 330 | ONLY_ACTIVE_ARCH = YES; 331 | SDKROOT = iphoneos; 332 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; 333 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 334 | VERSIONING_SYSTEM = "apple-generic"; 335 | VERSION_INFO_PREFIX = ""; 336 | }; 337 | name = Debug; 338 | }; 339 | 5568D2EF2327D47600BBE15E /* Release */ = { 340 | isa = XCBuildConfiguration; 341 | buildSettings = { 342 | ALWAYS_SEARCH_USER_PATHS = NO; 343 | CLANG_ANALYZER_NONNULL = YES; 344 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 345 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 346 | CLANG_CXX_LIBRARY = "libc++"; 347 | CLANG_ENABLE_MODULES = YES; 348 | CLANG_ENABLE_OBJC_ARC = YES; 349 | CLANG_ENABLE_OBJC_WEAK = YES; 350 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 351 | CLANG_WARN_BOOL_CONVERSION = YES; 352 | CLANG_WARN_COMMA = YES; 353 | CLANG_WARN_CONSTANT_CONVERSION = YES; 354 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 355 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 356 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 357 | CLANG_WARN_EMPTY_BODY = YES; 358 | CLANG_WARN_ENUM_CONVERSION = YES; 359 | CLANG_WARN_INFINITE_RECURSION = YES; 360 | CLANG_WARN_INT_CONVERSION = YES; 361 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 362 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 363 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 364 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 365 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 366 | CLANG_WARN_STRICT_PROTOTYPES = YES; 367 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 368 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 369 | CLANG_WARN_UNREACHABLE_CODE = YES; 370 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 371 | CODE_SIGN_IDENTITY = "iPhone Developer"; 372 | COPY_PHASE_STRIP = NO; 373 | CURRENT_PROJECT_VERSION = 1; 374 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 375 | ENABLE_NS_ASSERTIONS = NO; 376 | ENABLE_STRICT_OBJC_MSGSEND = YES; 377 | GCC_C_LANGUAGE_STANDARD = gnu11; 378 | GCC_NO_COMMON_BLOCKS = YES; 379 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 380 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 381 | GCC_WARN_UNDECLARED_SELECTOR = YES; 382 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 383 | GCC_WARN_UNUSED_FUNCTION = YES; 384 | GCC_WARN_UNUSED_VARIABLE = YES; 385 | IPHONEOS_DEPLOYMENT_TARGET = 12.2; 386 | MTL_ENABLE_DEBUG_INFO = NO; 387 | MTL_FAST_MATH = YES; 388 | SDKROOT = iphoneos; 389 | SWIFT_COMPILATION_MODE = wholemodule; 390 | SWIFT_OPTIMIZATION_LEVEL = "-O"; 391 | VALIDATE_PRODUCT = YES; 392 | VERSIONING_SYSTEM = "apple-generic"; 393 | VERSION_INFO_PREFIX = ""; 394 | }; 395 | name = Release; 396 | }; 397 | 5568D2F12327D47600BBE15E /* Debug */ = { 398 | isa = XCBuildConfiguration; 399 | baseConfigurationReference = 9D78722C32361D6F2CB2FC50 /* Pods-sdk.debug.xcconfig */; 400 | buildSettings = { 401 | CLANG_ENABLE_MODULES = YES; 402 | CODE_SIGN_IDENTITY = ""; 403 | CODE_SIGN_STYLE = Automatic; 404 | DEFINES_MODULE = YES; 405 | DYLIB_COMPATIBILITY_VERSION = 1; 406 | DYLIB_CURRENT_VERSION = 1; 407 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 408 | INFOPLIST_FILE = sdk/Info.plist; 409 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 410 | LD_RUNPATH_SEARCH_PATHS = ( 411 | "$(inherited)", 412 | "@executable_path/Frameworks", 413 | "@loader_path/Frameworks", 414 | ); 415 | PRODUCT_BUNDLE_IDENTIFIER = "com.yakivmospan.worspace-setup.sdk.sdk"; 416 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 417 | SKIP_INSTALL = YES; 418 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 419 | SWIFT_VERSION = 5.0; 420 | TARGETED_DEVICE_FAMILY = "1,2"; 421 | }; 422 | name = Debug; 423 | }; 424 | 5568D2F22327D47600BBE15E /* Release */ = { 425 | isa = XCBuildConfiguration; 426 | baseConfigurationReference = 127BD69953E2D7A5A28EC064 /* Pods-sdk.release.xcconfig */; 427 | buildSettings = { 428 | CLANG_ENABLE_MODULES = YES; 429 | CODE_SIGN_IDENTITY = ""; 430 | CODE_SIGN_STYLE = Automatic; 431 | DEFINES_MODULE = YES; 432 | DYLIB_COMPATIBILITY_VERSION = 1; 433 | DYLIB_CURRENT_VERSION = 1; 434 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 435 | INFOPLIST_FILE = sdk/Info.plist; 436 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 437 | LD_RUNPATH_SEARCH_PATHS = ( 438 | "$(inherited)", 439 | "@executable_path/Frameworks", 440 | "@loader_path/Frameworks", 441 | ); 442 | PRODUCT_BUNDLE_IDENTIFIER = "com.yakivmospan.worspace-setup.sdk.sdk"; 443 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 444 | SKIP_INSTALL = YES; 445 | SWIFT_VERSION = 5.0; 446 | TARGETED_DEVICE_FAMILY = "1,2"; 447 | }; 448 | name = Release; 449 | }; 450 | 5568D2F42327D47600BBE15E /* Debug */ = { 451 | isa = XCBuildConfiguration; 452 | buildSettings = { 453 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; 454 | CODE_SIGN_STYLE = Automatic; 455 | INFOPLIST_FILE = sdkTests/Info.plist; 456 | LD_RUNPATH_SEARCH_PATHS = ( 457 | "$(inherited)", 458 | "@executable_path/Frameworks", 459 | "@loader_path/Frameworks", 460 | ); 461 | PRODUCT_BUNDLE_IDENTIFIER = "com.yakivmospan.worspace-setup.sdk.sdkTests"; 462 | PRODUCT_NAME = "$(TARGET_NAME)"; 463 | SWIFT_VERSION = 5.0; 464 | TARGETED_DEVICE_FAMILY = "1,2"; 465 | }; 466 | name = Debug; 467 | }; 468 | 5568D2F52327D47600BBE15E /* Release */ = { 469 | isa = XCBuildConfiguration; 470 | buildSettings = { 471 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; 472 | CODE_SIGN_STYLE = Automatic; 473 | INFOPLIST_FILE = sdkTests/Info.plist; 474 | LD_RUNPATH_SEARCH_PATHS = ( 475 | "$(inherited)", 476 | "@executable_path/Frameworks", 477 | "@loader_path/Frameworks", 478 | ); 479 | PRODUCT_BUNDLE_IDENTIFIER = "com.yakivmospan.worspace-setup.sdk.sdkTests"; 480 | PRODUCT_NAME = "$(TARGET_NAME)"; 481 | SWIFT_VERSION = 5.0; 482 | TARGETED_DEVICE_FAMILY = "1,2"; 483 | }; 484 | name = Release; 485 | }; 486 | /* End XCBuildConfiguration section */ 487 | 488 | /* Begin XCConfigurationList section */ 489 | 5568D2D62327D47600BBE15E /* Build configuration list for PBXProject "sdk" */ = { 490 | isa = XCConfigurationList; 491 | buildConfigurations = ( 492 | 5568D2EE2327D47600BBE15E /* Debug */, 493 | 5568D2EF2327D47600BBE15E /* Release */, 494 | ); 495 | defaultConfigurationIsVisible = 0; 496 | defaultConfigurationName = Release; 497 | }; 498 | 5568D2F02327D47600BBE15E /* Build configuration list for PBXNativeTarget "sdk" */ = { 499 | isa = XCConfigurationList; 500 | buildConfigurations = ( 501 | 5568D2F12327D47600BBE15E /* Debug */, 502 | 5568D2F22327D47600BBE15E /* Release */, 503 | ); 504 | defaultConfigurationIsVisible = 0; 505 | defaultConfigurationName = Release; 506 | }; 507 | 5568D2F32327D47600BBE15E /* Build configuration list for PBXNativeTarget "sdkTests" */ = { 508 | isa = XCConfigurationList; 509 | buildConfigurations = ( 510 | 5568D2F42327D47600BBE15E /* Debug */, 511 | 5568D2F52327D47600BBE15E /* Release */, 512 | ); 513 | defaultConfigurationIsVisible = 0; 514 | defaultConfigurationName = Release; 515 | }; 516 | /* End XCConfigurationList section */ 517 | }; 518 | rootObject = 5568D2D32327D47600BBE15E /* Project object */; 519 | } 520 | -------------------------------------------------------------------------------- /sdk/sdk.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /sdk/sdk.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /sdk/sdk/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleVersion 20 | $(CURRENT_PROJECT_VERSION) 21 | 22 | 23 | -------------------------------------------------------------------------------- /sdk/sdk/sdk.h: -------------------------------------------------------------------------------- 1 | // 2 | // sdk.h 3 | // sdk 4 | // 5 | // Created by Yakiv Mospan on 9/10/19. 6 | // Copyright © 2019 Yakiv Mospan. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | //! Project version number for sdk. 12 | FOUNDATION_EXPORT double sdkVersionNumber; 13 | 14 | //! Project version string for sdk. 15 | FOUNDATION_EXPORT const unsigned char sdkVersionString[]; 16 | 17 | // In this header, you should import all the public headers of your framework using statements like #import 18 | 19 | 20 | -------------------------------------------------------------------------------- /sdk/sdkTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleVersion 20 | 1 21 | 22 | 23 | -------------------------------------------------------------------------------- /sdk/sdkTests/sdkTests.swift: -------------------------------------------------------------------------------- 1 | // 2 | // sdkTests.swift 3 | // sdkTests 4 | // 5 | // Created by Yakiv Mospan on 9/10/19. 6 | // Copyright © 2019 Yakiv Mospan. All rights reserved. 7 | // 8 | 9 | import XCTest 10 | @testable import sdk 11 | 12 | class sdkTests: XCTestCase { 13 | 14 | override func setUp() { 15 | // Put setup code here. This method is called before the invocation of each test method in the class. 16 | } 17 | 18 | override func tearDown() { 19 | // Put teardown code here. This method is called after the invocation of each test method in the class. 20 | } 21 | 22 | func testExample() { 23 | // This is an example of a functional test case. 24 | // Use XCTAssert and related functions to verify your tests produce the correct results. 25 | } 26 | 27 | func testPerformanceExample() { 28 | // This is an example of a performance test case. 29 | self.measure { 30 | // Put the code you want to measure the time of here. 31 | } 32 | } 33 | 34 | } 35 | --------------------------------------------------------------------------------