├── .gitignore ├── Application ├── Application.xcodeproj │ └── project.pbxproj ├── Application.xcworkspace │ └── contents.xcworkspacedata ├── Application │ ├── AppDelegate.swift │ ├── AppDummy.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift ├── Podfile └── Podfile.lock ├── Core ├── Core.xcodeproj │ └── project.pbxproj ├── Core │ ├── Core.h │ ├── CoreDummy.swift │ └── Info.plist └── CorePlayground.playground │ ├── Contents.swift │ └── contents.xcplayground ├── FeatureX ├── FeatureX.xcodeproj │ └── project.pbxproj ├── FeatureX │ ├── FeatureX.h │ ├── FeatureXDummy.swift │ └── Info.plist └── FeatureXPlayground.playground │ ├── Contents.swift │ └── contents.xcplayground ├── MultiProjects.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── Podfile ├── Podfile.lock └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | # Xcode 2 | # 3 | # gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore 4 | 5 | ## Build generated 6 | build/ 7 | DerivedData/ 8 | 9 | ## Various settings 10 | *.pbxuser 11 | !default.pbxuser 12 | *.mode1v3 13 | !default.mode1v3 14 | *.mode2v3 15 | !default.mode2v3 16 | *.perspectivev3 17 | !default.perspectivev3 18 | xcuserdata/ 19 | 20 | ## Other 21 | *.moved-aside 22 | *.xccheckout 23 | *.xcscmblueprint 24 | 25 | ## Obj-C/Swift specific 26 | *.hmap 27 | *.ipa 28 | *.dSYM.zip 29 | *.dSYM 30 | 31 | ## Playgrounds 32 | timeline.xctimeline 33 | playground.xcworkspace 34 | 35 | # Swift Package Manager 36 | # 37 | # Add this line if you want to avoid checking in source code from Swift Package Manager dependencies. 38 | # Packages/ 39 | # Package.pins 40 | # Package.resolved 41 | .build/ 42 | 43 | # CocoaPods 44 | # 45 | # We recommend against adding the Pods directory to your .gitignore. However 46 | # you should judge for yourself, the pros and cons are mentioned at: 47 | # https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control 48 | # 49 | Pods/ 50 | 51 | # Carthage 52 | # 53 | # Add this line if you want to avoid checking in source code from Carthage dependencies. 54 | # Carthage/Checkouts 55 | 56 | Carthage/Build 57 | 58 | # fastlane 59 | # 60 | # It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the 61 | # screenshots whenever they are needed. 62 | # For more information about the recommended setup visit: 63 | # https://docs.fastlane.tools/best-practices/source-control/#source-control 64 | 65 | fastlane/report.xml 66 | fastlane/Preview.html 67 | fastlane/screenshots/**/*.png 68 | fastlane/test_output 69 | -------------------------------------------------------------------------------- /Application/Application.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 51; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 2D03CF02BDD1891394DC0CC4 /* Pods_Application.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 496C6A26F863ABD4AD507D8B /* Pods_Application.framework */; }; 11 | 9C3F921F22EBA3B700C0A792 /* Core.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 9C3F921D22EBA3A000C0A792 /* Core.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; }; 12 | 9C3F924822EBA57300C0A792 /* FeatureX.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 9C3F924722EBA56E00C0A792 /* FeatureX.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; }; 13 | 9CF8E82922EB97B30097B6C1 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9CF8E82822EB97B30097B6C1 /* AppDelegate.swift */; }; 14 | 9CF8E82B22EB97B30097B6C1 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9CF8E82A22EB97B30097B6C1 /* ViewController.swift */; }; 15 | 9CF8E82E22EB97B30097B6C1 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 9CF8E82C22EB97B30097B6C1 /* Main.storyboard */; }; 16 | 9CF8E83022EB97B80097B6C1 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 9CF8E82F22EB97B80097B6C1 /* Assets.xcassets */; }; 17 | 9CF8E83322EB97B80097B6C1 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 9CF8E83122EB97B80097B6C1 /* LaunchScreen.storyboard */; }; 18 | 9CFC117022EB9A2100CB125C /* AppDummy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9CFC116F22EB9A2100CB125C /* AppDummy.swift */; }; 19 | /* End PBXBuildFile section */ 20 | 21 | /* Begin PBXContainerItemProxy section */ 22 | 9C3F921C22EBA3A000C0A792 /* PBXContainerItemProxy */ = { 23 | isa = PBXContainerItemProxy; 24 | containerPortal = 9C3F921822EBA3A000C0A792 /* Core.xcodeproj */; 25 | proxyType = 2; 26 | remoteGlobalIDString = 9C9A599522EB9F4B008A5F37; 27 | remoteInfo = Core; 28 | }; 29 | 9C3F924622EBA56E00C0A792 /* PBXContainerItemProxy */ = { 30 | isa = PBXContainerItemProxy; 31 | containerPortal = 9C3F924122EBA56E00C0A792 /* FeatureX.xcodeproj */; 32 | proxyType = 2; 33 | remoteGlobalIDString = 9C3F922A22EBA48D00C0A792; 34 | remoteInfo = FeatureX; 35 | }; 36 | /* End PBXContainerItemProxy section */ 37 | 38 | /* Begin PBXCopyFilesBuildPhase section */ 39 | 9C3F921E22EBA3A800C0A792 /* Copy Frameworks */ = { 40 | isa = PBXCopyFilesBuildPhase; 41 | buildActionMask = 2147483647; 42 | dstPath = ""; 43 | dstSubfolderSpec = 10; 44 | files = ( 45 | 9C3F921F22EBA3B700C0A792 /* Core.framework in Copy Frameworks */, 46 | 9C3F924822EBA57300C0A792 /* FeatureX.framework in Copy Frameworks */, 47 | ); 48 | name = "Copy Frameworks"; 49 | runOnlyForDeploymentPostprocessing = 0; 50 | }; 51 | /* End PBXCopyFilesBuildPhase section */ 52 | 53 | /* Begin PBXFileReference section */ 54 | 496C6A26F863ABD4AD507D8B /* Pods_Application.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Application.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 55 | 9C3F921822EBA3A000C0A792 /* Core.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = Core.xcodeproj; path = ../Core/Core.xcodeproj; sourceTree = ""; }; 56 | 9C3F924122EBA56E00C0A792 /* FeatureX.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = FeatureX.xcodeproj; path = ../FeatureX/FeatureX.xcodeproj; sourceTree = ""; }; 57 | 9CF8E82522EB97B30097B6C1 /* Application.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Application.app; sourceTree = BUILT_PRODUCTS_DIR; }; 58 | 9CF8E82822EB97B30097B6C1 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 59 | 9CF8E82A22EB97B30097B6C1 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; }; 60 | 9CF8E82D22EB97B30097B6C1 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 61 | 9CF8E82F22EB97B80097B6C1 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; 62 | 9CF8E83222EB97B80097B6C1 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; 63 | 9CF8E83422EB97B80097B6C1 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 64 | 9CFC116F22EB9A2100CB125C /* AppDummy.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDummy.swift; sourceTree = ""; }; 65 | D8B9DB920681CB349BF1B064 /* Pods-Application.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Application.release.xcconfig"; path = "../../Pods/Target Support Files/Pods-Application/Pods-Application.release.xcconfig"; sourceTree = ""; }; 66 | E9BCB4639F9D0B538DBAD233 /* Pods-Application.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Application.debug.xcconfig"; path = "../../Pods/Target Support Files/Pods-Application/Pods-Application.debug.xcconfig"; sourceTree = ""; }; 67 | /* End PBXFileReference section */ 68 | 69 | /* Begin PBXFrameworksBuildPhase section */ 70 | 9CF8E82222EB97B30097B6C1 /* Frameworks */ = { 71 | isa = PBXFrameworksBuildPhase; 72 | buildActionMask = 2147483647; 73 | files = ( 74 | 2D03CF02BDD1891394DC0CC4 /* Pods_Application.framework in Frameworks */, 75 | ); 76 | runOnlyForDeploymentPostprocessing = 0; 77 | }; 78 | /* End PBXFrameworksBuildPhase section */ 79 | 80 | /* Begin PBXGroup section */ 81 | 78CBB9A2BEAD6642DA0C61BC /* Pods */ = { 82 | isa = PBXGroup; 83 | children = ( 84 | E9BCB4639F9D0B538DBAD233 /* Pods-Application.debug.xcconfig */, 85 | D8B9DB920681CB349BF1B064 /* Pods-Application.release.xcconfig */, 86 | ); 87 | path = Pods; 88 | sourceTree = ""; 89 | }; 90 | 9B0DE5FF980C38C74040D065 /* Frameworks */ = { 91 | isa = PBXGroup; 92 | children = ( 93 | 496C6A26F863ABD4AD507D8B /* Pods_Application.framework */, 94 | ); 95 | name = Frameworks; 96 | sourceTree = ""; 97 | }; 98 | 9C3F921722EBA39400C0A792 /* Dependencies */ = { 99 | isa = PBXGroup; 100 | children = ( 101 | 9C3F924122EBA56E00C0A792 /* FeatureX.xcodeproj */, 102 | 9C3F921822EBA3A000C0A792 /* Core.xcodeproj */, 103 | ); 104 | name = Dependencies; 105 | sourceTree = ""; 106 | }; 107 | 9C3F921922EBA3A000C0A792 /* Products */ = { 108 | isa = PBXGroup; 109 | children = ( 110 | 9C3F921D22EBA3A000C0A792 /* Core.framework */, 111 | ); 112 | name = Products; 113 | sourceTree = ""; 114 | }; 115 | 9C3F924222EBA56E00C0A792 /* Products */ = { 116 | isa = PBXGroup; 117 | children = ( 118 | 9C3F924722EBA56E00C0A792 /* FeatureX.framework */, 119 | ); 120 | name = Products; 121 | sourceTree = ""; 122 | }; 123 | 9CF8E81C22EB97B30097B6C1 = { 124 | isa = PBXGroup; 125 | children = ( 126 | 9CF8E82722EB97B30097B6C1 /* Application */, 127 | 9C3F921722EBA39400C0A792 /* Dependencies */, 128 | 9CF8E82622EB97B30097B6C1 /* Products */, 129 | 78CBB9A2BEAD6642DA0C61BC /* Pods */, 130 | 9B0DE5FF980C38C74040D065 /* Frameworks */, 131 | ); 132 | sourceTree = ""; 133 | }; 134 | 9CF8E82622EB97B30097B6C1 /* Products */ = { 135 | isa = PBXGroup; 136 | children = ( 137 | 9CF8E82522EB97B30097B6C1 /* Application.app */, 138 | ); 139 | name = Products; 140 | sourceTree = ""; 141 | }; 142 | 9CF8E82722EB97B30097B6C1 /* Application */ = { 143 | isa = PBXGroup; 144 | children = ( 145 | 9CF8E82822EB97B30097B6C1 /* AppDelegate.swift */, 146 | 9CFC116F22EB9A2100CB125C /* AppDummy.swift */, 147 | 9CF8E82A22EB97B30097B6C1 /* ViewController.swift */, 148 | 9CF8E82C22EB97B30097B6C1 /* Main.storyboard */, 149 | 9CF8E82F22EB97B80097B6C1 /* Assets.xcassets */, 150 | 9CF8E83122EB97B80097B6C1 /* LaunchScreen.storyboard */, 151 | 9CF8E83422EB97B80097B6C1 /* Info.plist */, 152 | ); 153 | path = Application; 154 | sourceTree = ""; 155 | }; 156 | /* End PBXGroup section */ 157 | 158 | /* Begin PBXNativeTarget section */ 159 | 9CF8E82422EB97B30097B6C1 /* Application */ = { 160 | isa = PBXNativeTarget; 161 | buildConfigurationList = 9CF8E83722EB97B80097B6C1 /* Build configuration list for PBXNativeTarget "Application" */; 162 | buildPhases = ( 163 | A28AD1C51807C92006B90997 /* [CP] Check Pods Manifest.lock */, 164 | 9CF8E82122EB97B30097B6C1 /* Sources */, 165 | 9CF8E82222EB97B30097B6C1 /* Frameworks */, 166 | 9CF8E82322EB97B30097B6C1 /* Resources */, 167 | B393677DEF9B668315665655 /* [CP] Embed Pods Frameworks */, 168 | 9C3F921E22EBA3A800C0A792 /* Copy Frameworks */, 169 | ); 170 | buildRules = ( 171 | ); 172 | dependencies = ( 173 | ); 174 | name = Application; 175 | productName = Application; 176 | productReference = 9CF8E82522EB97B30097B6C1 /* Application.app */; 177 | productType = "com.apple.product-type.application"; 178 | }; 179 | /* End PBXNativeTarget section */ 180 | 181 | /* Begin PBXProject section */ 182 | 9CF8E81D22EB97B30097B6C1 /* Project object */ = { 183 | isa = PBXProject; 184 | attributes = { 185 | LastSwiftUpdateCheck = 1020; 186 | LastUpgradeCheck = 1020; 187 | ORGANIZATIONNAME = "Leandro Perez"; 188 | TargetAttributes = { 189 | 9CF8E82422EB97B30097B6C1 = { 190 | CreatedOnToolsVersion = 10.2.1; 191 | }; 192 | }; 193 | }; 194 | buildConfigurationList = 9CF8E82022EB97B30097B6C1 /* Build configuration list for PBXProject "Application" */; 195 | compatibilityVersion = "Xcode 9.3"; 196 | developmentRegion = en; 197 | hasScannedForEncodings = 0; 198 | knownRegions = ( 199 | en, 200 | Base, 201 | ); 202 | mainGroup = 9CF8E81C22EB97B30097B6C1; 203 | productRefGroup = 9CF8E82622EB97B30097B6C1 /* Products */; 204 | projectDirPath = ""; 205 | projectReferences = ( 206 | { 207 | ProductGroup = 9C3F921922EBA3A000C0A792 /* Products */; 208 | ProjectRef = 9C3F921822EBA3A000C0A792 /* Core.xcodeproj */; 209 | }, 210 | { 211 | ProductGroup = 9C3F924222EBA56E00C0A792 /* Products */; 212 | ProjectRef = 9C3F924122EBA56E00C0A792 /* FeatureX.xcodeproj */; 213 | }, 214 | ); 215 | projectRoot = ""; 216 | targets = ( 217 | 9CF8E82422EB97B30097B6C1 /* Application */, 218 | ); 219 | }; 220 | /* End PBXProject section */ 221 | 222 | /* Begin PBXReferenceProxy section */ 223 | 9C3F921D22EBA3A000C0A792 /* Core.framework */ = { 224 | isa = PBXReferenceProxy; 225 | fileType = wrapper.framework; 226 | path = Core.framework; 227 | remoteRef = 9C3F921C22EBA3A000C0A792 /* PBXContainerItemProxy */; 228 | sourceTree = BUILT_PRODUCTS_DIR; 229 | }; 230 | 9C3F924722EBA56E00C0A792 /* FeatureX.framework */ = { 231 | isa = PBXReferenceProxy; 232 | fileType = wrapper.framework; 233 | path = FeatureX.framework; 234 | remoteRef = 9C3F924622EBA56E00C0A792 /* PBXContainerItemProxy */; 235 | sourceTree = BUILT_PRODUCTS_DIR; 236 | }; 237 | /* End PBXReferenceProxy section */ 238 | 239 | /* Begin PBXResourcesBuildPhase section */ 240 | 9CF8E82322EB97B30097B6C1 /* Resources */ = { 241 | isa = PBXResourcesBuildPhase; 242 | buildActionMask = 2147483647; 243 | files = ( 244 | 9CF8E83322EB97B80097B6C1 /* LaunchScreen.storyboard in Resources */, 245 | 9CF8E83022EB97B80097B6C1 /* Assets.xcassets in Resources */, 246 | 9CF8E82E22EB97B30097B6C1 /* Main.storyboard in Resources */, 247 | ); 248 | runOnlyForDeploymentPostprocessing = 0; 249 | }; 250 | /* End PBXResourcesBuildPhase section */ 251 | 252 | /* Begin PBXShellScriptBuildPhase section */ 253 | A28AD1C51807C92006B90997 /* [CP] Check Pods Manifest.lock */ = { 254 | isa = PBXShellScriptBuildPhase; 255 | buildActionMask = 2147483647; 256 | files = ( 257 | ); 258 | inputFileListPaths = ( 259 | ); 260 | inputPaths = ( 261 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock", 262 | "${PODS_ROOT}/Manifest.lock", 263 | ); 264 | name = "[CP] Check Pods Manifest.lock"; 265 | outputFileListPaths = ( 266 | ); 267 | outputPaths = ( 268 | "$(DERIVED_FILE_DIR)/Pods-Application-checkManifestLockResult.txt", 269 | ); 270 | runOnlyForDeploymentPostprocessing = 0; 271 | shellPath = /bin/sh; 272 | 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"; 273 | showEnvVarsInLog = 0; 274 | }; 275 | B393677DEF9B668315665655 /* [CP] Embed Pods Frameworks */ = { 276 | isa = PBXShellScriptBuildPhase; 277 | buildActionMask = 2147483647; 278 | files = ( 279 | ); 280 | inputFileListPaths = ( 281 | "${PODS_ROOT}/Target Support Files/Pods-Application/Pods-Application-frameworks-${CONFIGURATION}-input-files.xcfilelist", 282 | ); 283 | name = "[CP] Embed Pods Frameworks"; 284 | outputFileListPaths = ( 285 | "${PODS_ROOT}/Target Support Files/Pods-Application/Pods-Application-frameworks-${CONFIGURATION}-output-files.xcfilelist", 286 | ); 287 | runOnlyForDeploymentPostprocessing = 0; 288 | shellPath = /bin/sh; 289 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Application/Pods-Application-frameworks.sh\"\n"; 290 | showEnvVarsInLog = 0; 291 | }; 292 | /* End PBXShellScriptBuildPhase section */ 293 | 294 | /* Begin PBXSourcesBuildPhase section */ 295 | 9CF8E82122EB97B30097B6C1 /* Sources */ = { 296 | isa = PBXSourcesBuildPhase; 297 | buildActionMask = 2147483647; 298 | files = ( 299 | 9CF8E82B22EB97B30097B6C1 /* ViewController.swift in Sources */, 300 | 9CFC117022EB9A2100CB125C /* AppDummy.swift in Sources */, 301 | 9CF8E82922EB97B30097B6C1 /* AppDelegate.swift in Sources */, 302 | ); 303 | runOnlyForDeploymentPostprocessing = 0; 304 | }; 305 | /* End PBXSourcesBuildPhase section */ 306 | 307 | /* Begin PBXVariantGroup section */ 308 | 9CF8E82C22EB97B30097B6C1 /* Main.storyboard */ = { 309 | isa = PBXVariantGroup; 310 | children = ( 311 | 9CF8E82D22EB97B30097B6C1 /* Base */, 312 | ); 313 | name = Main.storyboard; 314 | sourceTree = ""; 315 | }; 316 | 9CF8E83122EB97B80097B6C1 /* LaunchScreen.storyboard */ = { 317 | isa = PBXVariantGroup; 318 | children = ( 319 | 9CF8E83222EB97B80097B6C1 /* Base */, 320 | ); 321 | name = LaunchScreen.storyboard; 322 | sourceTree = ""; 323 | }; 324 | /* End PBXVariantGroup section */ 325 | 326 | /* Begin XCBuildConfiguration section */ 327 | 9CF8E83522EB97B80097B6C1 /* Debug */ = { 328 | isa = XCBuildConfiguration; 329 | buildSettings = { 330 | ALWAYS_SEARCH_USER_PATHS = NO; 331 | CLANG_ANALYZER_NONNULL = YES; 332 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 333 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 334 | CLANG_CXX_LIBRARY = "libc++"; 335 | CLANG_ENABLE_MODULES = YES; 336 | CLANG_ENABLE_OBJC_ARC = YES; 337 | CLANG_ENABLE_OBJC_WEAK = YES; 338 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 339 | CLANG_WARN_BOOL_CONVERSION = YES; 340 | CLANG_WARN_COMMA = YES; 341 | CLANG_WARN_CONSTANT_CONVERSION = YES; 342 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 343 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 344 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 345 | CLANG_WARN_EMPTY_BODY = YES; 346 | CLANG_WARN_ENUM_CONVERSION = YES; 347 | CLANG_WARN_INFINITE_RECURSION = YES; 348 | CLANG_WARN_INT_CONVERSION = YES; 349 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 350 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 351 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 352 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 353 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 354 | CLANG_WARN_STRICT_PROTOTYPES = YES; 355 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 356 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 357 | CLANG_WARN_UNREACHABLE_CODE = YES; 358 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 359 | CODE_SIGN_IDENTITY = "iPhone Developer"; 360 | COPY_PHASE_STRIP = NO; 361 | DEBUG_INFORMATION_FORMAT = dwarf; 362 | ENABLE_STRICT_OBJC_MSGSEND = YES; 363 | ENABLE_TESTABILITY = YES; 364 | GCC_C_LANGUAGE_STANDARD = gnu11; 365 | GCC_DYNAMIC_NO_PIC = NO; 366 | GCC_NO_COMMON_BLOCKS = YES; 367 | GCC_OPTIMIZATION_LEVEL = 0; 368 | GCC_PREPROCESSOR_DEFINITIONS = ( 369 | "DEBUG=1", 370 | "$(inherited)", 371 | ); 372 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 373 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 374 | GCC_WARN_UNDECLARED_SELECTOR = YES; 375 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 376 | GCC_WARN_UNUSED_FUNCTION = YES; 377 | GCC_WARN_UNUSED_VARIABLE = YES; 378 | IPHONEOS_DEPLOYMENT_TARGET = 12.2; 379 | MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; 380 | MTL_FAST_MATH = YES; 381 | ONLY_ACTIVE_ARCH = YES; 382 | SDKROOT = iphoneos; 383 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; 384 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 385 | }; 386 | name = Debug; 387 | }; 388 | 9CF8E83622EB97B80097B6C1 /* Release */ = { 389 | isa = XCBuildConfiguration; 390 | buildSettings = { 391 | ALWAYS_SEARCH_USER_PATHS = NO; 392 | CLANG_ANALYZER_NONNULL = YES; 393 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 394 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 395 | CLANG_CXX_LIBRARY = "libc++"; 396 | CLANG_ENABLE_MODULES = YES; 397 | CLANG_ENABLE_OBJC_ARC = YES; 398 | CLANG_ENABLE_OBJC_WEAK = YES; 399 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 400 | CLANG_WARN_BOOL_CONVERSION = YES; 401 | CLANG_WARN_COMMA = YES; 402 | CLANG_WARN_CONSTANT_CONVERSION = YES; 403 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 404 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 405 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 406 | CLANG_WARN_EMPTY_BODY = YES; 407 | CLANG_WARN_ENUM_CONVERSION = YES; 408 | CLANG_WARN_INFINITE_RECURSION = YES; 409 | CLANG_WARN_INT_CONVERSION = YES; 410 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 411 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 412 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 413 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 414 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 415 | CLANG_WARN_STRICT_PROTOTYPES = YES; 416 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 417 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 418 | CLANG_WARN_UNREACHABLE_CODE = YES; 419 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 420 | CODE_SIGN_IDENTITY = "iPhone Developer"; 421 | COPY_PHASE_STRIP = NO; 422 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 423 | ENABLE_NS_ASSERTIONS = NO; 424 | ENABLE_STRICT_OBJC_MSGSEND = YES; 425 | GCC_C_LANGUAGE_STANDARD = gnu11; 426 | GCC_NO_COMMON_BLOCKS = YES; 427 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 428 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 429 | GCC_WARN_UNDECLARED_SELECTOR = YES; 430 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 431 | GCC_WARN_UNUSED_FUNCTION = YES; 432 | GCC_WARN_UNUSED_VARIABLE = YES; 433 | IPHONEOS_DEPLOYMENT_TARGET = 12.2; 434 | MTL_ENABLE_DEBUG_INFO = NO; 435 | MTL_FAST_MATH = YES; 436 | SDKROOT = iphoneos; 437 | SWIFT_COMPILATION_MODE = wholemodule; 438 | SWIFT_OPTIMIZATION_LEVEL = "-O"; 439 | VALIDATE_PRODUCT = YES; 440 | }; 441 | name = Release; 442 | }; 443 | 9CF8E83822EB97B80097B6C1 /* Debug */ = { 444 | isa = XCBuildConfiguration; 445 | baseConfigurationReference = E9BCB4639F9D0B538DBAD233 /* Pods-Application.debug.xcconfig */; 446 | buildSettings = { 447 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 448 | CODE_SIGN_STYLE = Automatic; 449 | DEVELOPMENT_TEAM = B3CLFTM242; 450 | INFOPLIST_FILE = Application/Info.plist; 451 | LD_RUNPATH_SEARCH_PATHS = ( 452 | "$(inherited)", 453 | "@executable_path/Frameworks", 454 | ); 455 | PRODUCT_BUNDLE_IDENTIFIER = com.lmp.Application; 456 | PRODUCT_NAME = "$(TARGET_NAME)"; 457 | SWIFT_VERSION = 5.0; 458 | TARGETED_DEVICE_FAMILY = "1,2"; 459 | }; 460 | name = Debug; 461 | }; 462 | 9CF8E83922EB97B80097B6C1 /* Release */ = { 463 | isa = XCBuildConfiguration; 464 | baseConfigurationReference = D8B9DB920681CB349BF1B064 /* Pods-Application.release.xcconfig */; 465 | buildSettings = { 466 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 467 | CODE_SIGN_STYLE = Automatic; 468 | DEVELOPMENT_TEAM = B3CLFTM242; 469 | INFOPLIST_FILE = Application/Info.plist; 470 | LD_RUNPATH_SEARCH_PATHS = ( 471 | "$(inherited)", 472 | "@executable_path/Frameworks", 473 | ); 474 | PRODUCT_BUNDLE_IDENTIFIER = com.lmp.Application; 475 | PRODUCT_NAME = "$(TARGET_NAME)"; 476 | SWIFT_VERSION = 5.0; 477 | TARGETED_DEVICE_FAMILY = "1,2"; 478 | }; 479 | name = Release; 480 | }; 481 | /* End XCBuildConfiguration section */ 482 | 483 | /* Begin XCConfigurationList section */ 484 | 9CF8E82022EB97B30097B6C1 /* Build configuration list for PBXProject "Application" */ = { 485 | isa = XCConfigurationList; 486 | buildConfigurations = ( 487 | 9CF8E83522EB97B80097B6C1 /* Debug */, 488 | 9CF8E83622EB97B80097B6C1 /* Release */, 489 | ); 490 | defaultConfigurationIsVisible = 0; 491 | defaultConfigurationName = Release; 492 | }; 493 | 9CF8E83722EB97B80097B6C1 /* Build configuration list for PBXNativeTarget "Application" */ = { 494 | isa = XCConfigurationList; 495 | buildConfigurations = ( 496 | 9CF8E83822EB97B80097B6C1 /* Debug */, 497 | 9CF8E83922EB97B80097B6C1 /* Release */, 498 | ); 499 | defaultConfigurationIsVisible = 0; 500 | defaultConfigurationName = Release; 501 | }; 502 | /* End XCConfigurationList section */ 503 | }; 504 | rootObject = 9CF8E81D22EB97B30097B6C1 /* Project object */; 505 | } 506 | -------------------------------------------------------------------------------- /Application/Application.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Application/Application/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.swift 3 | // Application 4 | // 5 | // Created by Leandro Perez on 7/26/19. 6 | // Copyright © 2019 Leandro Perez. 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 | _ = AppDummy() 20 | return true 21 | } 22 | 23 | func applicationWillResignActive(_ application: UIApplication) { 24 | // 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. 25 | // Use this method to pause ongoing tasks, disable timers, and invalidate graphics rendering callbacks. Games should use this method to pause the game. 26 | } 27 | 28 | func applicationDidEnterBackground(_ application: UIApplication) { 29 | // 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. 30 | // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. 31 | } 32 | 33 | func applicationWillEnterForeground(_ application: UIApplication) { 34 | // 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. 35 | } 36 | 37 | func applicationDidBecomeActive(_ application: UIApplication) { 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 | func applicationWillTerminate(_ application: UIApplication) { 42 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. 43 | } 44 | 45 | 46 | } 47 | 48 | -------------------------------------------------------------------------------- /Application/Application/AppDummy.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AppDummy.swift 3 | // Application 4 | // 5 | // Created by Leandro Perez on 7/26/19. 6 | // Copyright © 2019 Leandro Perez. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | import Core 11 | import FeatureX 12 | 13 | public class AppDummy { 14 | public init() { 15 | print("Core dummy \(CoreDummy()), featureDummy \(FeatureXDummy())") 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Application/Application/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 | } -------------------------------------------------------------------------------- /Application/Application/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Application/Application/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 | -------------------------------------------------------------------------------- /Application/Application/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 | -------------------------------------------------------------------------------- /Application/Application/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 | -------------------------------------------------------------------------------- /Application/Application/ViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.swift 3 | // Application 4 | // 5 | // Created by Leandro Perez on 7/26/19. 6 | // Copyright © 2019 Leandro Perez. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class ViewController: UIViewController { 12 | 13 | override func viewDidLoad() { 14 | super.viewDidLoad() 15 | // Do any additional setup after loading the view. 16 | } 17 | 18 | 19 | } 20 | 21 | -------------------------------------------------------------------------------- /Application/Podfile: -------------------------------------------------------------------------------- 1 | # Uncomment the next line to define a global platform for your project 2 | # platform :ios, '9.0' 3 | 4 | target 'Application' do 5 | # Comment the next line if you don't want to use dynamic frameworks 6 | use_frameworks! 7 | 8 | # Pods for Application 9 | 10 | end 11 | -------------------------------------------------------------------------------- /Application/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODFILE CHECKSUM: 4f2d81575659ff2b40c8e7a164b79e1f958056b4 2 | 3 | COCOAPODS: 1.7.1 4 | -------------------------------------------------------------------------------- /Core/Core.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 50; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 9C9A599A22EB9F4B008A5F37 /* Core.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C9A599822EB9F4B008A5F37 /* Core.h */; settings = {ATTRIBUTES = (Public, ); }; }; 11 | 9C9A59A122EB9F66008A5F37 /* CoreDummy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9C9A59A022EB9F66008A5F37 /* CoreDummy.swift */; }; 12 | AFE7F743496BE65A35C04E0B /* Pods_Core.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 55D7AA064C8E3FCD00941C0A /* Pods_Core.framework */; }; 13 | /* End PBXBuildFile section */ 14 | 15 | /* Begin PBXFileReference section */ 16 | 1157CB0D7231E9E9A664B85B /* Pods-Core.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Core.release.xcconfig"; path = "Target Support Files/Pods-Core/Pods-Core.release.xcconfig"; sourceTree = ""; }; 17 | 55D7AA064C8E3FCD00941C0A /* Pods_Core.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Core.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 18 | 9C9A599522EB9F4B008A5F37 /* Core.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Core.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 19 | 9C9A599822EB9F4B008A5F37 /* Core.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Core.h; sourceTree = ""; }; 20 | 9C9A599922EB9F4B008A5F37 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 21 | 9C9A59A022EB9F66008A5F37 /* CoreDummy.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CoreDummy.swift; sourceTree = ""; }; 22 | 9C9A59A222EB9F8F008A5F37 /* CorePlayground.playground */ = {isa = PBXFileReference; lastKnownFileType = file.playground; path = CorePlayground.playground; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.swift; }; 23 | FE0D59EF7B4D7932A27CCB6F /* Pods-Core.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Core.debug.xcconfig"; path = "Target Support Files/Pods-Core/Pods-Core.debug.xcconfig"; sourceTree = ""; }; 24 | /* End PBXFileReference section */ 25 | 26 | /* Begin PBXFrameworksBuildPhase section */ 27 | 9C9A599222EB9F4B008A5F37 /* Frameworks */ = { 28 | isa = PBXFrameworksBuildPhase; 29 | buildActionMask = 2147483647; 30 | files = ( 31 | AFE7F743496BE65A35C04E0B /* Pods_Core.framework in Frameworks */, 32 | ); 33 | runOnlyForDeploymentPostprocessing = 0; 34 | }; 35 | /* End PBXFrameworksBuildPhase section */ 36 | 37 | /* Begin PBXGroup section */ 38 | 1054EF9B6A6E28932D9A10C7 /* Pods */ = { 39 | isa = PBXGroup; 40 | children = ( 41 | FE0D59EF7B4D7932A27CCB6F /* Pods-Core.debug.xcconfig */, 42 | 1157CB0D7231E9E9A664B85B /* Pods-Core.release.xcconfig */, 43 | ); 44 | name = Pods; 45 | path = ../Pods; 46 | sourceTree = ""; 47 | }; 48 | 9C9A598B22EB9F4B008A5F37 = { 49 | isa = PBXGroup; 50 | children = ( 51 | 9C9A59A222EB9F8F008A5F37 /* CorePlayground.playground */, 52 | 9C9A599722EB9F4B008A5F37 /* Core */, 53 | 9C9A599622EB9F4B008A5F37 /* Products */, 54 | 1054EF9B6A6E28932D9A10C7 /* Pods */, 55 | F25F41FCC7BA813DA45DB797 /* Frameworks */, 56 | ); 57 | sourceTree = ""; 58 | }; 59 | 9C9A599622EB9F4B008A5F37 /* Products */ = { 60 | isa = PBXGroup; 61 | children = ( 62 | 9C9A599522EB9F4B008A5F37 /* Core.framework */, 63 | ); 64 | name = Products; 65 | sourceTree = ""; 66 | }; 67 | 9C9A599722EB9F4B008A5F37 /* Core */ = { 68 | isa = PBXGroup; 69 | children = ( 70 | 9C9A599822EB9F4B008A5F37 /* Core.h */, 71 | 9C9A59A022EB9F66008A5F37 /* CoreDummy.swift */, 72 | 9C9A599922EB9F4B008A5F37 /* Info.plist */, 73 | ); 74 | path = Core; 75 | sourceTree = ""; 76 | }; 77 | F25F41FCC7BA813DA45DB797 /* Frameworks */ = { 78 | isa = PBXGroup; 79 | children = ( 80 | 55D7AA064C8E3FCD00941C0A /* Pods_Core.framework */, 81 | ); 82 | name = Frameworks; 83 | sourceTree = ""; 84 | }; 85 | /* End PBXGroup section */ 86 | 87 | /* Begin PBXHeadersBuildPhase section */ 88 | 9C9A599022EB9F4B008A5F37 /* Headers */ = { 89 | isa = PBXHeadersBuildPhase; 90 | buildActionMask = 2147483647; 91 | files = ( 92 | 9C9A599A22EB9F4B008A5F37 /* Core.h in Headers */, 93 | ); 94 | runOnlyForDeploymentPostprocessing = 0; 95 | }; 96 | /* End PBXHeadersBuildPhase section */ 97 | 98 | /* Begin PBXNativeTarget section */ 99 | 9C9A599422EB9F4B008A5F37 /* Core */ = { 100 | isa = PBXNativeTarget; 101 | buildConfigurationList = 9C9A599D22EB9F4B008A5F37 /* Build configuration list for PBXNativeTarget "Core" */; 102 | buildPhases = ( 103 | 6EA57EC8C25A39601DF7ED0D /* [CP] Check Pods Manifest.lock */, 104 | 9C9A599022EB9F4B008A5F37 /* Headers */, 105 | 9C9A599122EB9F4B008A5F37 /* Sources */, 106 | 9C9A599222EB9F4B008A5F37 /* Frameworks */, 107 | 9C9A599322EB9F4B008A5F37 /* Resources */, 108 | ); 109 | buildRules = ( 110 | ); 111 | dependencies = ( 112 | ); 113 | name = Core; 114 | productName = Core; 115 | productReference = 9C9A599522EB9F4B008A5F37 /* Core.framework */; 116 | productType = "com.apple.product-type.framework"; 117 | }; 118 | /* End PBXNativeTarget section */ 119 | 120 | /* Begin PBXProject section */ 121 | 9C9A598C22EB9F4B008A5F37 /* Project object */ = { 122 | isa = PBXProject; 123 | attributes = { 124 | LastUpgradeCheck = 1020; 125 | ORGANIZATIONNAME = "Leandro Perez"; 126 | TargetAttributes = { 127 | 9C9A599422EB9F4B008A5F37 = { 128 | CreatedOnToolsVersion = 10.2.1; 129 | LastSwiftMigration = 1020; 130 | }; 131 | }; 132 | }; 133 | buildConfigurationList = 9C9A598F22EB9F4B008A5F37 /* Build configuration list for PBXProject "Core" */; 134 | compatibilityVersion = "Xcode 9.3"; 135 | developmentRegion = en; 136 | hasScannedForEncodings = 0; 137 | knownRegions = ( 138 | en, 139 | ); 140 | mainGroup = 9C9A598B22EB9F4B008A5F37; 141 | productRefGroup = 9C9A599622EB9F4B008A5F37 /* Products */; 142 | projectDirPath = ""; 143 | projectRoot = ""; 144 | targets = ( 145 | 9C9A599422EB9F4B008A5F37 /* Core */, 146 | ); 147 | }; 148 | /* End PBXProject section */ 149 | 150 | /* Begin PBXResourcesBuildPhase section */ 151 | 9C9A599322EB9F4B008A5F37 /* Resources */ = { 152 | isa = PBXResourcesBuildPhase; 153 | buildActionMask = 2147483647; 154 | files = ( 155 | ); 156 | runOnlyForDeploymentPostprocessing = 0; 157 | }; 158 | /* End PBXResourcesBuildPhase section */ 159 | 160 | /* Begin PBXShellScriptBuildPhase section */ 161 | 6EA57EC8C25A39601DF7ED0D /* [CP] Check Pods Manifest.lock */ = { 162 | isa = PBXShellScriptBuildPhase; 163 | buildActionMask = 2147483647; 164 | files = ( 165 | ); 166 | inputFileListPaths = ( 167 | ); 168 | inputPaths = ( 169 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock", 170 | "${PODS_ROOT}/Manifest.lock", 171 | ); 172 | name = "[CP] Check Pods Manifest.lock"; 173 | outputFileListPaths = ( 174 | ); 175 | outputPaths = ( 176 | "$(DERIVED_FILE_DIR)/Pods-Core-checkManifestLockResult.txt", 177 | ); 178 | runOnlyForDeploymentPostprocessing = 0; 179 | shellPath = /bin/sh; 180 | 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"; 181 | showEnvVarsInLog = 0; 182 | }; 183 | /* End PBXShellScriptBuildPhase section */ 184 | 185 | /* Begin PBXSourcesBuildPhase section */ 186 | 9C9A599122EB9F4B008A5F37 /* Sources */ = { 187 | isa = PBXSourcesBuildPhase; 188 | buildActionMask = 2147483647; 189 | files = ( 190 | 9C9A59A122EB9F66008A5F37 /* CoreDummy.swift in Sources */, 191 | ); 192 | runOnlyForDeploymentPostprocessing = 0; 193 | }; 194 | /* End PBXSourcesBuildPhase section */ 195 | 196 | /* Begin XCBuildConfiguration section */ 197 | 9C9A599B22EB9F4B008A5F37 /* Debug */ = { 198 | isa = XCBuildConfiguration; 199 | buildSettings = { 200 | ALWAYS_SEARCH_USER_PATHS = NO; 201 | CLANG_ANALYZER_NONNULL = YES; 202 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 203 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 204 | CLANG_CXX_LIBRARY = "libc++"; 205 | CLANG_ENABLE_MODULES = YES; 206 | CLANG_ENABLE_OBJC_ARC = YES; 207 | CLANG_ENABLE_OBJC_WEAK = YES; 208 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 209 | CLANG_WARN_BOOL_CONVERSION = YES; 210 | CLANG_WARN_COMMA = YES; 211 | CLANG_WARN_CONSTANT_CONVERSION = YES; 212 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 213 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 214 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 215 | CLANG_WARN_EMPTY_BODY = YES; 216 | CLANG_WARN_ENUM_CONVERSION = YES; 217 | CLANG_WARN_INFINITE_RECURSION = YES; 218 | CLANG_WARN_INT_CONVERSION = YES; 219 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 220 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 221 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 222 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 223 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 224 | CLANG_WARN_STRICT_PROTOTYPES = YES; 225 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 226 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 227 | CLANG_WARN_UNREACHABLE_CODE = YES; 228 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 229 | CODE_SIGN_IDENTITY = "iPhone Developer"; 230 | COPY_PHASE_STRIP = NO; 231 | CURRENT_PROJECT_VERSION = 1; 232 | DEBUG_INFORMATION_FORMAT = dwarf; 233 | ENABLE_STRICT_OBJC_MSGSEND = YES; 234 | ENABLE_TESTABILITY = YES; 235 | GCC_C_LANGUAGE_STANDARD = gnu11; 236 | GCC_DYNAMIC_NO_PIC = NO; 237 | GCC_NO_COMMON_BLOCKS = YES; 238 | GCC_OPTIMIZATION_LEVEL = 0; 239 | GCC_PREPROCESSOR_DEFINITIONS = ( 240 | "DEBUG=1", 241 | "$(inherited)", 242 | ); 243 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 244 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 245 | GCC_WARN_UNDECLARED_SELECTOR = YES; 246 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 247 | GCC_WARN_UNUSED_FUNCTION = YES; 248 | GCC_WARN_UNUSED_VARIABLE = YES; 249 | IPHONEOS_DEPLOYMENT_TARGET = 12.2; 250 | MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; 251 | MTL_FAST_MATH = YES; 252 | ONLY_ACTIVE_ARCH = YES; 253 | SDKROOT = iphoneos; 254 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; 255 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 256 | VERSIONING_SYSTEM = "apple-generic"; 257 | VERSION_INFO_PREFIX = ""; 258 | }; 259 | name = Debug; 260 | }; 261 | 9C9A599C22EB9F4B008A5F37 /* Release */ = { 262 | isa = XCBuildConfiguration; 263 | buildSettings = { 264 | ALWAYS_SEARCH_USER_PATHS = NO; 265 | CLANG_ANALYZER_NONNULL = YES; 266 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 267 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 268 | CLANG_CXX_LIBRARY = "libc++"; 269 | CLANG_ENABLE_MODULES = YES; 270 | CLANG_ENABLE_OBJC_ARC = YES; 271 | CLANG_ENABLE_OBJC_WEAK = YES; 272 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 273 | CLANG_WARN_BOOL_CONVERSION = YES; 274 | CLANG_WARN_COMMA = YES; 275 | CLANG_WARN_CONSTANT_CONVERSION = YES; 276 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 277 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 278 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 279 | CLANG_WARN_EMPTY_BODY = YES; 280 | CLANG_WARN_ENUM_CONVERSION = YES; 281 | CLANG_WARN_INFINITE_RECURSION = YES; 282 | CLANG_WARN_INT_CONVERSION = YES; 283 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 284 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 285 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 286 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 287 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 288 | CLANG_WARN_STRICT_PROTOTYPES = YES; 289 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 290 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 291 | CLANG_WARN_UNREACHABLE_CODE = YES; 292 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 293 | CODE_SIGN_IDENTITY = "iPhone Developer"; 294 | COPY_PHASE_STRIP = NO; 295 | CURRENT_PROJECT_VERSION = 1; 296 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 297 | ENABLE_NS_ASSERTIONS = NO; 298 | ENABLE_STRICT_OBJC_MSGSEND = YES; 299 | GCC_C_LANGUAGE_STANDARD = gnu11; 300 | GCC_NO_COMMON_BLOCKS = YES; 301 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 302 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 303 | GCC_WARN_UNDECLARED_SELECTOR = YES; 304 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 305 | GCC_WARN_UNUSED_FUNCTION = YES; 306 | GCC_WARN_UNUSED_VARIABLE = YES; 307 | IPHONEOS_DEPLOYMENT_TARGET = 12.2; 308 | MTL_ENABLE_DEBUG_INFO = NO; 309 | MTL_FAST_MATH = YES; 310 | SDKROOT = iphoneos; 311 | SWIFT_COMPILATION_MODE = wholemodule; 312 | SWIFT_OPTIMIZATION_LEVEL = "-O"; 313 | VALIDATE_PRODUCT = YES; 314 | VERSIONING_SYSTEM = "apple-generic"; 315 | VERSION_INFO_PREFIX = ""; 316 | }; 317 | name = Release; 318 | }; 319 | 9C9A599E22EB9F4B008A5F37 /* Debug */ = { 320 | isa = XCBuildConfiguration; 321 | baseConfigurationReference = FE0D59EF7B4D7932A27CCB6F /* Pods-Core.debug.xcconfig */; 322 | buildSettings = { 323 | CLANG_ENABLE_MODULES = YES; 324 | CODE_SIGN_IDENTITY = ""; 325 | CODE_SIGN_STYLE = Automatic; 326 | DEFINES_MODULE = YES; 327 | DEVELOPMENT_TEAM = B3CLFTM242; 328 | DYLIB_COMPATIBILITY_VERSION = 1; 329 | DYLIB_CURRENT_VERSION = 1; 330 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 331 | INFOPLIST_FILE = Core/Info.plist; 332 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 333 | LD_RUNPATH_SEARCH_PATHS = ( 334 | "$(inherited)", 335 | "@executable_path/Frameworks", 336 | "@loader_path/Frameworks", 337 | ); 338 | PRODUCT_BUNDLE_IDENTIFIER = com.lmp.Core; 339 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 340 | SKIP_INSTALL = YES; 341 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 342 | SWIFT_VERSION = 5.0; 343 | TARGETED_DEVICE_FAMILY = "1,2"; 344 | }; 345 | name = Debug; 346 | }; 347 | 9C9A599F22EB9F4B008A5F37 /* Release */ = { 348 | isa = XCBuildConfiguration; 349 | baseConfigurationReference = 1157CB0D7231E9E9A664B85B /* Pods-Core.release.xcconfig */; 350 | buildSettings = { 351 | CLANG_ENABLE_MODULES = YES; 352 | CODE_SIGN_IDENTITY = ""; 353 | CODE_SIGN_STYLE = Automatic; 354 | DEFINES_MODULE = YES; 355 | DEVELOPMENT_TEAM = B3CLFTM242; 356 | DYLIB_COMPATIBILITY_VERSION = 1; 357 | DYLIB_CURRENT_VERSION = 1; 358 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 359 | INFOPLIST_FILE = Core/Info.plist; 360 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 361 | LD_RUNPATH_SEARCH_PATHS = ( 362 | "$(inherited)", 363 | "@executable_path/Frameworks", 364 | "@loader_path/Frameworks", 365 | ); 366 | PRODUCT_BUNDLE_IDENTIFIER = com.lmp.Core; 367 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 368 | SKIP_INSTALL = YES; 369 | SWIFT_VERSION = 5.0; 370 | TARGETED_DEVICE_FAMILY = "1,2"; 371 | }; 372 | name = Release; 373 | }; 374 | /* End XCBuildConfiguration section */ 375 | 376 | /* Begin XCConfigurationList section */ 377 | 9C9A598F22EB9F4B008A5F37 /* Build configuration list for PBXProject "Core" */ = { 378 | isa = XCConfigurationList; 379 | buildConfigurations = ( 380 | 9C9A599B22EB9F4B008A5F37 /* Debug */, 381 | 9C9A599C22EB9F4B008A5F37 /* Release */, 382 | ); 383 | defaultConfigurationIsVisible = 0; 384 | defaultConfigurationName = Release; 385 | }; 386 | 9C9A599D22EB9F4B008A5F37 /* Build configuration list for PBXNativeTarget "Core" */ = { 387 | isa = XCConfigurationList; 388 | buildConfigurations = ( 389 | 9C9A599E22EB9F4B008A5F37 /* Debug */, 390 | 9C9A599F22EB9F4B008A5F37 /* Release */, 391 | ); 392 | defaultConfigurationIsVisible = 0; 393 | defaultConfigurationName = Release; 394 | }; 395 | /* End XCConfigurationList section */ 396 | }; 397 | rootObject = 9C9A598C22EB9F4B008A5F37 /* Project object */; 398 | } 399 | -------------------------------------------------------------------------------- /Core/Core/Core.h: -------------------------------------------------------------------------------- 1 | // 2 | // Core.h 3 | // Core 4 | // 5 | // Created by Leandro Perez on 7/26/19. 6 | // Copyright © 2019 Leandro Perez. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | //! Project version number for Core. 12 | FOUNDATION_EXPORT double CoreVersionNumber; 13 | 14 | //! Project version string for Core. 15 | FOUNDATION_EXPORT const unsigned char CoreVersionString[]; 16 | 17 | // In this header, you should import all the public headers of your framework using statements like #import 18 | 19 | 20 | -------------------------------------------------------------------------------- /Core/Core/CoreDummy.swift: -------------------------------------------------------------------------------- 1 | // 2 | // CoreDummy.swift 3 | // Core 4 | // 5 | // Created by Leandro Perez on 7/26/19. 6 | // Copyright © 2019 Leandro Perez. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | import RxSwift 11 | 12 | public class CoreDummy{ 13 | public init(){ 14 | 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /Core/Core/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 | -------------------------------------------------------------------------------- /Core/CorePlayground.playground/Contents.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | import Core 3 | import RxSwift 4 | 5 | Observable.just(2) 6 | let duymmy = CoreDummy() 7 | -------------------------------------------------------------------------------- /Core/CorePlayground.playground/contents.xcplayground: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /FeatureX/FeatureX.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 50; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 9C3F922F22EBA48D00C0A792 /* FeatureX.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C3F922D22EBA48D00C0A792 /* FeatureX.h */; settings = {ATTRIBUTES = (Public, ); }; }; 11 | 9C3F923722EBA4CE00C0A792 /* FeatureXDummy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9C3F923622EBA4CE00C0A792 /* FeatureXDummy.swift */; }; 12 | 9C3F924022EBA53800C0A792 /* Core.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9C3F923F22EBA52F00C0A792 /* Core.framework */; }; 13 | D9C56F4E91F8ED35597D7309 /* Pods_FeatureX.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C983F5AD25554957A5EB058 /* Pods_FeatureX.framework */; }; 14 | /* End PBXBuildFile section */ 15 | 16 | /* Begin PBXContainerItemProxy section */ 17 | 9C3F923E22EBA52F00C0A792 /* PBXContainerItemProxy */ = { 18 | isa = PBXContainerItemProxy; 19 | containerPortal = 9C3F923A22EBA52F00C0A792 /* Core.xcodeproj */; 20 | proxyType = 2; 21 | remoteGlobalIDString = 9C9A599522EB9F4B008A5F37; 22 | remoteInfo = Core; 23 | }; 24 | /* End PBXContainerItemProxy section */ 25 | 26 | /* Begin PBXFileReference section */ 27 | 1C983F5AD25554957A5EB058 /* Pods_FeatureX.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_FeatureX.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 28 | 8404ABAEEDEBFD230A490C5B /* Pods-FeatureX.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-FeatureX.debug.xcconfig"; path = "Target Support Files/Pods-FeatureX/Pods-FeatureX.debug.xcconfig"; sourceTree = ""; }; 29 | 9C3F922A22EBA48D00C0A792 /* FeatureX.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = FeatureX.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 30 | 9C3F922D22EBA48D00C0A792 /* FeatureX.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FeatureX.h; sourceTree = ""; }; 31 | 9C3F922E22EBA48D00C0A792 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 32 | 9C3F923622EBA4CE00C0A792 /* FeatureXDummy.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FeatureXDummy.swift; sourceTree = ""; }; 33 | 9C3F923822EBA4E800C0A792 /* FeatureXPlayground.playground */ = {isa = PBXFileReference; lastKnownFileType = file.playground; path = FeatureXPlayground.playground; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.swift; }; 34 | 9C3F923A22EBA52F00C0A792 /* Core.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = Core.xcodeproj; path = ../Core/Core.xcodeproj; sourceTree = ""; }; 35 | DC52D4D0E37507EB2ABF0426 /* Pods-FeatureX.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-FeatureX.release.xcconfig"; path = "Target Support Files/Pods-FeatureX/Pods-FeatureX.release.xcconfig"; sourceTree = ""; }; 36 | /* End PBXFileReference section */ 37 | 38 | /* Begin PBXFrameworksBuildPhase section */ 39 | 9C3F922722EBA48D00C0A792 /* Frameworks */ = { 40 | isa = PBXFrameworksBuildPhase; 41 | buildActionMask = 2147483647; 42 | files = ( 43 | 9C3F924022EBA53800C0A792 /* Core.framework in Frameworks */, 44 | D9C56F4E91F8ED35597D7309 /* Pods_FeatureX.framework in Frameworks */, 45 | ); 46 | runOnlyForDeploymentPostprocessing = 0; 47 | }; 48 | /* End PBXFrameworksBuildPhase section */ 49 | 50 | /* Begin PBXGroup section */ 51 | 9C3F922022EBA48D00C0A792 = { 52 | isa = PBXGroup; 53 | children = ( 54 | 9C3F923822EBA4E800C0A792 /* FeatureXPlayground.playground */, 55 | 9C3F923922EBA52700C0A792 /* Dependencies */, 56 | 9C3F922C22EBA48D00C0A792 /* FeatureX */, 57 | 9C3F922B22EBA48D00C0A792 /* Products */, 58 | E9A292F1EECFC71A0AAE95B2 /* Pods */, 59 | A7B086F38B74A8FE999F5460 /* Frameworks */, 60 | ); 61 | sourceTree = ""; 62 | }; 63 | 9C3F922B22EBA48D00C0A792 /* Products */ = { 64 | isa = PBXGroup; 65 | children = ( 66 | 9C3F922A22EBA48D00C0A792 /* FeatureX.framework */, 67 | ); 68 | name = Products; 69 | sourceTree = ""; 70 | }; 71 | 9C3F922C22EBA48D00C0A792 /* FeatureX */ = { 72 | isa = PBXGroup; 73 | children = ( 74 | 9C3F922D22EBA48D00C0A792 /* FeatureX.h */, 75 | 9C3F923622EBA4CE00C0A792 /* FeatureXDummy.swift */, 76 | 9C3F922E22EBA48D00C0A792 /* Info.plist */, 77 | ); 78 | path = FeatureX; 79 | sourceTree = ""; 80 | }; 81 | 9C3F923922EBA52700C0A792 /* Dependencies */ = { 82 | isa = PBXGroup; 83 | children = ( 84 | 9C3F923A22EBA52F00C0A792 /* Core.xcodeproj */, 85 | ); 86 | name = Dependencies; 87 | sourceTree = ""; 88 | }; 89 | 9C3F923B22EBA52F00C0A792 /* Products */ = { 90 | isa = PBXGroup; 91 | children = ( 92 | 9C3F923F22EBA52F00C0A792 /* Core.framework */, 93 | ); 94 | name = Products; 95 | sourceTree = ""; 96 | }; 97 | A7B086F38B74A8FE999F5460 /* Frameworks */ = { 98 | isa = PBXGroup; 99 | children = ( 100 | 1C983F5AD25554957A5EB058 /* Pods_FeatureX.framework */, 101 | ); 102 | name = Frameworks; 103 | sourceTree = ""; 104 | }; 105 | E9A292F1EECFC71A0AAE95B2 /* Pods */ = { 106 | isa = PBXGroup; 107 | children = ( 108 | 8404ABAEEDEBFD230A490C5B /* Pods-FeatureX.debug.xcconfig */, 109 | DC52D4D0E37507EB2ABF0426 /* Pods-FeatureX.release.xcconfig */, 110 | ); 111 | name = Pods; 112 | path = ../Pods; 113 | sourceTree = ""; 114 | }; 115 | /* End PBXGroup section */ 116 | 117 | /* Begin PBXHeadersBuildPhase section */ 118 | 9C3F922522EBA48D00C0A792 /* Headers */ = { 119 | isa = PBXHeadersBuildPhase; 120 | buildActionMask = 2147483647; 121 | files = ( 122 | 9C3F922F22EBA48D00C0A792 /* FeatureX.h in Headers */, 123 | ); 124 | runOnlyForDeploymentPostprocessing = 0; 125 | }; 126 | /* End PBXHeadersBuildPhase section */ 127 | 128 | /* Begin PBXNativeTarget section */ 129 | 9C3F922922EBA48D00C0A792 /* FeatureX */ = { 130 | isa = PBXNativeTarget; 131 | buildConfigurationList = 9C3F923222EBA48D00C0A792 /* Build configuration list for PBXNativeTarget "FeatureX" */; 132 | buildPhases = ( 133 | F2CA637A9C149D121EC10742 /* [CP] Check Pods Manifest.lock */, 134 | 9C3F922522EBA48D00C0A792 /* Headers */, 135 | 9C3F922622EBA48D00C0A792 /* Sources */, 136 | 9C3F922722EBA48D00C0A792 /* Frameworks */, 137 | 9C3F922822EBA48D00C0A792 /* Resources */, 138 | ); 139 | buildRules = ( 140 | ); 141 | dependencies = ( 142 | ); 143 | name = FeatureX; 144 | productName = FeatureX; 145 | productReference = 9C3F922A22EBA48D00C0A792 /* FeatureX.framework */; 146 | productType = "com.apple.product-type.framework"; 147 | }; 148 | /* End PBXNativeTarget section */ 149 | 150 | /* Begin PBXProject section */ 151 | 9C3F922122EBA48D00C0A792 /* Project object */ = { 152 | isa = PBXProject; 153 | attributes = { 154 | LastUpgradeCheck = 1020; 155 | ORGANIZATIONNAME = "Leandro Perez"; 156 | TargetAttributes = { 157 | 9C3F922922EBA48D00C0A792 = { 158 | CreatedOnToolsVersion = 10.2.1; 159 | LastSwiftMigration = 1020; 160 | }; 161 | }; 162 | }; 163 | buildConfigurationList = 9C3F922422EBA48D00C0A792 /* Build configuration list for PBXProject "FeatureX" */; 164 | compatibilityVersion = "Xcode 9.3"; 165 | developmentRegion = en; 166 | hasScannedForEncodings = 0; 167 | knownRegions = ( 168 | en, 169 | ); 170 | mainGroup = 9C3F922022EBA48D00C0A792; 171 | productRefGroup = 9C3F922B22EBA48D00C0A792 /* Products */; 172 | projectDirPath = ""; 173 | projectReferences = ( 174 | { 175 | ProductGroup = 9C3F923B22EBA52F00C0A792 /* Products */; 176 | ProjectRef = 9C3F923A22EBA52F00C0A792 /* Core.xcodeproj */; 177 | }, 178 | ); 179 | projectRoot = ""; 180 | targets = ( 181 | 9C3F922922EBA48D00C0A792 /* FeatureX */, 182 | ); 183 | }; 184 | /* End PBXProject section */ 185 | 186 | /* Begin PBXReferenceProxy section */ 187 | 9C3F923F22EBA52F00C0A792 /* Core.framework */ = { 188 | isa = PBXReferenceProxy; 189 | fileType = wrapper.framework; 190 | path = Core.framework; 191 | remoteRef = 9C3F923E22EBA52F00C0A792 /* PBXContainerItemProxy */; 192 | sourceTree = BUILT_PRODUCTS_DIR; 193 | }; 194 | /* End PBXReferenceProxy section */ 195 | 196 | /* Begin PBXResourcesBuildPhase section */ 197 | 9C3F922822EBA48D00C0A792 /* Resources */ = { 198 | isa = PBXResourcesBuildPhase; 199 | buildActionMask = 2147483647; 200 | files = ( 201 | ); 202 | runOnlyForDeploymentPostprocessing = 0; 203 | }; 204 | /* End PBXResourcesBuildPhase section */ 205 | 206 | /* Begin PBXShellScriptBuildPhase section */ 207 | F2CA637A9C149D121EC10742 /* [CP] Check Pods Manifest.lock */ = { 208 | isa = PBXShellScriptBuildPhase; 209 | buildActionMask = 2147483647; 210 | files = ( 211 | ); 212 | inputFileListPaths = ( 213 | ); 214 | inputPaths = ( 215 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock", 216 | "${PODS_ROOT}/Manifest.lock", 217 | ); 218 | name = "[CP] Check Pods Manifest.lock"; 219 | outputFileListPaths = ( 220 | ); 221 | outputPaths = ( 222 | "$(DERIVED_FILE_DIR)/Pods-FeatureX-checkManifestLockResult.txt", 223 | ); 224 | runOnlyForDeploymentPostprocessing = 0; 225 | shellPath = /bin/sh; 226 | 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"; 227 | showEnvVarsInLog = 0; 228 | }; 229 | /* End PBXShellScriptBuildPhase section */ 230 | 231 | /* Begin PBXSourcesBuildPhase section */ 232 | 9C3F922622EBA48D00C0A792 /* Sources */ = { 233 | isa = PBXSourcesBuildPhase; 234 | buildActionMask = 2147483647; 235 | files = ( 236 | 9C3F923722EBA4CE00C0A792 /* FeatureXDummy.swift in Sources */, 237 | ); 238 | runOnlyForDeploymentPostprocessing = 0; 239 | }; 240 | /* End PBXSourcesBuildPhase section */ 241 | 242 | /* Begin XCBuildConfiguration section */ 243 | 9C3F923022EBA48D00C0A792 /* Debug */ = { 244 | isa = XCBuildConfiguration; 245 | buildSettings = { 246 | ALWAYS_SEARCH_USER_PATHS = NO; 247 | CLANG_ANALYZER_NONNULL = YES; 248 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 249 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 250 | CLANG_CXX_LIBRARY = "libc++"; 251 | CLANG_ENABLE_MODULES = YES; 252 | CLANG_ENABLE_OBJC_ARC = YES; 253 | CLANG_ENABLE_OBJC_WEAK = YES; 254 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 255 | CLANG_WARN_BOOL_CONVERSION = YES; 256 | CLANG_WARN_COMMA = YES; 257 | CLANG_WARN_CONSTANT_CONVERSION = YES; 258 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 259 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 260 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 261 | CLANG_WARN_EMPTY_BODY = YES; 262 | CLANG_WARN_ENUM_CONVERSION = YES; 263 | CLANG_WARN_INFINITE_RECURSION = YES; 264 | CLANG_WARN_INT_CONVERSION = YES; 265 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 266 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 267 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 268 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 269 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 270 | CLANG_WARN_STRICT_PROTOTYPES = YES; 271 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 272 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 273 | CLANG_WARN_UNREACHABLE_CODE = YES; 274 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 275 | CODE_SIGN_IDENTITY = "iPhone Developer"; 276 | COPY_PHASE_STRIP = NO; 277 | CURRENT_PROJECT_VERSION = 1; 278 | DEBUG_INFORMATION_FORMAT = dwarf; 279 | ENABLE_STRICT_OBJC_MSGSEND = YES; 280 | ENABLE_TESTABILITY = YES; 281 | GCC_C_LANGUAGE_STANDARD = gnu11; 282 | GCC_DYNAMIC_NO_PIC = NO; 283 | GCC_NO_COMMON_BLOCKS = YES; 284 | GCC_OPTIMIZATION_LEVEL = 0; 285 | GCC_PREPROCESSOR_DEFINITIONS = ( 286 | "DEBUG=1", 287 | "$(inherited)", 288 | ); 289 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 290 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 291 | GCC_WARN_UNDECLARED_SELECTOR = YES; 292 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 293 | GCC_WARN_UNUSED_FUNCTION = YES; 294 | GCC_WARN_UNUSED_VARIABLE = YES; 295 | IPHONEOS_DEPLOYMENT_TARGET = 12.2; 296 | MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; 297 | MTL_FAST_MATH = YES; 298 | ONLY_ACTIVE_ARCH = YES; 299 | SDKROOT = iphoneos; 300 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; 301 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 302 | VERSIONING_SYSTEM = "apple-generic"; 303 | VERSION_INFO_PREFIX = ""; 304 | }; 305 | name = Debug; 306 | }; 307 | 9C3F923122EBA48D00C0A792 /* Release */ = { 308 | isa = XCBuildConfiguration; 309 | buildSettings = { 310 | ALWAYS_SEARCH_USER_PATHS = NO; 311 | CLANG_ANALYZER_NONNULL = YES; 312 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 313 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 314 | CLANG_CXX_LIBRARY = "libc++"; 315 | CLANG_ENABLE_MODULES = YES; 316 | CLANG_ENABLE_OBJC_ARC = YES; 317 | CLANG_ENABLE_OBJC_WEAK = YES; 318 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 319 | CLANG_WARN_BOOL_CONVERSION = YES; 320 | CLANG_WARN_COMMA = YES; 321 | CLANG_WARN_CONSTANT_CONVERSION = YES; 322 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 323 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 324 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 325 | CLANG_WARN_EMPTY_BODY = YES; 326 | CLANG_WARN_ENUM_CONVERSION = YES; 327 | CLANG_WARN_INFINITE_RECURSION = YES; 328 | CLANG_WARN_INT_CONVERSION = YES; 329 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 330 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 331 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 332 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 333 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 334 | CLANG_WARN_STRICT_PROTOTYPES = YES; 335 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 336 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 337 | CLANG_WARN_UNREACHABLE_CODE = YES; 338 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 339 | CODE_SIGN_IDENTITY = "iPhone Developer"; 340 | COPY_PHASE_STRIP = NO; 341 | CURRENT_PROJECT_VERSION = 1; 342 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 343 | ENABLE_NS_ASSERTIONS = NO; 344 | ENABLE_STRICT_OBJC_MSGSEND = YES; 345 | GCC_C_LANGUAGE_STANDARD = gnu11; 346 | GCC_NO_COMMON_BLOCKS = YES; 347 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 348 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 349 | GCC_WARN_UNDECLARED_SELECTOR = YES; 350 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 351 | GCC_WARN_UNUSED_FUNCTION = YES; 352 | GCC_WARN_UNUSED_VARIABLE = YES; 353 | IPHONEOS_DEPLOYMENT_TARGET = 12.2; 354 | MTL_ENABLE_DEBUG_INFO = NO; 355 | MTL_FAST_MATH = YES; 356 | SDKROOT = iphoneos; 357 | SWIFT_COMPILATION_MODE = wholemodule; 358 | SWIFT_OPTIMIZATION_LEVEL = "-O"; 359 | VALIDATE_PRODUCT = YES; 360 | VERSIONING_SYSTEM = "apple-generic"; 361 | VERSION_INFO_PREFIX = ""; 362 | }; 363 | name = Release; 364 | }; 365 | 9C3F923322EBA48D00C0A792 /* Debug */ = { 366 | isa = XCBuildConfiguration; 367 | baseConfigurationReference = 8404ABAEEDEBFD230A490C5B /* Pods-FeatureX.debug.xcconfig */; 368 | buildSettings = { 369 | CLANG_ENABLE_MODULES = YES; 370 | CODE_SIGN_IDENTITY = ""; 371 | CODE_SIGN_STYLE = Automatic; 372 | DEFINES_MODULE = YES; 373 | DEVELOPMENT_TEAM = B3CLFTM242; 374 | DYLIB_COMPATIBILITY_VERSION = 1; 375 | DYLIB_CURRENT_VERSION = 1; 376 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 377 | INFOPLIST_FILE = FeatureX/Info.plist; 378 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 379 | LD_RUNPATH_SEARCH_PATHS = ( 380 | "$(inherited)", 381 | "@executable_path/Frameworks", 382 | "@loader_path/Frameworks", 383 | ); 384 | PRODUCT_BUNDLE_IDENTIFIER = com.lmp.FeatureX; 385 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 386 | SKIP_INSTALL = YES; 387 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 388 | SWIFT_VERSION = 5.0; 389 | TARGETED_DEVICE_FAMILY = "1,2"; 390 | }; 391 | name = Debug; 392 | }; 393 | 9C3F923422EBA48D00C0A792 /* Release */ = { 394 | isa = XCBuildConfiguration; 395 | baseConfigurationReference = DC52D4D0E37507EB2ABF0426 /* Pods-FeatureX.release.xcconfig */; 396 | buildSettings = { 397 | CLANG_ENABLE_MODULES = YES; 398 | CODE_SIGN_IDENTITY = ""; 399 | CODE_SIGN_STYLE = Automatic; 400 | DEFINES_MODULE = YES; 401 | DEVELOPMENT_TEAM = B3CLFTM242; 402 | DYLIB_COMPATIBILITY_VERSION = 1; 403 | DYLIB_CURRENT_VERSION = 1; 404 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 405 | INFOPLIST_FILE = FeatureX/Info.plist; 406 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 407 | LD_RUNPATH_SEARCH_PATHS = ( 408 | "$(inherited)", 409 | "@executable_path/Frameworks", 410 | "@loader_path/Frameworks", 411 | ); 412 | PRODUCT_BUNDLE_IDENTIFIER = com.lmp.FeatureX; 413 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 414 | SKIP_INSTALL = YES; 415 | SWIFT_VERSION = 5.0; 416 | TARGETED_DEVICE_FAMILY = "1,2"; 417 | }; 418 | name = Release; 419 | }; 420 | /* End XCBuildConfiguration section */ 421 | 422 | /* Begin XCConfigurationList section */ 423 | 9C3F922422EBA48D00C0A792 /* Build configuration list for PBXProject "FeatureX" */ = { 424 | isa = XCConfigurationList; 425 | buildConfigurations = ( 426 | 9C3F923022EBA48D00C0A792 /* Debug */, 427 | 9C3F923122EBA48D00C0A792 /* Release */, 428 | ); 429 | defaultConfigurationIsVisible = 0; 430 | defaultConfigurationName = Release; 431 | }; 432 | 9C3F923222EBA48D00C0A792 /* Build configuration list for PBXNativeTarget "FeatureX" */ = { 433 | isa = XCConfigurationList; 434 | buildConfigurations = ( 435 | 9C3F923322EBA48D00C0A792 /* Debug */, 436 | 9C3F923422EBA48D00C0A792 /* Release */, 437 | ); 438 | defaultConfigurationIsVisible = 0; 439 | defaultConfigurationName = Release; 440 | }; 441 | /* End XCConfigurationList section */ 442 | }; 443 | rootObject = 9C3F922122EBA48D00C0A792 /* Project object */; 444 | } 445 | -------------------------------------------------------------------------------- /FeatureX/FeatureX/FeatureX.h: -------------------------------------------------------------------------------- 1 | // 2 | // FeatureX.h 3 | // FeatureX 4 | // 5 | // Created by Leandro Perez on 7/26/19. 6 | // Copyright © 2019 Leandro Perez. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | //! Project version number for FeatureX. 12 | FOUNDATION_EXPORT double FeatureXVersionNumber; 13 | 14 | //! Project version string for FeatureX. 15 | FOUNDATION_EXPORT const unsigned char FeatureXVersionString[]; 16 | 17 | // In this header, you should import all the public headers of your framework using statements like #import 18 | 19 | 20 | -------------------------------------------------------------------------------- /FeatureX/FeatureX/FeatureXDummy.swift: -------------------------------------------------------------------------------- 1 | // 2 | // FeatureXDummy.swift 3 | // FeatureX 4 | // 5 | // Created by Leandro Perez on 7/26/19. 6 | // Copyright © 2019 Leandro Perez. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | import Core 11 | 12 | public class FeatureXDummy{ 13 | public init(){ 14 | let coreDummy = CoreDummy() 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /FeatureX/FeatureX/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 | -------------------------------------------------------------------------------- /FeatureX/FeatureXPlayground.playground/Contents.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | import FeatureX 3 | import Core 4 | 5 | var dummy = FeatureXDummy() 6 | var coreDummy = CoreDummy() 7 | -------------------------------------------------------------------------------- /FeatureX/FeatureXPlayground.playground/contents.xcplayground: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /MultiProjects.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 12 | 13 | 15 | 16 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /MultiProjects.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- 1 | platform :ios, '12.2' 2 | 3 | use_frameworks! 4 | 5 | workspace 'MultiProjects' 6 | 7 | #core module 8 | def core_pods 9 | pod 'RxSwift' 10 | end 11 | 12 | target 'Core' do 13 | project 'Core/Core.project' 14 | core_pods 15 | end 16 | 17 | #feature x module 18 | def feature_x_pods 19 | pod 'Moya' 20 | core_pods 21 | end 22 | 23 | target 'FeatureX' do 24 | project 'FeatureX/FeatureX.project' 25 | feature_x_pods 26 | end 27 | 28 | 29 | #application 30 | def application_pods 31 | feature_x_pods 32 | core_pods 33 | end 34 | 35 | target 'Application' do 36 | project 'Application/Application.project' 37 | application_pods 38 | end 39 | -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - Alamofire (4.8.2) 3 | - Moya (13.0.1): 4 | - Moya/Core (= 13.0.1) 5 | - Moya/Core (13.0.1): 6 | - Alamofire (~> 4.1) 7 | - Result (~> 4.1) 8 | - Result (4.1.0) 9 | - RxSwift (5.0.0) 10 | 11 | DEPENDENCIES: 12 | - Moya 13 | - RxSwift 14 | 15 | SPEC REPOS: 16 | https://github.com/cocoapods/specs.git: 17 | - Alamofire 18 | - Moya 19 | - Result 20 | - RxSwift 21 | 22 | SPEC CHECKSUMS: 23 | Alamofire: ae5c501addb7afdbb13687d7f2f722c78734c2d3 24 | Moya: f4a4b80ff2f8a4ffc208dfb31cd91636622fee6e 25 | Result: bd966fac789cc6c1563440b348ab2598cc24d5c7 26 | RxSwift: 8b0671caa829a763bbce7271095859121cbd895f 27 | 28 | PODFILE CHECKSUM: d28d00c0edcfb455ac610bb40861398a878ae1f7 29 | 30 | COCOAPODS: 1.7.5 31 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # multiprojects 2 | This is a simple workspace that shows a modular architecture approach using Cocoapods to manage external dependencies. 3 | 4 | ### CocoaPods 5 | 6 | Run `pod install` and re-open the project to compile and run. 7 | --------------------------------------------------------------------------------