From 7cabaf12f30903d3606fbea9b9c53268aac0f2b1 Mon Sep 17 00:00:00 2001 From: William Entriken Date: Sun, 4 Dec 2016 16:35:48 -0500 Subject: [PATCH] Update recipe for Xcode 8.1 --- Recipe.md | 65 +++--- __PROJECT_NAME__/.swift-version | 2 +- __PROJECT_NAME__/Source/__PROJECT_NAME__.h | 2 +- .../Tests/__PROJECT_NAME__Tests.swift | 2 +- .../project.pbxproj | 194 +++++++++--------- .../xcschemes/__PROJECT_NAME__.xcscheme | 12 +- .../iOS Example/Source/AppDelegate.swift | 2 +- .../iOS Example/Source/ViewController.swift | 2 +- .../iOS Example.xcodeproj/project.pbxproj | 147 +++++++------ .../xcschemes/iOS Example.xcscheme | 10 +- 10 files changed, 227 insertions(+), 211 deletions(-) diff --git a/Recipe.md b/Recipe.md index 7b0559b..b96d482 100644 --- a/Recipe.md +++ b/Recipe.md @@ -34,7 +34,7 @@ Some variables have spaces in them. That is intentional because it causes Xcode Complete all these instructions on the same calendar day. -1. Open Xcode Version 8.0 (8A218a) *(this is the latest publicly released or Gold Master version)* +1. Open Xcode Version 8.1 (8B62) *(this is the latest publicly released or Gold Master version)* 2. Create a project for your module @@ -91,9 +91,9 @@ Complete all these instructions on the same calendar day. 1. Open the file `__PROJECT_NAME__`.xcodeproj in Xcode - 2. Enable to Project navigator on the left and the File inspector on the right + 2. Enable Project navigator on the left and the File inspector on the right - 3. Use the Project navigator to select the `__PROJECT_NAME__` folder + 3. Use the Project navigator to select the `__PROJECT_NAME__` folder (the yellow icon) 4. Use the File inspector to change the name to “Source" @@ -103,17 +103,15 @@ Complete all these instructions on the same calendar day. 7. Use the File inspector to change the name to “Tests" - 8. Use the File inspector to change the location (the folder icon button) to ~/Desktop/`__PROJECT_NAME__`/tests - - 9. Use the Project navigator to select the `__PROJECT_NAME__` project (the blue Xcode icon, not the folder icon) + 8. Use the File inspector to change the location (the folder icon button) to ~/Desktop/`__PROJECT_NAME__`/Tests 3. Fix the Info.plist file configuration (this is a bug/workaround with Xcode, no radar submitted yet) 1. Click `__PROJECT_NAME__` on the left (the blue icon) - 2. Click the target `__PROJECT_NAME__` in the middle + 2. Click the target `__PROJECT_NAME__` in the middle (the brown icon) - 3. Click Build Settings on the top of the middle + 3. Click "Build Settings" on the top of the middle 4. Enter "Info.plist" in the search box @@ -129,21 +127,27 @@ Complete all these instructions on the same calendar day. 2. Use Xcode to add these files to the project - 1. Select File -> New -> Group and set the name to "Resources" + 1. Add `__PROJECT_NAME__`.swift to the Source folder + + 1. Select the Source folder in the Project navigator + + 2. Select File -> "Add Files..." + + 3. Navigate to ~/Desktop/`__PROJECT_NAME__`/Source/, select `__PROJECT_NAME__`.swift and click "Add" - 2. Order the Source folder to above the Resources folder + 2. Select the `__PROJECT_NAME__` project (blue icon) in the Project Navigator - 3. Drag the wk.png file in the Resources folder from Finder into the Resources folder in Xcode + 3. Select File -> New -> Group and set the name to "Resources" - 1. Ensure “Copy items if needed” is not selected + 4. Order the Source folder to above the Resources folder - 2. Ensure Add to targets only selects `__PROJECT_NAME__` + 5. Add wk.png to the Resources folder - 4. Drag the `__PROJECT_NAME__.swift` file in the Source folder from Finder into the Source folder in Xcode (put it above other items in the group) + 1. Select the Resources folder in the Project navigator - 1. Ensure “Copy items if needed” is not selected + 2. Select File -> "Add Files..." - 2. Ensure Add to targets only selects `__PROJECT_NAME__` + 3. Navigate to ~/Desktop/`__PROJECT_NAME__`/Resources/, select wk.png and click "Add" 3. Create a project for your iOS Example project @@ -159,15 +163,15 @@ Complete all these instructions on the same calendar day. 3. Set the project options - 1. Set project name to "iOS Example" + 1. Set Product Name to "iOS Example" - 2. Set organization name to `__ORGANIZATION NAME__` + 2. Set Organization Name to `__ORGANIZATION NAME__` - 3. Set organization identifier to `com.AN.ORGANIZATION.IDENTIFIER` + 3. Set Organization Identifier to `com.AN.ORGANIZATION.IDENTIFIER` - 4. Set language to "Swift" + 4. Set Language to "Swift" - 5. Set devices to “Universal" + 5. Set Devices to “Universal" 6. Ensure "Include Unit Tests" is not selected @@ -210,7 +214,7 @@ Complete all these instructions on the same calendar day. 4. Use the File inspector to change the name to “Source" - 5. Use the File inspector to change the location (the folder icon button) to ~/Desktop/`__PROJECT_NAME__`/Source + 5. Use the File inspector to change the location (the folder icon button) to ~/Desktop/`__PROJECT_NAME__`/iOS Example/Source 3. Fix the Info.plist file configuration (this is a bug/workaround with Xcode, no radar submitted yet) @@ -247,7 +251,7 @@ Complete all these instructions on the same calendar day. 1. Select File -> New -> Workspace - 2. Select the `__PROJECT_NAME__` on the desktop and click save + 2. Select `__PROJECT_NAME__` on the desktop, enter the name `__PROJECT_NAME__` and click save 3. Use Finder and drag `__PROJECT_NAME__`.xcodeproj into the workspace in Xcode @@ -257,13 +261,13 @@ Complete all these instructions on the same calendar day. 6. Click Build Phases in the middle - 7. Under Link Binaries With Libraries click the plus icon, select the `__PROJECT_NAME__` framework, and then click "Add" + 7. Under Link Binaries With Libraries click the plus icon, select `__PROJECT_NAME__`.framework, and then click "Add" 5. Remove identifying parts of your project 1. Use Atom text editor to find and replace all occurrences of these strings (NEED A MORE PORTABLE INSTRUCTION FOR THIS) - 1. Replace occurrences of "Created by XXX on YYY" with "Created by `__AUTHOR NAME__` on `__TODAYS_DATE__`" + 1. Replace occurrences of "Created by XXX on YYY." with "Created by `__AUTHOR NAME__` on `__TODAYS_DATE__`." 2. Replace occurrences of "Copyright © 2016" with "Copyright © `__TODAYS_YEAR__`" @@ -282,3 +286,14 @@ Complete all these instructions on the same calendar day. # Reference https://github.com/CocoaPods/CocoaPods/pull/5841 curl 'https://raw.githubusercontent.com/fulldecent/swift3-module-template/master/__PROJECT_NAME__/Tests/CheckCocoaPodsQualityIndexes.rb' -o Tests/CheckCocoaPodsQualityIndexes.rb curl 'https://raw.githubusercontent.com/fulldecent/swift3-module-template/master/__PROJECT_NAME__/Project.swift' -o Project.swift + + +## Taste testing + +1. Open `__PROJECT_NAME__`.xcworkspace + +2. Use the scheme navigator to select iOS Example and the latest iPhone version + +3. Select Product -> Run + +You should see a big white rook. That means it worked! diff --git a/__PROJECT_NAME__/.swift-version b/__PROJECT_NAME__/.swift-version index f398a20..9f55b2c 100644 --- a/__PROJECT_NAME__/.swift-version +++ b/__PROJECT_NAME__/.swift-version @@ -1 +1 @@ -3.0 \ No newline at end of file +3.0 diff --git a/__PROJECT_NAME__/Source/__PROJECT_NAME__.h b/__PROJECT_NAME__/Source/__PROJECT_NAME__.h index 36e4e61..54e1516 100644 --- a/__PROJECT_NAME__/Source/__PROJECT_NAME__.h +++ b/__PROJECT_NAME__/Source/__PROJECT_NAME__.h @@ -3,7 +3,7 @@ // __PROJECT_NAME__ // // Created by __AUTHOR NAME__ on __TODAYS_DATE__. -// Copyright © 2016 __ORGANIZATION NAME__. All rights reserved. +// Copyright © __TODAYS_YEAR__ __ORGANIZATION NAME__. All rights reserved. // #import diff --git a/__PROJECT_NAME__/Tests/__PROJECT_NAME__Tests.swift b/__PROJECT_NAME__/Tests/__PROJECT_NAME__Tests.swift index 395bb71..0b206d4 100644 --- a/__PROJECT_NAME__/Tests/__PROJECT_NAME__Tests.swift +++ b/__PROJECT_NAME__/Tests/__PROJECT_NAME__Tests.swift @@ -3,7 +3,7 @@ // __PROJECT_NAME__Tests // // Created by __AUTHOR NAME__ on __TODAYS_DATE__. -// Copyright © 2016 __ORGANIZATION NAME__. All rights reserved. +// Copyright © __TODAYS_YEAR__ __ORGANIZATION NAME__. All rights reserved. // import XCTest diff --git a/__PROJECT_NAME__/__PROJECT_NAME__.xcodeproj/project.pbxproj b/__PROJECT_NAME__/__PROJECT_NAME__.xcodeproj/project.pbxproj index b892e20..2adf272 100644 --- a/__PROJECT_NAME__/__PROJECT_NAME__.xcodeproj/project.pbxproj +++ b/__PROJECT_NAME__/__PROJECT_NAME__.xcodeproj/project.pbxproj @@ -7,121 +7,121 @@ objects = { /* Begin PBXBuildFile section */ - D95E1BE71D88D63400F94976 /* __PROJECT_NAME__.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D95E1BDD1D88D63300F94976 /* __PROJECT_NAME__.framework */; }; - D95E1BEC1D88D63400F94976 /* __PROJECT_NAME__Tests.swift in Sources */ = {isa = PBXBuildFile; fileRef = D95E1BEB1D88D63400F94976 /* __PROJECT_NAME__Tests.swift */; }; - D95E1BEE1D88D63400F94976 /* __PROJECT_NAME__.h in Headers */ = {isa = PBXBuildFile; fileRef = D95E1BE01D88D63300F94976 /* __PROJECT_NAME__.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D95E1BF91D88E01300F94976 /* wk.png in Resources */ = {isa = PBXBuildFile; fileRef = D95E1BF81D88E01300F94976 /* wk.png */; }; - D95E1BFB1D88E2D500F94976 /* __PROJECT_NAME__.swift in Sources */ = {isa = PBXBuildFile; fileRef = D95E1BFA1D88E2D500F94976 /* __PROJECT_NAME__.swift */; }; + D9899DD41DF4A092008766B5 /* __PROJECT_NAME__.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D9899DCA1DF4A092008766B5 /* __PROJECT_NAME__.framework */; }; + D9899DD91DF4A093008766B5 /* __PROJECT_NAME__Tests.swift in Sources */ = {isa = PBXBuildFile; fileRef = D9899DD81DF4A093008766B5 /* __PROJECT_NAME__Tests.swift */; }; + D9899DDB1DF4A093008766B5 /* __PROJECT_NAME__.h in Headers */ = {isa = PBXBuildFile; fileRef = D9899DCD1DF4A092008766B5 /* __PROJECT_NAME__.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D9899DE61DF4A372008766B5 /* __PROJECT_NAME__.swift in Sources */ = {isa = PBXBuildFile; fileRef = D9899DE51DF4A372008766B5 /* __PROJECT_NAME__.swift */; }; + D9899DE81DF4A3F2008766B5 /* wk.png in Resources */ = {isa = PBXBuildFile; fileRef = D9899DE71DF4A3F2008766B5 /* wk.png */; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ - D95E1BE81D88D63400F94976 /* PBXContainerItemProxy */ = { + D9899DD51DF4A092008766B5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = D95E1BD41D88D63200F94976 /* Project object */; + containerPortal = D9899DC11DF4A091008766B5 /* Project object */; proxyType = 1; - remoteGlobalIDString = D95E1BDC1D88D63300F94976; + remoteGlobalIDString = D9899DC91DF4A091008766B5; remoteInfo = __PROJECT_NAME__; }; /* End PBXContainerItemProxy section */ /* Begin PBXFileReference section */ - D95E1BDD1D88D63300F94976 /* __PROJECT_NAME__.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = __PROJECT_NAME__.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - D95E1BE01D88D63300F94976 /* __PROJECT_NAME__.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = __PROJECT_NAME__.h; sourceTree = ""; }; - D95E1BE11D88D63300F94976 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - D95E1BE61D88D63400F94976 /* __PROJECT_NAME__Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = __PROJECT_NAME__Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; - D95E1BEB1D88D63400F94976 /* __PROJECT_NAME__Tests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = __PROJECT_NAME__Tests.swift; sourceTree = ""; }; - D95E1BED1D88D63400F94976 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - D95E1BF81D88E01300F94976 /* wk.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = wk.png; path = Resources/wk.png; sourceTree = SOURCE_ROOT; }; - D95E1BFA1D88E2D500F94976 /* __PROJECT_NAME__.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = __PROJECT_NAME__.swift; sourceTree = ""; }; + D9899DCA1DF4A092008766B5 /* __PROJECT_NAME__.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = __PROJECT_NAME__.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + D9899DCD1DF4A092008766B5 /* __PROJECT_NAME__.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = __PROJECT_NAME__.h; sourceTree = ""; }; + D9899DCE1DF4A092008766B5 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + D9899DD31DF4A092008766B5 /* __PROJECT_NAME__Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = __PROJECT_NAME__Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; + D9899DD81DF4A093008766B5 /* __PROJECT_NAME__Tests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = __PROJECT_NAME__Tests.swift; sourceTree = ""; }; + D9899DDA1DF4A093008766B5 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + D9899DE51DF4A372008766B5 /* __PROJECT_NAME__.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = __PROJECT_NAME__.swift; sourceTree = ""; }; + D9899DE71DF4A3F2008766B5 /* wk.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = wk.png; path = Resources/wk.png; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ - D95E1BD91D88D63300F94976 /* Frameworks */ = { + D9899DC61DF4A091008766B5 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - D95E1BE31D88D63400F94976 /* Frameworks */ = { + D9899DD01DF4A092008766B5 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - D95E1BE71D88D63400F94976 /* __PROJECT_NAME__.framework in Frameworks */, + D9899DD41DF4A092008766B5 /* __PROJECT_NAME__.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ - D95E1BD31D88D63200F94976 = { + D9899DC01DF4A091008766B5 = { isa = PBXGroup; children = ( - D95E1BDF1D88D63300F94976 /* Source */, - D95E1BF71D88DFFD00F94976 /* Resources */, - D95E1BEA1D88D63400F94976 /* Tests */, - D95E1BDE1D88D63300F94976 /* Products */, + D9899DCC1DF4A092008766B5 /* Source */, + D9899DE41DF4A229008766B5 /* Resources */, + D9899DD71DF4A092008766B5 /* Tests */, + D9899DCB1DF4A092008766B5 /* Products */, ); sourceTree = ""; }; - D95E1BDE1D88D63300F94976 /* Products */ = { + D9899DCB1DF4A092008766B5 /* Products */ = { isa = PBXGroup; children = ( - D95E1BDD1D88D63300F94976 /* __PROJECT_NAME__.framework */, - D95E1BE61D88D63400F94976 /* __PROJECT_NAME__Tests.xctest */, + D9899DCA1DF4A092008766B5 /* __PROJECT_NAME__.framework */, + D9899DD31DF4A092008766B5 /* __PROJECT_NAME__Tests.xctest */, ); name = Products; sourceTree = ""; }; - D95E1BDF1D88D63300F94976 /* Source */ = { + D9899DCC1DF4A092008766B5 /* Source */ = { isa = PBXGroup; children = ( - D95E1BFA1D88E2D500F94976 /* __PROJECT_NAME__.swift */, - D95E1BE01D88D63300F94976 /* __PROJECT_NAME__.h */, - D95E1BE11D88D63300F94976 /* Info.plist */, + D9899DE51DF4A372008766B5 /* __PROJECT_NAME__.swift */, + D9899DCD1DF4A092008766B5 /* __PROJECT_NAME__.h */, + D9899DCE1DF4A092008766B5 /* Info.plist */, ); path = Source; sourceTree = ""; }; - D95E1BEA1D88D63400F94976 /* Tests */ = { + D9899DD71DF4A092008766B5 /* Tests */ = { isa = PBXGroup; children = ( - D95E1BEB1D88D63400F94976 /* __PROJECT_NAME__Tests.swift */, - D95E1BED1D88D63400F94976 /* Info.plist */, + D9899DD81DF4A093008766B5 /* __PROJECT_NAME__Tests.swift */, + D9899DDA1DF4A093008766B5 /* Info.plist */, ); path = Tests; sourceTree = ""; }; - D95E1BF71D88DFFD00F94976 /* Resources */ = { + D9899DE41DF4A229008766B5 /* Resources */ = { isa = PBXGroup; children = ( - D95E1BF81D88E01300F94976 /* wk.png */, + D9899DE71DF4A3F2008766B5 /* wk.png */, ); - path = Resources; + name = Resources; sourceTree = ""; }; /* End PBXGroup section */ /* Begin PBXHeadersBuildPhase section */ - D95E1BDA1D88D63300F94976 /* Headers */ = { + D9899DC71DF4A091008766B5 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - D95E1BEE1D88D63400F94976 /* __PROJECT_NAME__.h in Headers */, + D9899DDB1DF4A093008766B5 /* __PROJECT_NAME__.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXHeadersBuildPhase section */ /* Begin PBXNativeTarget section */ - D95E1BDC1D88D63300F94976 /* __PROJECT_NAME__ */ = { + D9899DC91DF4A091008766B5 /* __PROJECT_NAME__ */ = { isa = PBXNativeTarget; - buildConfigurationList = D95E1BF11D88D63400F94976 /* Build configuration list for PBXNativeTarget "__PROJECT_NAME__" */; + buildConfigurationList = D9899DDE1DF4A093008766B5 /* Build configuration list for PBXNativeTarget "__PROJECT_NAME__" */; buildPhases = ( - D95E1BD81D88D63300F94976 /* Sources */, - D95E1BD91D88D63300F94976 /* Frameworks */, - D95E1BDA1D88D63300F94976 /* Headers */, - D95E1BDB1D88D63300F94976 /* Resources */, + D9899DC51DF4A091008766B5 /* Sources */, + D9899DC61DF4A091008766B5 /* Frameworks */, + D9899DC71DF4A091008766B5 /* Headers */, + D9899DC81DF4A091008766B5 /* Resources */, ); buildRules = ( ); @@ -129,76 +129,78 @@ ); name = __PROJECT_NAME__; productName = __PROJECT_NAME__; - productReference = D95E1BDD1D88D63300F94976 /* __PROJECT_NAME__.framework */; + productReference = D9899DCA1DF4A092008766B5 /* __PROJECT_NAME__.framework */; productType = "com.apple.product-type.framework"; }; - D95E1BE51D88D63400F94976 /* __PROJECT_NAME__Tests */ = { + D9899DD21DF4A092008766B5 /* __PROJECT_NAME__Tests */ = { isa = PBXNativeTarget; - buildConfigurationList = D95E1BF41D88D63400F94976 /* Build configuration list for PBXNativeTarget "__PROJECT_NAME__Tests" */; + buildConfigurationList = D9899DE11DF4A093008766B5 /* Build configuration list for PBXNativeTarget "__PROJECT_NAME__Tests" */; buildPhases = ( - D95E1BE21D88D63400F94976 /* Sources */, - D95E1BE31D88D63400F94976 /* Frameworks */, - D95E1BE41D88D63400F94976 /* Resources */, + D9899DCF1DF4A092008766B5 /* Sources */, + D9899DD01DF4A092008766B5 /* Frameworks */, + D9899DD11DF4A092008766B5 /* Resources */, ); buildRules = ( ); dependencies = ( - D95E1BE91D88D63400F94976 /* PBXTargetDependency */, + D9899DD61DF4A092008766B5 /* PBXTargetDependency */, ); name = __PROJECT_NAME__Tests; productName = __PROJECT_NAME__Tests; - productReference = D95E1BE61D88D63400F94976 /* __PROJECT_NAME__Tests.xctest */; + productReference = D9899DD31DF4A092008766B5 /* __PROJECT_NAME__Tests.xctest */; productType = "com.apple.product-type.bundle.unit-test"; }; /* End PBXNativeTarget section */ /* Begin PBXProject section */ - D95E1BD41D88D63200F94976 /* Project object */ = { + D9899DC11DF4A091008766B5 /* Project object */ = { isa = PBXProject; attributes = { - LastSwiftUpdateCheck = 0800; - LastUpgradeCheck = 0800; + LastSwiftUpdateCheck = 0810; + LastUpgradeCheck = 0810; ORGANIZATIONNAME = "__ORGANIZATION NAME__"; TargetAttributes = { - D95E1BDC1D88D63300F94976 = { - CreatedOnToolsVersion = 8.0; - LastSwiftMigration = 0800; + D9899DC91DF4A091008766B5 = { + CreatedOnToolsVersion = 8.1; + DevelopmentTeam = 8Q693ZG5RN; + LastSwiftMigration = 0810; ProvisioningStyle = Automatic; }; - D95E1BE51D88D63400F94976 = { - CreatedOnToolsVersion = 8.0; + D9899DD21DF4A092008766B5 = { + CreatedOnToolsVersion = 8.1; + DevelopmentTeam = 8Q693ZG5RN; ProvisioningStyle = Automatic; }; }; }; - buildConfigurationList = D95E1BD71D88D63300F94976 /* Build configuration list for PBXProject "__PROJECT_NAME__" */; + buildConfigurationList = D9899DC41DF4A091008766B5 /* Build configuration list for PBXProject "__PROJECT_NAME__" */; compatibilityVersion = "Xcode 3.2"; developmentRegion = English; hasScannedForEncodings = 0; knownRegions = ( en, ); - mainGroup = D95E1BD31D88D63200F94976; - productRefGroup = D95E1BDE1D88D63300F94976 /* Products */; + mainGroup = D9899DC01DF4A091008766B5; + productRefGroup = D9899DCB1DF4A092008766B5 /* Products */; projectDirPath = ""; projectRoot = ""; targets = ( - D95E1BDC1D88D63300F94976 /* __PROJECT_NAME__ */, - D95E1BE51D88D63400F94976 /* __PROJECT_NAME__Tests */, + D9899DC91DF4A091008766B5 /* __PROJECT_NAME__ */, + D9899DD21DF4A092008766B5 /* __PROJECT_NAME__Tests */, ); }; /* End PBXProject section */ /* Begin PBXResourcesBuildPhase section */ - D95E1BDB1D88D63300F94976 /* Resources */ = { + D9899DC81DF4A091008766B5 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - D95E1BF91D88E01300F94976 /* wk.png in Resources */, + D9899DE81DF4A3F2008766B5 /* wk.png in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - D95E1BE41D88D63400F94976 /* Resources */ = { + D9899DD11DF4A092008766B5 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -208,34 +210,34 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - D95E1BD81D88D63300F94976 /* Sources */ = { + D9899DC51DF4A091008766B5 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - D95E1BFB1D88E2D500F94976 /* __PROJECT_NAME__.swift in Sources */, + D9899DE61DF4A372008766B5 /* __PROJECT_NAME__.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - D95E1BE21D88D63400F94976 /* Sources */ = { + D9899DCF1DF4A092008766B5 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - D95E1BEC1D88D63400F94976 /* __PROJECT_NAME__Tests.swift in Sources */, + D9899DD91DF4A093008766B5 /* __PROJECT_NAME__Tests.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXSourcesBuildPhase section */ /* Begin PBXTargetDependency section */ - D95E1BE91D88D63400F94976 /* PBXTargetDependency */ = { + D9899DD61DF4A092008766B5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = D95E1BDC1D88D63300F94976 /* __PROJECT_NAME__ */; - targetProxy = D95E1BE81D88D63400F94976 /* PBXContainerItemProxy */; + target = D9899DC91DF4A091008766B5 /* __PROJECT_NAME__ */; + targetProxy = D9899DD51DF4A092008766B5 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin XCBuildConfiguration section */ - D95E1BEF1D88D63400F94976 /* Debug */ = { + D9899DDC1DF4A093008766B5 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; @@ -276,7 +278,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; + IPHONEOS_DEPLOYMENT_TARGET = 10.1; MTL_ENABLE_DEBUG_INFO = YES; ONLY_ACTIVE_ARCH = YES; SDKROOT = iphoneos; @@ -288,7 +290,7 @@ }; name = Debug; }; - D95E1BF01D88D63400F94976 /* Release */ = { + D9899DDD1DF4A093008766B5 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; @@ -323,7 +325,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; + IPHONEOS_DEPLOYMENT_TARGET = 10.1; MTL_ENABLE_DEBUG_INFO = NO; SDKROOT = iphoneos; SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; @@ -334,12 +336,13 @@ }; name = Release; }; - D95E1BF21D88D63400F94976 /* Debug */ = { + D9899DDF1DF4A093008766B5 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { CLANG_ENABLE_MODULES = YES; CODE_SIGN_IDENTITY = ""; DEFINES_MODULE = YES; + DEVELOPMENT_TEAM = 8Q693ZG5RN; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; @@ -354,12 +357,13 @@ }; name = Debug; }; - D95E1BF31D88D63400F94976 /* Release */ = { + D9899DE01DF4A093008766B5 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { CLANG_ENABLE_MODULES = YES; CODE_SIGN_IDENTITY = ""; DEFINES_MODULE = YES; + DEVELOPMENT_TEAM = 8Q693ZG5RN; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; @@ -373,10 +377,11 @@ }; name = Release; }; - D95E1BF51D88D63400F94976 /* Debug */ = { + D9899DE21DF4A093008766B5 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; + DEVELOPMENT_TEAM = 8Q693ZG5RN; INFOPLIST_FILE = __PROJECT_NAME__Tests/Info.plist; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; PRODUCT_BUNDLE_IDENTIFIER = "com.AN.ORGANIZATION.IDENTIFIER.--PROJECT-NAME--Tests"; @@ -385,10 +390,11 @@ }; name = Debug; }; - D95E1BF61D88D63400F94976 /* Release */ = { + D9899DE31DF4A093008766B5 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; + DEVELOPMENT_TEAM = 8Q693ZG5RN; INFOPLIST_FILE = __PROJECT_NAME__Tests/Info.plist; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; PRODUCT_BUNDLE_IDENTIFIER = "com.AN.ORGANIZATION.IDENTIFIER.--PROJECT-NAME--Tests"; @@ -400,34 +406,34 @@ /* End XCBuildConfiguration section */ /* Begin XCConfigurationList section */ - D95E1BD71D88D63300F94976 /* Build configuration list for PBXProject "__PROJECT_NAME__" */ = { + D9899DC41DF4A091008766B5 /* Build configuration list for PBXProject "__PROJECT_NAME__" */ = { isa = XCConfigurationList; buildConfigurations = ( - D95E1BEF1D88D63400F94976 /* Debug */, - D95E1BF01D88D63400F94976 /* Release */, + D9899DDC1DF4A093008766B5 /* Debug */, + D9899DDD1DF4A093008766B5 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - D95E1BF11D88D63400F94976 /* Build configuration list for PBXNativeTarget "__PROJECT_NAME__" */ = { + D9899DDE1DF4A093008766B5 /* Build configuration list for PBXNativeTarget "__PROJECT_NAME__" */ = { isa = XCConfigurationList; buildConfigurations = ( - D95E1BF21D88D63400F94976 /* Debug */, - D95E1BF31D88D63400F94976 /* Release */, + D9899DDF1DF4A093008766B5 /* Debug */, + D9899DE01DF4A093008766B5 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - D95E1BF41D88D63400F94976 /* Build configuration list for PBXNativeTarget "__PROJECT_NAME__Tests" */ = { + D9899DE11DF4A093008766B5 /* Build configuration list for PBXNativeTarget "__PROJECT_NAME__Tests" */ = { isa = XCConfigurationList; buildConfigurations = ( - D95E1BF51D88D63400F94976 /* Debug */, - D95E1BF61D88D63400F94976 /* Release */, + D9899DE21DF4A093008766B5 /* Debug */, + D9899DE31DF4A093008766B5 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; /* End XCConfigurationList section */ }; - rootObject = D95E1BD41D88D63200F94976 /* Project object */; + rootObject = D9899DC11DF4A091008766B5 /* Project object */; } diff --git a/__PROJECT_NAME__/__PROJECT_NAME__.xcodeproj/xcshareddata/xcschemes/__PROJECT_NAME__.xcscheme b/__PROJECT_NAME__/__PROJECT_NAME__.xcodeproj/xcshareddata/xcschemes/__PROJECT_NAME__.xcscheme index 44f5191..7e37ca0 100644 --- a/__PROJECT_NAME__/__PROJECT_NAME__.xcodeproj/xcshareddata/xcschemes/__PROJECT_NAME__.xcscheme +++ b/__PROJECT_NAME__/__PROJECT_NAME__.xcodeproj/xcshareddata/xcschemes/__PROJECT_NAME__.xcscheme @@ -1,6 +1,6 @@ @@ -32,7 +32,7 @@ skipped = "NO"> @@ -42,7 +42,7 @@ @@ -64,7 +64,7 @@ @@ -82,7 +82,7 @@ diff --git a/__PROJECT_NAME__/iOS Example/Source/AppDelegate.swift b/__PROJECT_NAME__/iOS Example/Source/AppDelegate.swift index f48c4f7..ca79ffa 100644 --- a/__PROJECT_NAME__/iOS Example/Source/AppDelegate.swift +++ b/__PROJECT_NAME__/iOS Example/Source/AppDelegate.swift @@ -3,7 +3,7 @@ // iOS Example // // Created by __AUTHOR NAME__ on __TODAYS_DATE__. -// Copyright © 2016 __ORGANIZATION NAME__. All rights reserved. +// Copyright © __TODAYS_YEAR__ __ORGANIZATION NAME__. All rights reserved. // import UIKit diff --git a/__PROJECT_NAME__/iOS Example/Source/ViewController.swift b/__PROJECT_NAME__/iOS Example/Source/ViewController.swift index 25ca581..d2c6031 100644 --- a/__PROJECT_NAME__/iOS Example/Source/ViewController.swift +++ b/__PROJECT_NAME__/iOS Example/Source/ViewController.swift @@ -3,7 +3,7 @@ // iOS Example // // Created by __AUTHOR NAME__ on __TODAYS_DATE__. -// Copyright © 2016 __ORGANIZATION NAME__. All rights reserved. +// Copyright © __TODAYS_YEAR__ __ORGANIZATION NAME__. All rights reserved. // import UIKit diff --git a/__PROJECT_NAME__/iOS Example/iOS Example.xcodeproj/project.pbxproj b/__PROJECT_NAME__/iOS Example/iOS Example.xcodeproj/project.pbxproj index 530519d..831aa06 100644 --- a/__PROJECT_NAME__/iOS Example/iOS Example.xcodeproj/project.pbxproj +++ b/__PROJECT_NAME__/iOS Example/iOS Example.xcodeproj/project.pbxproj @@ -7,71 +7,71 @@ objects = { /* Begin PBXBuildFile section */ - D95E1C451D88E71A00F94976 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = D95E1C441D88E71A00F94976 /* AppDelegate.swift */; }; - D95E1C471D88E71A00F94976 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = D95E1C461D88E71A00F94976 /* ViewController.swift */; }; - D95E1C4A1D88E71A00F94976 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = D95E1C481D88E71A00F94976 /* Main.storyboard */; }; - D95E1C4C1D88E71A00F94976 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = D95E1C4B1D88E71A00F94976 /* Assets.xcassets */; }; - D95E1C4F1D88E71A00F94976 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = D95E1C4D1D88E71A00F94976 /* LaunchScreen.storyboard */; }; - D95E1C8A1D88F39300F94976 /* __PROJECT_NAME__.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D95E1C891D88F39300F94976 /* __PROJECT_NAME__.framework */; }; + D9337FFB1DF4B24E001596B5 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = D9337FFA1DF4B24E001596B5 /* Main.storyboard */; }; + D9899DF61DF4A53C008766B5 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = D9899DF51DF4A53C008766B5 /* AppDelegate.swift */; }; + D9899DF81DF4A53C008766B5 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = D9899DF71DF4A53C008766B5 /* ViewController.swift */; }; + D9899DFD1DF4A53C008766B5 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = D9899DFC1DF4A53C008766B5 /* Assets.xcassets */; }; + D9899E001DF4A53C008766B5 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = D9899DFE1DF4A53C008766B5 /* LaunchScreen.storyboard */; }; + D9899E0F1DF4A8B0008766B5 /* __PROJECT_NAME__.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D9899E0E1DF4A8B0008766B5 /* __PROJECT_NAME__.framework */; }; /* End PBXBuildFile section */ /* Begin PBXFileReference section */ - D95E1C411D88E71A00F94976 /* iOS Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "iOS Example.app"; sourceTree = BUILT_PRODUCTS_DIR; }; - D95E1C441D88E71A00F94976 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; - D95E1C461D88E71A00F94976 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; }; - D95E1C491D88E71A00F94976 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; - D95E1C4B1D88E71A00F94976 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; - D95E1C4E1D88E71A00F94976 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; - D95E1C501D88E71A00F94976 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - D95E1C891D88F39300F94976 /* __PROJECT_NAME__.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = __PROJECT_NAME__.framework; path = "../build/Debug-iphoneos/__PROJECT_NAME__.framework"; sourceTree = ""; }; + D9337FFA1DF4B24E001596B5 /* Main.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = Main.storyboard; sourceTree = ""; }; + D9899DF21DF4A53C008766B5 /* iOS Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "iOS Example.app"; sourceTree = BUILT_PRODUCTS_DIR; }; + D9899DF51DF4A53C008766B5 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; + D9899DF71DF4A53C008766B5 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; }; + D9899DFC1DF4A53C008766B5 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; + D9899DFF1DF4A53C008766B5 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; + D9899E011DF4A53C008766B5 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + D9899E0E1DF4A8B0008766B5 /* __PROJECT_NAME__.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = __PROJECT_NAME__.framework; path = "../../../Library/Developer/Xcode/DerivedData/__PROJECT_NAME__-ghiobiksiyymbygbpisckcynbsdi/Build/Products/Debug-iphonesimulator/__PROJECT_NAME__.framework"; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ - D95E1C3E1D88E71A00F94976 /* Frameworks */ = { + D9899DEF1DF4A53C008766B5 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - D95E1C8A1D88F39300F94976 /* __PROJECT_NAME__.framework in Frameworks */, + D9899E0F1DF4A8B0008766B5 /* __PROJECT_NAME__.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ - D95E1C381D88E71A00F94976 = { + D9899DE91DF4A53C008766B5 = { isa = PBXGroup; children = ( - D95E1C431D88E71A00F94976 /* Source */, - D95E1C421D88E71A00F94976 /* Products */, - D95E1C881D88F39300F94976 /* Frameworks */, + D9899DF41DF4A53C008766B5 /* Source */, + D9899DF31DF4A53C008766B5 /* Products */, + D9899E0D1DF4A8B0008766B5 /* Frameworks */, ); sourceTree = ""; }; - D95E1C421D88E71A00F94976 /* Products */ = { + D9899DF31DF4A53C008766B5 /* Products */ = { isa = PBXGroup; children = ( - D95E1C411D88E71A00F94976 /* iOS Example.app */, + D9899DF21DF4A53C008766B5 /* iOS Example.app */, ); name = Products; sourceTree = ""; }; - D95E1C431D88E71A00F94976 /* Source */ = { + D9899DF41DF4A53C008766B5 /* Source */ = { isa = PBXGroup; children = ( - D95E1C441D88E71A00F94976 /* AppDelegate.swift */, - D95E1C461D88E71A00F94976 /* ViewController.swift */, - D95E1C481D88E71A00F94976 /* Main.storyboard */, - D95E1C4B1D88E71A00F94976 /* Assets.xcassets */, - D95E1C4D1D88E71A00F94976 /* LaunchScreen.storyboard */, - D95E1C501D88E71A00F94976 /* Info.plist */, + D9899DF51DF4A53C008766B5 /* AppDelegate.swift */, + D9899DF71DF4A53C008766B5 /* ViewController.swift */, + D9337FFA1DF4B24E001596B5 /* Main.storyboard */, + D9899DFC1DF4A53C008766B5 /* Assets.xcassets */, + D9899DFE1DF4A53C008766B5 /* LaunchScreen.storyboard */, + D9899E011DF4A53C008766B5 /* Info.plist */, ); path = Source; sourceTree = ""; }; - D95E1C881D88F39300F94976 /* Frameworks */ = { + D9899E0D1DF4A8B0008766B5 /* Frameworks */ = { isa = PBXGroup; children = ( - D95E1C891D88F39300F94976 /* __PROJECT_NAME__.framework */, + D9899E0E1DF4A8B0008766B5 /* __PROJECT_NAME__.framework */, ); name = Frameworks; sourceTree = ""; @@ -79,13 +79,13 @@ /* End PBXGroup section */ /* Begin PBXNativeTarget section */ - D95E1C401D88E71A00F94976 /* iOS Example */ = { + D9899DF11DF4A53C008766B5 /* iOS Example */ = { isa = PBXNativeTarget; - buildConfigurationList = D95E1C531D88E71A00F94976 /* Build configuration list for PBXNativeTarget "iOS Example" */; + buildConfigurationList = D9899E041DF4A53C008766B5 /* Build configuration list for PBXNativeTarget "iOS Example" */; buildPhases = ( - D95E1C3D1D88E71A00F94976 /* Sources */, - D95E1C3E1D88E71A00F94976 /* Frameworks */, - D95E1C3F1D88E71A00F94976 /* Resources */, + D9899DEE1DF4A53C008766B5 /* Sources */, + D9899DEF1DF4A53C008766B5 /* Frameworks */, + D9899DF01DF4A53C008766B5 /* Resources */, ); buildRules = ( ); @@ -93,26 +93,27 @@ ); name = "iOS Example"; productName = "iOS Example"; - productReference = D95E1C411D88E71A00F94976 /* iOS Example.app */; + productReference = D9899DF21DF4A53C008766B5 /* iOS Example.app */; productType = "com.apple.product-type.application"; }; /* End PBXNativeTarget section */ /* Begin PBXProject section */ - D95E1C391D88E71A00F94976 /* Project object */ = { + D9899DEA1DF4A53C008766B5 /* Project object */ = { isa = PBXProject; attributes = { - LastSwiftUpdateCheck = 0800; - LastUpgradeCheck = 0800; + LastSwiftUpdateCheck = 0810; + LastUpgradeCheck = 0810; ORGANIZATIONNAME = "__ORGANIZATION NAME__"; TargetAttributes = { - D95E1C401D88E71A00F94976 = { - CreatedOnToolsVersion = 8.0; + D9899DF11DF4A53C008766B5 = { + CreatedOnToolsVersion = 8.1; + DevelopmentTeam = 8Q693ZG5RN; ProvisioningStyle = Automatic; }; }; }; - buildConfigurationList = D95E1C3C1D88E71A00F94976 /* Build configuration list for PBXProject "iOS Example" */; + buildConfigurationList = D9899DED1DF4A53C008766B5 /* Build configuration list for PBXProject "iOS Example" */; compatibilityVersion = "Xcode 3.2"; developmentRegion = English; hasScannedForEncodings = 0; @@ -120,54 +121,46 @@ en, Base, ); - mainGroup = D95E1C381D88E71A00F94976; - productRefGroup = D95E1C421D88E71A00F94976 /* Products */; + mainGroup = D9899DE91DF4A53C008766B5; + productRefGroup = D9899DF31DF4A53C008766B5 /* Products */; projectDirPath = ""; projectRoot = ""; targets = ( - D95E1C401D88E71A00F94976 /* iOS Example */, + D9899DF11DF4A53C008766B5 /* iOS Example */, ); }; /* End PBXProject section */ /* Begin PBXResourcesBuildPhase section */ - D95E1C3F1D88E71A00F94976 /* Resources */ = { + D9899DF01DF4A53C008766B5 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - D95E1C4F1D88E71A00F94976 /* LaunchScreen.storyboard in Resources */, - D95E1C4C1D88E71A00F94976 /* Assets.xcassets in Resources */, - D95E1C4A1D88E71A00F94976 /* Main.storyboard in Resources */, + D9337FFB1DF4B24E001596B5 /* Main.storyboard in Resources */, + D9899E001DF4A53C008766B5 /* LaunchScreen.storyboard in Resources */, + D9899DFD1DF4A53C008766B5 /* Assets.xcassets in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXResourcesBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - D95E1C3D1D88E71A00F94976 /* Sources */ = { + D9899DEE1DF4A53C008766B5 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - D95E1C471D88E71A00F94976 /* ViewController.swift in Sources */, - D95E1C451D88E71A00F94976 /* AppDelegate.swift in Sources */, + D9899DF81DF4A53C008766B5 /* ViewController.swift in Sources */, + D9899DF61DF4A53C008766B5 /* AppDelegate.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXSourcesBuildPhase section */ /* Begin PBXVariantGroup section */ - D95E1C481D88E71A00F94976 /* Main.storyboard */ = { + D9899DFE1DF4A53C008766B5 /* LaunchScreen.storyboard */ = { isa = PBXVariantGroup; children = ( - D95E1C491D88E71A00F94976 /* Base */, - ); - name = Main.storyboard; - sourceTree = ""; - }; - D95E1C4D1D88E71A00F94976 /* LaunchScreen.storyboard */ = { - isa = PBXVariantGroup; - children = ( - D95E1C4E1D88E71A00F94976 /* Base */, + D9899DFF1DF4A53C008766B5 /* Base */, ); name = LaunchScreen.storyboard; sourceTree = ""; @@ -175,7 +168,7 @@ /* End PBXVariantGroup section */ /* Begin XCBuildConfiguration section */ - D95E1C511D88E71A00F94976 /* Debug */ = { + D9899E021DF4A53C008766B5 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; @@ -215,7 +208,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; + IPHONEOS_DEPLOYMENT_TARGET = 10.1; MTL_ENABLE_DEBUG_INFO = YES; ONLY_ACTIVE_ARCH = YES; SDKROOT = iphoneos; @@ -225,7 +218,7 @@ }; name = Debug; }; - D95E1C521D88E71A00F94976 /* Release */ = { + D9899E031DF4A53C008766B5 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; @@ -259,7 +252,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; + IPHONEOS_DEPLOYMENT_TARGET = 10.1; MTL_ENABLE_DEBUG_INFO = NO; SDKROOT = iphoneos; SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; @@ -268,10 +261,11 @@ }; name = Release; }; - D95E1C541D88E71A00F94976 /* Debug */ = { + D9899E051DF4A53C008766B5 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + DEVELOPMENT_TEAM = 8Q693ZG5RN; INFOPLIST_FILE = Source/Info.plist; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; PRODUCT_BUNDLE_IDENTIFIER = "com.AN.ORGANIZATION.IDENTIFIER.iOS-Example"; @@ -280,10 +274,11 @@ }; name = Debug; }; - D95E1C551D88E71A00F94976 /* Release */ = { + D9899E061DF4A53C008766B5 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + DEVELOPMENT_TEAM = 8Q693ZG5RN; INFOPLIST_FILE = Source/Info.plist; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; PRODUCT_BUNDLE_IDENTIFIER = "com.AN.ORGANIZATION.IDENTIFIER.iOS-Example"; @@ -295,25 +290,25 @@ /* End XCBuildConfiguration section */ /* Begin XCConfigurationList section */ - D95E1C3C1D88E71A00F94976 /* Build configuration list for PBXProject "iOS Example" */ = { + D9899DED1DF4A53C008766B5 /* Build configuration list for PBXProject "iOS Example" */ = { isa = XCConfigurationList; buildConfigurations = ( - D95E1C511D88E71A00F94976 /* Debug */, - D95E1C521D88E71A00F94976 /* Release */, + D9899E021DF4A53C008766B5 /* Debug */, + D9899E031DF4A53C008766B5 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - D95E1C531D88E71A00F94976 /* Build configuration list for PBXNativeTarget "iOS Example" */ = { + D9899E041DF4A53C008766B5 /* Build configuration list for PBXNativeTarget "iOS Example" */ = { isa = XCConfigurationList; buildConfigurations = ( - D95E1C541D88E71A00F94976 /* Debug */, - D95E1C551D88E71A00F94976 /* Release */, + D9899E051DF4A53C008766B5 /* Debug */, + D9899E061DF4A53C008766B5 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; /* End XCConfigurationList section */ }; - rootObject = D95E1C391D88E71A00F94976 /* Project object */; + rootObject = D9899DEA1DF4A53C008766B5 /* Project object */; } diff --git a/__PROJECT_NAME__/iOS Example/iOS Example.xcodeproj/xcshareddata/xcschemes/iOS Example.xcscheme b/__PROJECT_NAME__/iOS Example/iOS Example.xcodeproj/xcshareddata/xcschemes/iOS Example.xcscheme index 9efeaf9..5a537b8 100644 --- a/__PROJECT_NAME__/iOS Example/iOS Example.xcodeproj/xcshareddata/xcschemes/iOS Example.xcscheme +++ b/__PROJECT_NAME__/iOS Example/iOS Example.xcodeproj/xcshareddata/xcschemes/iOS Example.xcscheme @@ -1,6 +1,6 @@ @@ -32,7 +32,7 @@ @@ -55,7 +55,7 @@ runnableDebuggingMode = "0"> @@ -74,7 +74,7 @@ runnableDebuggingMode = "0">