From c88553ef9ddc28a97c4ff88b7a5860f2d41c4842 Mon Sep 17 00:00:00 2001 From: Winnie Quinn Date: Fri, 22 Jun 2018 15:01:15 -0400 Subject: [PATCH 1/2] Convert project to Carthage --- .gitignore | 5 +- Cartfile | 1 + Cartfile.resolved | 1 + .../NYPLCardCreator.xcodeproj/project.pbxproj | 576 ---------------- .../contents.xcworkspacedata | 10 - .../NYPLCardCreator.xcscmblueprint | 30 - Example/Podfile | 11 - Example/Podfile.lock | 19 - Example/Tests/Tests.swift | 14 - NYPLCardCreator.podspec | 39 -- NYPLCardCreator.xcodeproj/project.pbxproj | 639 ++++++++++++++++++ .../contents.xcworkspacedata | 0 .../xcshareddata/IDEWorkspaceChecks.plist | 8 + .../NYPLCardCreator-Example.xcscheme | 0 .../{Classes => }/ActivityTitleView.swift | 0 NYPLCardCreator/{Classes => }/Address.swift | 0 .../{Classes => }/AddressCell.swift | 0 .../{Classes => }/AddressStep.swift | 0 .../{Classes => }/AddressViewController.swift | 0 .../AlternativeAddressesViewController.swift | 0 NYPLCardCreator/Assets/.gitkeep | 0 .../{Classes => }/AuthenticatingSession.swift | 0 .../{Classes => }/CardCreator.swift | 0 .../CardCreatorConfiguration.swift | 0 NYPLCardCreator/{Classes => }/CardType.swift | 0 NYPLCardCreator/Classes/.gitkeep | 0 .../ConfirmValidAddressViewController.swift | 0 .../FormTableViewController.swift | 0 {Example/Tests => NYPLCardCreator}/Info.plist | 10 +- .../IntroductionViewController.swift | 0 .../{Classes => }/LabelledTextViewCell.swift | 0 .../LocationViewController.swift | 0 NYPLCardCreator/NYPLCardCreator.h | 19 + .../NameAndEmailViewController.swift | 0 .../{Classes => }/PlacemarkQuery.swift | 0 .../RemoteHTMLViewController.swift | 0 .../{Classes => }/SummaryAddressCell.swift | 0 .../{Classes => }/SummaryCell.swift | 0 .../{Classes => }/TableViewController.swift | 0 .../UserCredentialsViewController.swift | 0 .../UserSummaryViewController.swift | 0 .../UsernameAndPINViewController.swift | 0 .../ValidateAddressResponse.swift | 0 .../ValidateUsernameResponse.swift | 0 .../AppDelegate.swift | 0 .../Base.lproj/LaunchScreen.xib | 0 .../AppIcon.appiconset/Contents.json | 5 + .../CheckboxOff.imageset/CheckboxOff@1x.png | Bin .../CheckboxOff.imageset/CheckboxOff@2x.png | Bin .../CheckboxOff.imageset/CheckboxOff@3x.png | Bin .../CheckboxOff.imageset/Contents.json | 0 .../CheckboxOn.imageset/CheckboxOn@1x.png | Bin .../CheckboxOn.imageset/CheckboxOn@2x.png | Bin .../CheckboxOn.imageset/CheckboxOn@3x.png | Bin .../CheckboxOn.imageset/Contents.json | 0 .../Images.xcassets/Contents.json | 0 .../Info.plist | 0 .../InfoPlist.strings | 0 _Pods.xcodeproj | 1 - 59 files changed, 682 insertions(+), 706 deletions(-) create mode 100644 Cartfile create mode 100644 Cartfile.resolved delete mode 100644 Example/NYPLCardCreator.xcodeproj/project.pbxproj delete mode 100644 Example/NYPLCardCreator.xcworkspace/contents.xcworkspacedata delete mode 100644 Example/NYPLCardCreator.xcworkspace/xcshareddata/NYPLCardCreator.xcscmblueprint delete mode 100644 Example/Podfile delete mode 100644 Example/Podfile.lock delete mode 100644 Example/Tests/Tests.swift delete mode 100644 NYPLCardCreator.podspec create mode 100644 NYPLCardCreator.xcodeproj/project.pbxproj rename {Example/NYPLCardCreator.xcodeproj => NYPLCardCreator.xcodeproj}/project.xcworkspace/contents.xcworkspacedata (100%) create mode 100644 NYPLCardCreator.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist rename {Example/NYPLCardCreator.xcodeproj => NYPLCardCreator.xcodeproj}/xcshareddata/xcschemes/NYPLCardCreator-Example.xcscheme (100%) rename NYPLCardCreator/{Classes => }/ActivityTitleView.swift (100%) rename NYPLCardCreator/{Classes => }/Address.swift (100%) rename NYPLCardCreator/{Classes => }/AddressCell.swift (100%) rename NYPLCardCreator/{Classes => }/AddressStep.swift (100%) rename NYPLCardCreator/{Classes => }/AddressViewController.swift (100%) rename NYPLCardCreator/{Classes => }/AlternativeAddressesViewController.swift (100%) delete mode 100644 NYPLCardCreator/Assets/.gitkeep rename NYPLCardCreator/{Classes => }/AuthenticatingSession.swift (100%) rename NYPLCardCreator/{Classes => }/CardCreator.swift (100%) rename NYPLCardCreator/{Classes => }/CardCreatorConfiguration.swift (100%) rename NYPLCardCreator/{Classes => }/CardType.swift (100%) delete mode 100644 NYPLCardCreator/Classes/.gitkeep rename NYPLCardCreator/{Classes => }/ConfirmValidAddressViewController.swift (100%) rename NYPLCardCreator/{Classes => }/FormTableViewController.swift (100%) rename {Example/Tests => NYPLCardCreator}/Info.plist (79%) rename NYPLCardCreator/{Classes => }/IntroductionViewController.swift (100%) rename NYPLCardCreator/{Classes => }/LabelledTextViewCell.swift (100%) rename NYPLCardCreator/{Classes => }/LocationViewController.swift (100%) create mode 100644 NYPLCardCreator/NYPLCardCreator.h rename NYPLCardCreator/{Classes => }/NameAndEmailViewController.swift (100%) rename NYPLCardCreator/{Classes => }/PlacemarkQuery.swift (100%) rename NYPLCardCreator/{Classes => }/RemoteHTMLViewController.swift (100%) rename NYPLCardCreator/{Classes => }/SummaryAddressCell.swift (100%) rename NYPLCardCreator/{Classes => }/SummaryCell.swift (100%) rename NYPLCardCreator/{Classes => }/TableViewController.swift (100%) rename NYPLCardCreator/{Classes => }/UserCredentialsViewController.swift (100%) rename NYPLCardCreator/{Classes => }/UserSummaryViewController.swift (100%) rename NYPLCardCreator/{Classes => }/UsernameAndPINViewController.swift (100%) rename NYPLCardCreator/{Classes => }/ValidateAddressResponse.swift (100%) rename NYPLCardCreator/{Classes => }/ValidateUsernameResponse.swift (100%) rename {Example/NYPLCardCreator => NYPLCardCreatorExample}/AppDelegate.swift (100%) rename {Example/NYPLCardCreator => NYPLCardCreatorExample}/Base.lproj/LaunchScreen.xib (100%) rename {Example/NYPLCardCreator => NYPLCardCreatorExample}/Images.xcassets/AppIcon.appiconset/Contents.json (88%) rename {Example/NYPLCardCreator => NYPLCardCreatorExample}/Images.xcassets/CheckboxOff.imageset/CheckboxOff@1x.png (100%) rename {Example/NYPLCardCreator => NYPLCardCreatorExample}/Images.xcassets/CheckboxOff.imageset/CheckboxOff@2x.png (100%) rename {Example/NYPLCardCreator => NYPLCardCreatorExample}/Images.xcassets/CheckboxOff.imageset/CheckboxOff@3x.png (100%) rename {Example/NYPLCardCreator => NYPLCardCreatorExample}/Images.xcassets/CheckboxOff.imageset/Contents.json (100%) rename {Example/NYPLCardCreator => NYPLCardCreatorExample}/Images.xcassets/CheckboxOn.imageset/CheckboxOn@1x.png (100%) rename {Example/NYPLCardCreator => NYPLCardCreatorExample}/Images.xcassets/CheckboxOn.imageset/CheckboxOn@2x.png (100%) rename {Example/NYPLCardCreator => NYPLCardCreatorExample}/Images.xcassets/CheckboxOn.imageset/CheckboxOn@3x.png (100%) rename {Example/NYPLCardCreator => NYPLCardCreatorExample}/Images.xcassets/CheckboxOn.imageset/Contents.json (100%) rename {Example/NYPLCardCreator => NYPLCardCreatorExample}/Images.xcassets/Contents.json (100%) rename {Example/NYPLCardCreator => NYPLCardCreatorExample}/Info.plist (100%) rename {Example/NYPLCardCreator => NYPLCardCreatorExample}/InfoPlist.strings (100%) delete mode 120000 _Pods.xcodeproj diff --git a/.gitignore b/.gitignore index 7994974..162a405 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,6 @@ +## macOS +.DS_Store + ## Build generated build/ DerivedData/ @@ -45,7 +48,7 @@ Pods/ # Carthage # # Add this line if you want to avoid checking in source code from Carthage dependencies. -# Carthage/Checkouts +Carthage/Checkouts Carthage/Build diff --git a/Cartfile b/Cartfile new file mode 100644 index 0000000..e3c82fd --- /dev/null +++ b/Cartfile @@ -0,0 +1 @@ +github "PureLayout/PureLayout" ~> 3.0 diff --git a/Cartfile.resolved b/Cartfile.resolved new file mode 100644 index 0000000..e9bc55c --- /dev/null +++ b/Cartfile.resolved @@ -0,0 +1 @@ +github "PureLayout/PureLayout" "v3.0.2" diff --git a/Example/NYPLCardCreator.xcodeproj/project.pbxproj b/Example/NYPLCardCreator.xcodeproj/project.pbxproj deleted file mode 100644 index 048d7d1..0000000 --- a/Example/NYPLCardCreator.xcodeproj/project.pbxproj +++ /dev/null @@ -1,576 +0,0 @@ -// !$*UTF8*$! -{ - archiveVersion = 1; - classes = { - }; - objectVersion = 46; - objects = { - -/* Begin PBXBuildFile section */ - 2D6F7C391D90FB3A000B906A /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 2D6F7C381D90FB3A000B906A /* InfoPlist.strings */; }; - 607FACD61AFB9204008FA782 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACD51AFB9204008FA782 /* AppDelegate.swift */; }; - 607FACDD1AFB9204008FA782 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 607FACDC1AFB9204008FA782 /* Images.xcassets */; }; - 607FACE01AFB9204008FA782 /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */; }; - 607FACEC1AFB9204008FA782 /* Tests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACEB1AFB9204008FA782 /* Tests.swift */; }; - AF9A31ADAD70DB2DB05A1A99 /* Pods_NYPLCardCreator_Tests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C8BC5A5AB46D7EB0CE1F9054 /* Pods_NYPLCardCreator_Tests.framework */; }; - B9117F4A472071FDFBF6773E /* Pods_NYPLCardCreator_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AEE436D7E9215779AEB7E1E0 /* Pods_NYPLCardCreator_Example.framework */; }; -/* End PBXBuildFile section */ - -/* Begin PBXContainerItemProxy section */ - 607FACE61AFB9204008FA782 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 607FACC81AFB9204008FA782 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 607FACCF1AFB9204008FA782; - remoteInfo = NYPLCardCreator; - }; -/* End PBXContainerItemProxy section */ - -/* Begin PBXFileReference section */ - 2D6F7C381D90FB3A000B906A /* InfoPlist.strings */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.strings; path = InfoPlist.strings; sourceTree = ""; }; - 34F6261B7DA4E92CD4AE56B5 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; name = README.md; path = ../README.md; sourceTree = ""; }; - 607FACD01AFB9204008FA782 /* NYPLCardCreator_Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = NYPLCardCreator_Example.app; sourceTree = BUILT_PRODUCTS_DIR; }; - 607FACD41AFB9204008FA782 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 607FACD51AFB9204008FA782 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; - 607FACDC1AFB9204008FA782 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = ""; }; - 607FACDF1AFB9204008FA782 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; - 607FACE51AFB9204008FA782 /* NYPLCardCreator_Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = NYPLCardCreator_Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; - 607FACEA1AFB9204008FA782 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 607FACEB1AFB9204008FA782 /* Tests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Tests.swift; sourceTree = ""; }; - 68F28CF904053502CFF03E89 /* Pods-NYPLCardCreator_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-NYPLCardCreator_Tests.release.xcconfig"; path = "Pods/Target Support Files/Pods-NYPLCardCreator_Tests/Pods-NYPLCardCreator_Tests.release.xcconfig"; sourceTree = ""; }; - 82086D84C03ADCB4B8BF0DD9 /* Pods-NYPLCardCreator_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-NYPLCardCreator_Example.release.xcconfig"; path = "Pods/Target Support Files/Pods-NYPLCardCreator_Example/Pods-NYPLCardCreator_Example.release.xcconfig"; sourceTree = ""; }; - 9FF403ECE40EDBE474FA77D9 /* NYPLCardCreator.podspec */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = NYPLCardCreator.podspec; path = ../NYPLCardCreator.podspec; sourceTree = ""; }; - AEE436D7E9215779AEB7E1E0 /* Pods_NYPLCardCreator_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_NYPLCardCreator_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - C8BC5A5AB46D7EB0CE1F9054 /* Pods_NYPLCardCreator_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_NYPLCardCreator_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - CD381F36D933F411E1079E7A /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = LICENSE; path = ../LICENSE; sourceTree = ""; }; - E44B16D5D38DB061F9DF950D /* Pods-NYPLCardCreator_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-NYPLCardCreator_Tests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-NYPLCardCreator_Tests/Pods-NYPLCardCreator_Tests.debug.xcconfig"; sourceTree = ""; }; - FA1E9E9D8FBA5A616D25C10E /* Pods-NYPLCardCreator_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-NYPLCardCreator_Example.debug.xcconfig"; path = "Pods/Target Support Files/Pods-NYPLCardCreator_Example/Pods-NYPLCardCreator_Example.debug.xcconfig"; sourceTree = ""; }; -/* End PBXFileReference section */ - -/* Begin PBXFrameworksBuildPhase section */ - 607FACCD1AFB9204008FA782 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - B9117F4A472071FDFBF6773E /* Pods_NYPLCardCreator_Example.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 607FACE21AFB9204008FA782 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - AF9A31ADAD70DB2DB05A1A99 /* Pods_NYPLCardCreator_Tests.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXFrameworksBuildPhase section */ - -/* Begin PBXGroup section */ - 607FACC71AFB9204008FA782 = { - isa = PBXGroup; - children = ( - 607FACF51AFB993E008FA782 /* Podspec Metadata */, - 607FACD21AFB9204008FA782 /* Example for NYPLCardCreator */, - 607FACE81AFB9204008FA782 /* Tests */, - 607FACD11AFB9204008FA782 /* Products */, - 970A218B73C9D8769F16822B /* Pods */, - 9042A7DBE0CDD8162AA0E597 /* Frameworks */, - ); - sourceTree = ""; - }; - 607FACD11AFB9204008FA782 /* Products */ = { - isa = PBXGroup; - children = ( - 607FACD01AFB9204008FA782 /* NYPLCardCreator_Example.app */, - 607FACE51AFB9204008FA782 /* NYPLCardCreator_Tests.xctest */, - ); - name = Products; - sourceTree = ""; - }; - 607FACD21AFB9204008FA782 /* Example for NYPLCardCreator */ = { - isa = PBXGroup; - children = ( - 607FACD51AFB9204008FA782 /* AppDelegate.swift */, - 607FACDC1AFB9204008FA782 /* Images.xcassets */, - 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */, - 607FACD31AFB9204008FA782 /* Supporting Files */, - ); - name = "Example for NYPLCardCreator"; - path = NYPLCardCreator; - sourceTree = ""; - }; - 607FACD31AFB9204008FA782 /* Supporting Files */ = { - isa = PBXGroup; - children = ( - 607FACD41AFB9204008FA782 /* Info.plist */, - 2D6F7C381D90FB3A000B906A /* InfoPlist.strings */, - ); - name = "Supporting Files"; - sourceTree = ""; - }; - 607FACE81AFB9204008FA782 /* Tests */ = { - isa = PBXGroup; - children = ( - 607FACEB1AFB9204008FA782 /* Tests.swift */, - 607FACE91AFB9204008FA782 /* Supporting Files */, - ); - path = Tests; - sourceTree = ""; - }; - 607FACE91AFB9204008FA782 /* Supporting Files */ = { - isa = PBXGroup; - children = ( - 607FACEA1AFB9204008FA782 /* Info.plist */, - ); - name = "Supporting Files"; - sourceTree = ""; - }; - 607FACF51AFB993E008FA782 /* Podspec Metadata */ = { - isa = PBXGroup; - children = ( - 9FF403ECE40EDBE474FA77D9 /* NYPLCardCreator.podspec */, - 34F6261B7DA4E92CD4AE56B5 /* README.md */, - CD381F36D933F411E1079E7A /* LICENSE */, - ); - name = "Podspec Metadata"; - sourceTree = ""; - }; - 9042A7DBE0CDD8162AA0E597 /* Frameworks */ = { - isa = PBXGroup; - children = ( - AEE436D7E9215779AEB7E1E0 /* Pods_NYPLCardCreator_Example.framework */, - C8BC5A5AB46D7EB0CE1F9054 /* Pods_NYPLCardCreator_Tests.framework */, - ); - name = Frameworks; - sourceTree = ""; - }; - 970A218B73C9D8769F16822B /* Pods */ = { - isa = PBXGroup; - children = ( - FA1E9E9D8FBA5A616D25C10E /* Pods-NYPLCardCreator_Example.debug.xcconfig */, - 82086D84C03ADCB4B8BF0DD9 /* Pods-NYPLCardCreator_Example.release.xcconfig */, - E44B16D5D38DB061F9DF950D /* Pods-NYPLCardCreator_Tests.debug.xcconfig */, - 68F28CF904053502CFF03E89 /* Pods-NYPLCardCreator_Tests.release.xcconfig */, - ); - name = Pods; - sourceTree = ""; - }; -/* End PBXGroup section */ - -/* Begin PBXNativeTarget section */ - 607FACCF1AFB9204008FA782 /* NYPLCardCreator_Example */ = { - isa = PBXNativeTarget; - buildConfigurationList = 607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget "NYPLCardCreator_Example" */; - buildPhases = ( - C31A75D21A487822CF0B7DB3 /* [CP] Check Pods Manifest.lock */, - 607FACCC1AFB9204008FA782 /* Sources */, - 607FACCD1AFB9204008FA782 /* Frameworks */, - 607FACCE1AFB9204008FA782 /* Resources */, - 0235409AACBB40DFA0340F03 /* [CP] Embed Pods Frameworks */, - 62EFFC7809E852CCDA742706 /* [CP] Copy Pods Resources */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = NYPLCardCreator_Example; - productName = NYPLCardCreator; - productReference = 607FACD01AFB9204008FA782 /* NYPLCardCreator_Example.app */; - productType = "com.apple.product-type.application"; - }; - 607FACE41AFB9204008FA782 /* NYPLCardCreator_Tests */ = { - isa = PBXNativeTarget; - buildConfigurationList = 607FACF21AFB9204008FA782 /* Build configuration list for PBXNativeTarget "NYPLCardCreator_Tests" */; - buildPhases = ( - CEECABE3C9C2F9305CD7B829 /* [CP] Check Pods Manifest.lock */, - 607FACE11AFB9204008FA782 /* Sources */, - 607FACE21AFB9204008FA782 /* Frameworks */, - 607FACE31AFB9204008FA782 /* Resources */, - 7F0A4E0BBCEDDCDF5470A7D1 /* [CP] Embed Pods Frameworks */, - CC681EDF612CFE5EFF5BC46B /* [CP] Copy Pods Resources */, - ); - buildRules = ( - ); - dependencies = ( - 607FACE71AFB9204008FA782 /* PBXTargetDependency */, - ); - name = NYPLCardCreator_Tests; - productName = Tests; - productReference = 607FACE51AFB9204008FA782 /* NYPLCardCreator_Tests.xctest */; - productType = "com.apple.product-type.bundle.unit-test"; - }; -/* End PBXNativeTarget section */ - -/* Begin PBXProject section */ - 607FACC81AFB9204008FA782 /* Project object */ = { - isa = PBXProject; - attributes = { - LastSwiftUpdateCheck = 0720; - LastUpgradeCheck = 0720; - ORGANIZATIONNAME = CocoaPods; - TargetAttributes = { - 607FACCF1AFB9204008FA782 = { - CreatedOnToolsVersion = 6.3.1; - LastSwiftMigration = 0810; - }; - 607FACE41AFB9204008FA782 = { - CreatedOnToolsVersion = 6.3.1; - LastSwiftMigration = 0810; - TestTargetID = 607FACCF1AFB9204008FA782; - }; - }; - }; - buildConfigurationList = 607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject "NYPLCardCreator" */; - compatibilityVersion = "Xcode 3.2"; - developmentRegion = English; - hasScannedForEncodings = 0; - knownRegions = ( - en, - Base, - ); - mainGroup = 607FACC71AFB9204008FA782; - productRefGroup = 607FACD11AFB9204008FA782 /* Products */; - projectDirPath = ""; - projectRoot = ""; - targets = ( - 607FACCF1AFB9204008FA782 /* NYPLCardCreator_Example */, - 607FACE41AFB9204008FA782 /* NYPLCardCreator_Tests */, - ); - }; -/* End PBXProject section */ - -/* Begin PBXResourcesBuildPhase section */ - 607FACCE1AFB9204008FA782 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 607FACE01AFB9204008FA782 /* LaunchScreen.xib in Resources */, - 2D6F7C391D90FB3A000B906A /* InfoPlist.strings in Resources */, - 607FACDD1AFB9204008FA782 /* Images.xcassets in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 607FACE31AFB9204008FA782 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXResourcesBuildPhase section */ - -/* Begin PBXShellScriptBuildPhase section */ - 0235409AACBB40DFA0340F03 /* [CP] Embed Pods Frameworks */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - ); - name = "[CP] Embed Pods Frameworks"; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-NYPLCardCreator_Example/Pods-NYPLCardCreator_Example-frameworks.sh\"\n"; - showEnvVarsInLog = 0; - }; - 62EFFC7809E852CCDA742706 /* [CP] Copy Pods Resources */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - ); - name = "[CP] Copy Pods Resources"; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-NYPLCardCreator_Example/Pods-NYPLCardCreator_Example-resources.sh\"\n"; - showEnvVarsInLog = 0; - }; - 7F0A4E0BBCEDDCDF5470A7D1 /* [CP] Embed Pods Frameworks */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - ); - name = "[CP] Embed Pods Frameworks"; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-NYPLCardCreator_Tests/Pods-NYPLCardCreator_Tests-frameworks.sh\"\n"; - showEnvVarsInLog = 0; - }; - C31A75D21A487822CF0B7DB3 /* [CP] Check Pods Manifest.lock */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - ); - name = "[CP] Check Pods Manifest.lock"; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [[ $? != 0 ]] ; then\n cat << EOM\nerror: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\nEOM\n exit 1\nfi\n"; - showEnvVarsInLog = 0; - }; - CC681EDF612CFE5EFF5BC46B /* [CP] Copy Pods Resources */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - ); - name = "[CP] Copy Pods Resources"; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-NYPLCardCreator_Tests/Pods-NYPLCardCreator_Tests-resources.sh\"\n"; - showEnvVarsInLog = 0; - }; - CEECABE3C9C2F9305CD7B829 /* [CP] Check Pods Manifest.lock */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - ); - name = "[CP] Check Pods Manifest.lock"; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [[ $? != 0 ]] ; then\n cat << EOM\nerror: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\nEOM\n exit 1\nfi\n"; - showEnvVarsInLog = 0; - }; -/* End PBXShellScriptBuildPhase section */ - -/* Begin PBXSourcesBuildPhase section */ - 607FACCC1AFB9204008FA782 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 607FACD61AFB9204008FA782 /* AppDelegate.swift in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 607FACE11AFB9204008FA782 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 607FACEC1AFB9204008FA782 /* Tests.swift in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXSourcesBuildPhase section */ - -/* Begin PBXTargetDependency section */ - 607FACE71AFB9204008FA782 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 607FACCF1AFB9204008FA782 /* NYPLCardCreator_Example */; - targetProxy = 607FACE61AFB9204008FA782 /* PBXContainerItemProxy */; - }; -/* End PBXTargetDependency section */ - -/* Begin PBXVariantGroup section */ - 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */ = { - isa = PBXVariantGroup; - children = ( - 607FACDF1AFB9204008FA782 /* Base */, - ); - name = LaunchScreen.xib; - sourceTree = ""; - }; -/* End PBXVariantGroup section */ - -/* Begin XCBuildConfiguration section */ - 607FACED1AFB9204008FA782 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - ENABLE_STRICT_OBJC_MSGSEND = YES; - ENABLE_TESTABILITY = YES; - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_DYNAMIC_NO_PIC = NO; - GCC_NO_COMMON_BLOCKS = YES; - GCC_OPTIMIZATION_LEVEL = 0; - GCC_PREPROCESSOR_DEFINITIONS = ( - "DEBUG=1", - "$(inherited)", - ); - GCC_SYMBOLS_PRIVATE_EXTERN = NO; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 8.3; - MTL_ENABLE_DEBUG_INFO = YES; - ONLY_ACTIVE_ARCH = YES; - SDKROOT = iphoneos; - SWIFT_OPTIMIZATION_LEVEL = "-Onone"; - }; - name = Debug; - }; - 607FACEE1AFB9204008FA782 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - ENABLE_NS_ASSERTIONS = NO; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_NO_COMMON_BLOCKS = YES; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 8.3; - MTL_ENABLE_DEBUG_INFO = NO; - SDKROOT = iphoneos; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 607FACF01AFB9204008FA782 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = FA1E9E9D8FBA5A616D25C10E /* Pods-NYPLCardCreator_Example.debug.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - INFOPLIST_FILE = NYPLCardCreator/Info.plist; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - MODULE_NAME = ExampleApp; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.$(PRODUCT_NAME:rfc1034identifier)"; - PRODUCT_NAME = "$(TARGET_NAME)"; - SWIFT_VERSION = 3.0; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 607FACF11AFB9204008FA782 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 82086D84C03ADCB4B8BF0DD9 /* Pods-NYPLCardCreator_Example.release.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - INFOPLIST_FILE = NYPLCardCreator/Info.plist; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - MODULE_NAME = ExampleApp; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.$(PRODUCT_NAME:rfc1034identifier)"; - PRODUCT_NAME = "$(TARGET_NAME)"; - SWIFT_VERSION = 3.0; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Release; - }; - 607FACF31AFB9204008FA782 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = E44B16D5D38DB061F9DF950D /* Pods-NYPLCardCreator_Tests.debug.xcconfig */; - buildSettings = { - FRAMEWORK_SEARCH_PATHS = ( - "$(SDKROOT)/Developer/Library/Frameworks", - "$(inherited)", - ); - GCC_PREPROCESSOR_DEFINITIONS = ( - "DEBUG=1", - "$(inherited)", - ); - INFOPLIST_FILE = Tests/Info.plist; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.$(PRODUCT_NAME:rfc1034identifier)"; - PRODUCT_NAME = "$(TARGET_NAME)"; - SWIFT_VERSION = 3.0; - }; - name = Debug; - }; - 607FACF41AFB9204008FA782 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 68F28CF904053502CFF03E89 /* Pods-NYPLCardCreator_Tests.release.xcconfig */; - buildSettings = { - FRAMEWORK_SEARCH_PATHS = ( - "$(SDKROOT)/Developer/Library/Frameworks", - "$(inherited)", - ); - INFOPLIST_FILE = Tests/Info.plist; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.$(PRODUCT_NAME:rfc1034identifier)"; - PRODUCT_NAME = "$(TARGET_NAME)"; - SWIFT_VERSION = 3.0; - }; - name = Release; - }; -/* End XCBuildConfiguration section */ - -/* Begin XCConfigurationList section */ - 607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject "NYPLCardCreator" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 607FACED1AFB9204008FA782 /* Debug */, - 607FACEE1AFB9204008FA782 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget "NYPLCardCreator_Example" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 607FACF01AFB9204008FA782 /* Debug */, - 607FACF11AFB9204008FA782 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 607FACF21AFB9204008FA782 /* Build configuration list for PBXNativeTarget "NYPLCardCreator_Tests" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 607FACF31AFB9204008FA782 /* Debug */, - 607FACF41AFB9204008FA782 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; -/* End XCConfigurationList section */ - }; - rootObject = 607FACC81AFB9204008FA782 /* Project object */; -} diff --git a/Example/NYPLCardCreator.xcworkspace/contents.xcworkspacedata b/Example/NYPLCardCreator.xcworkspace/contents.xcworkspacedata deleted file mode 100644 index 68213cf..0000000 --- a/Example/NYPLCardCreator.xcworkspace/contents.xcworkspacedata +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - diff --git a/Example/NYPLCardCreator.xcworkspace/xcshareddata/NYPLCardCreator.xcscmblueprint b/Example/NYPLCardCreator.xcworkspace/xcshareddata/NYPLCardCreator.xcscmblueprint deleted file mode 100644 index 1e8eb4b..0000000 --- a/Example/NYPLCardCreator.xcworkspace/xcshareddata/NYPLCardCreator.xcscmblueprint +++ /dev/null @@ -1,30 +0,0 @@ -{ - "DVTSourceControlWorkspaceBlueprintPrimaryRemoteRepositoryKey" : "DEA1A46F262C097E94020C5196FB17667AB4DFDA", - "DVTSourceControlWorkspaceBlueprintWorkingCopyRepositoryLocationsKey" : { - - }, - "DVTSourceControlWorkspaceBlueprintWorkingCopyStatesKey" : { - "DEA1A46F262C097E94020C5196FB17667AB4DFDA" : 0, - "8423724DF8D0292657A3E4E4F2DCCBFB961ED39E" : 0 - }, - "DVTSourceControlWorkspaceBlueprintIdentifierKey" : "41288073-3F90-44C3-B31F-541F3CC8310A", - "DVTSourceControlWorkspaceBlueprintWorkingCopyPathsKey" : { - "DEA1A46F262C097E94020C5196FB17667AB4DFDA" : "NYPLCardCreator\/", - "8423724DF8D0292657A3E4E4F2DCCBFB961ED39E" : ".." - }, - "DVTSourceControlWorkspaceBlueprintNameKey" : "NYPLCardCreator", - "DVTSourceControlWorkspaceBlueprintVersion" : 204, - "DVTSourceControlWorkspaceBlueprintRelativePathToProjectKey" : "Example\/NYPLCardCreator.xcworkspace", - "DVTSourceControlWorkspaceBlueprintRemoteRepositoriesKey" : [ - { - "DVTSourceControlWorkspaceBlueprintRemoteRepositoryURLKey" : "https:\/\/github.com\/NYPL-Simplified\/Simplified-iOS.git", - "DVTSourceControlWorkspaceBlueprintRemoteRepositorySystemKey" : "com.apple.dt.Xcode.sourcecontrol.Git", - "DVTSourceControlWorkspaceBlueprintRemoteRepositoryIdentifierKey" : "8423724DF8D0292657A3E4E4F2DCCBFB961ED39E" - }, - { - "DVTSourceControlWorkspaceBlueprintRemoteRepositoryURLKey" : "https:\/\/github.com\/NYPL-Simplified\/CardCreator-iOS.git", - "DVTSourceControlWorkspaceBlueprintRemoteRepositorySystemKey" : "com.apple.dt.Xcode.sourcecontrol.Git", - "DVTSourceControlWorkspaceBlueprintRemoteRepositoryIdentifierKey" : "DEA1A46F262C097E94020C5196FB17667AB4DFDA" - } - ] -} \ No newline at end of file diff --git a/Example/Podfile b/Example/Podfile deleted file mode 100644 index 9784ef4..0000000 --- a/Example/Podfile +++ /dev/null @@ -1,11 +0,0 @@ -use_frameworks! - -target 'NYPLCardCreator_Example' do - pod 'NYPLCardCreator', :path => '../' - - target 'NYPLCardCreator_Tests' do - inherit! :search_paths - - - end -end diff --git a/Example/Podfile.lock b/Example/Podfile.lock deleted file mode 100644 index d7d8a56..0000000 --- a/Example/Podfile.lock +++ /dev/null @@ -1,19 +0,0 @@ -PODS: - - NYPLCardCreator (0.1.0): - - PureLayout (~> 3.0) - - PureLayout (3.0.2) - -DEPENDENCIES: - - NYPLCardCreator (from `../`) - -EXTERNAL SOURCES: - NYPLCardCreator: - :path: ../ - -SPEC CHECKSUMS: - NYPLCardCreator: 460354288acc75f31e4058ccae7353ddc7daa6b6 - PureLayout: 4d550abe49a94f24c2808b9b95db9131685fe4cd - -PODFILE CHECKSUM: 7242e80288f4ae5cfc6e13faef6063712ab044ab - -COCOAPODS: 1.0.1 diff --git a/Example/Tests/Tests.swift b/Example/Tests/Tests.swift deleted file mode 100644 index 88a69fb..0000000 --- a/Example/Tests/Tests.swift +++ /dev/null @@ -1,14 +0,0 @@ -import UIKit -import XCTest -import NYPLCardCreator - -class Tests: XCTestCase { - - override func setUp() { - super.setUp() - } - - override func tearDown() { - super.tearDown() - } -} diff --git a/NYPLCardCreator.podspec b/NYPLCardCreator.podspec deleted file mode 100644 index 6ff62f8..0000000 --- a/NYPLCardCreator.podspec +++ /dev/null @@ -1,39 +0,0 @@ -# -# Be sure to run `pod lib lint NYPLCardCreator.podspec' to ensure this is a -# valid spec before submitting. -# -# Any lines starting with a # are optional, but their use is encouraged -# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html -# - -Pod::Spec.new do |s| - s.name = 'NYPLCardCreator' - s.version = '1.0.0' - s.summary = 'A client and drop-in GUI for NYPL\'s RESTful card creator API' - -# This description is used to generate tags and improve search results. -# * Think: What does it do? Why did you write it? What is the focus? -# * Try to keep it short, snappy and to the point. -# * Write the description between the DESC delimiters below. -# * Finally, don't worry about the indent, CocoaPods strips it! - - s.description = <<-DESC -NYPLCardCreator implements a native registration flow for NYPL's card creator API. Users can -make their way through the registration flow in order to obtain a new library card. - DESC - - s.homepage = 'https://github.com/NYPL-Simplified/CardCreator-iOS' - s.license = { :type => 'Apache 2.0', :file => 'LICENSE' } - s.author = { 'Winnie Quinn' => 'nypl@winniequinn.com' } - s.source = { :git => 'https://github.com/NYPL-Simplified/CardCreator-iOS.git', :tag => s.version.to_s } - s.social_media_url = 'https://twitter.com/nypl_labs' - # s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2' - - s.ios.deployment_target = '8.0' - - s.source_files = 'NYPLCardCreator/Classes/**/*' - s.resources = 'NYPLCardCreator/Assets/*' - - s.frameworks = 'UIKit' - s.dependency 'PureLayout', '~> 3.0' -end diff --git a/NYPLCardCreator.xcodeproj/project.pbxproj b/NYPLCardCreator.xcodeproj/project.pbxproj new file mode 100644 index 0000000..46f70d8 --- /dev/null +++ b/NYPLCardCreator.xcodeproj/project.pbxproj @@ -0,0 +1,639 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 46; + objects = { + +/* Begin PBXBuildFile section */ + 14E61C6020DD7C4800124E2B /* NYPLCardCreator.h in Headers */ = {isa = PBXBuildFile; fileRef = 14E61C5E20DD7C4800124E2B /* NYPLCardCreator.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 14E61C6320DD7C4800124E2B /* NYPLCardCreator.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 14E61C5C20DD7C4800124E2B /* NYPLCardCreator.framework */; }; + 14E61C6420DD7C4800124E2B /* NYPLCardCreator.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 14E61C5C20DD7C4800124E2B /* NYPLCardCreator.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; }; + 14E61C6920DD7C6200124E2B /* Address.swift in Sources */ = {isa = PBXBuildFile; fileRef = 146E47B420DD746300C8F97F /* Address.swift */; }; + 14E61C6A20DD7C6200124E2B /* CardCreator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 146E47B620DD746300C8F97F /* CardCreator.swift */; }; + 14E61C6B20DD7C6200124E2B /* ConfirmValidAddressViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 146E47C420DD746300C8F97F /* ConfirmValidAddressViewController.swift */; }; + 14E61C6C20DD7C6200124E2B /* ActivityTitleView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 146E47B020DD746300C8F97F /* ActivityTitleView.swift */; }; + 14E61C6D20DD7C6200124E2B /* CardType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 146E47BD20DD746300C8F97F /* CardType.swift */; }; + 14E61C6E20DD7C6200124E2B /* ValidateUsernameResponse.swift in Sources */ = {isa = PBXBuildFile; fileRef = 146E47B820DD746300C8F97F /* ValidateUsernameResponse.swift */; }; + 14E61C6F20DD7C6200124E2B /* RemoteHTMLViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 146E47C120DD746300C8F97F /* RemoteHTMLViewController.swift */; }; + 14E61C7020DD7C6200124E2B /* IntroductionViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 146E47C020DD746300C8F97F /* IntroductionViewController.swift */; }; + 14E61C7120DD7C6200124E2B /* SummaryAddressCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 146E47C820DD746300C8F97F /* SummaryAddressCell.swift */; }; + 14E61C7220DD7C6200124E2B /* SummaryCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 146E47B320DD746300C8F97F /* SummaryCell.swift */; }; + 14E61C7320DD7C6200124E2B /* FormTableViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 146E47B120DD746300C8F97F /* FormTableViewController.swift */; }; + 14E61C7420DD7C6200124E2B /* PlacemarkQuery.swift in Sources */ = {isa = PBXBuildFile; fileRef = 146E47B920DD746300C8F97F /* PlacemarkQuery.swift */; }; + 14E61C7520DD7C6200124E2B /* AddressCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 146E47BE20DD746300C8F97F /* AddressCell.swift */; }; + 14E61C7620DD7C6200124E2B /* UserSummaryViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 146E47C320DD746300C8F97F /* UserSummaryViewController.swift */; }; + 14E61C7720DD7C6200124E2B /* ValidateAddressResponse.swift in Sources */ = {isa = PBXBuildFile; fileRef = 146E47C620DD746300C8F97F /* ValidateAddressResponse.swift */; }; + 14E61C7820DD7C6200124E2B /* UserCredentialsViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 146E47C520DD746300C8F97F /* UserCredentialsViewController.swift */; }; + 14E61C7920DD7C6200124E2B /* AddressViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 146E47C720DD746300C8F97F /* AddressViewController.swift */; }; + 14E61C7A20DD7C6200124E2B /* AuthenticatingSession.swift in Sources */ = {isa = PBXBuildFile; fileRef = 146E47B220DD746300C8F97F /* AuthenticatingSession.swift */; }; + 14E61C7B20DD7C6200124E2B /* AddressStep.swift in Sources */ = {isa = PBXBuildFile; fileRef = 146E47B520DD746300C8F97F /* AddressStep.swift */; }; + 14E61C7C20DD7C6200124E2B /* NameAndEmailViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 146E47C920DD746300C8F97F /* NameAndEmailViewController.swift */; }; + 14E61C7D20DD7C6200124E2B /* AlternativeAddressesViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 146E47C220DD746300C8F97F /* AlternativeAddressesViewController.swift */; }; + 14E61C7E20DD7C6200124E2B /* CardCreatorConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 146E47BA20DD746300C8F97F /* CardCreatorConfiguration.swift */; }; + 14E61C7F20DD7C6200124E2B /* UsernameAndPINViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 146E47BC20DD746300C8F97F /* UsernameAndPINViewController.swift */; }; + 14E61C8020DD7C6200124E2B /* TableViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 146E47BF20DD746300C8F97F /* TableViewController.swift */; }; + 14E61C8120DD7C6200124E2B /* LocationViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 146E47B720DD746300C8F97F /* LocationViewController.swift */; }; + 14E61C8220DD7C6200124E2B /* LabelledTextViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 146E47BB20DD746300C8F97F /* LabelledTextViewCell.swift */; }; + 14E61C8520DD7D6F00124E2B /* PureLayout.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 14E61C8320DD7D2000124E2B /* PureLayout.framework */; }; + 14E61C8620DD7E6A00124E2B /* PureLayout.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 14E61C8320DD7D2000124E2B /* PureLayout.framework */; }; + 14E61C8720DD7E6A00124E2B /* PureLayout.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 14E61C8320DD7D2000124E2B /* PureLayout.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; }; + 2D6F7C391D90FB3A000B906A /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 2D6F7C381D90FB3A000B906A /* InfoPlist.strings */; }; + 607FACD61AFB9204008FA782 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACD51AFB9204008FA782 /* AppDelegate.swift */; }; + 607FACDD1AFB9204008FA782 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 607FACDC1AFB9204008FA782 /* Images.xcassets */; }; + 607FACE01AFB9204008FA782 /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + 14E61C6120DD7C4800124E2B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 607FACC81AFB9204008FA782 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 14E61C5B20DD7C4800124E2B; + remoteInfo = NYPLCardCreator; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXCopyFilesBuildPhase section */ + 14E61C6820DD7C4800124E2B /* Embed Frameworks */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = ""; + dstSubfolderSpec = 10; + files = ( + 14E61C8720DD7E6A00124E2B /* PureLayout.framework in Embed Frameworks */, + 14E61C6420DD7C4800124E2B /* NYPLCardCreator.framework in Embed Frameworks */, + ); + name = "Embed Frameworks"; + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXCopyFilesBuildPhase section */ + +/* Begin PBXFileReference section */ + 146E47B020DD746300C8F97F /* ActivityTitleView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ActivityTitleView.swift; sourceTree = ""; }; + 146E47B120DD746300C8F97F /* FormTableViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FormTableViewController.swift; sourceTree = ""; }; + 146E47B220DD746300C8F97F /* AuthenticatingSession.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AuthenticatingSession.swift; sourceTree = ""; }; + 146E47B320DD746300C8F97F /* SummaryCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SummaryCell.swift; sourceTree = ""; }; + 146E47B420DD746300C8F97F /* Address.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Address.swift; sourceTree = ""; }; + 146E47B520DD746300C8F97F /* AddressStep.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AddressStep.swift; sourceTree = ""; }; + 146E47B620DD746300C8F97F /* CardCreator.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CardCreator.swift; sourceTree = ""; }; + 146E47B720DD746300C8F97F /* LocationViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LocationViewController.swift; sourceTree = ""; }; + 146E47B820DD746300C8F97F /* ValidateUsernameResponse.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ValidateUsernameResponse.swift; sourceTree = ""; }; + 146E47B920DD746300C8F97F /* PlacemarkQuery.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PlacemarkQuery.swift; sourceTree = ""; }; + 146E47BA20DD746300C8F97F /* CardCreatorConfiguration.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CardCreatorConfiguration.swift; sourceTree = ""; }; + 146E47BB20DD746300C8F97F /* LabelledTextViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LabelledTextViewCell.swift; sourceTree = ""; }; + 146E47BC20DD746300C8F97F /* UsernameAndPINViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UsernameAndPINViewController.swift; sourceTree = ""; }; + 146E47BD20DD746300C8F97F /* CardType.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CardType.swift; sourceTree = ""; }; + 146E47BE20DD746300C8F97F /* AddressCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AddressCell.swift; sourceTree = ""; }; + 146E47BF20DD746300C8F97F /* TableViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TableViewController.swift; sourceTree = ""; }; + 146E47C020DD746300C8F97F /* IntroductionViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IntroductionViewController.swift; sourceTree = ""; }; + 146E47C120DD746300C8F97F /* RemoteHTMLViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RemoteHTMLViewController.swift; sourceTree = ""; }; + 146E47C220DD746300C8F97F /* AlternativeAddressesViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AlternativeAddressesViewController.swift; sourceTree = ""; }; + 146E47C320DD746300C8F97F /* UserSummaryViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UserSummaryViewController.swift; sourceTree = ""; }; + 146E47C420DD746300C8F97F /* ConfirmValidAddressViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ConfirmValidAddressViewController.swift; sourceTree = ""; }; + 146E47C520DD746300C8F97F /* UserCredentialsViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UserCredentialsViewController.swift; sourceTree = ""; }; + 146E47C620DD746300C8F97F /* ValidateAddressResponse.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ValidateAddressResponse.swift; sourceTree = ""; }; + 146E47C720DD746300C8F97F /* AddressViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AddressViewController.swift; sourceTree = ""; }; + 146E47C820DD746300C8F97F /* SummaryAddressCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SummaryAddressCell.swift; sourceTree = ""; }; + 146E47C920DD746300C8F97F /* NameAndEmailViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NameAndEmailViewController.swift; sourceTree = ""; }; + 14E61C5C20DD7C4800124E2B /* NYPLCardCreator.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = NYPLCardCreator.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 14E61C5E20DD7C4800124E2B /* NYPLCardCreator.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NYPLCardCreator.h; sourceTree = ""; }; + 14E61C5F20DD7C4800124E2B /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 14E61C8320DD7D2000124E2B /* PureLayout.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = PureLayout.framework; path = Carthage/Build/iOS/PureLayout.framework; sourceTree = ""; }; + 2D6F7C381D90FB3A000B906A /* InfoPlist.strings */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.strings; name = InfoPlist.strings; path = ../NYPLCardCreatorExample/InfoPlist.strings; sourceTree = ""; }; + 607FACD01AFB9204008FA782 /* NYPLCardCreator_Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = NYPLCardCreator_Example.app; sourceTree = BUILT_PRODUCTS_DIR; }; + 607FACD41AFB9204008FA782 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = Info.plist; path = ../NYPLCardCreatorExample/Info.plist; sourceTree = ""; }; + 607FACD51AFB9204008FA782 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = AppDelegate.swift; path = ../NYPLCardCreatorExample/AppDelegate.swift; sourceTree = ""; }; + 607FACDC1AFB9204008FA782 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = ../NYPLCardCreatorExample/Images.xcassets; sourceTree = ""; }; + 607FACDF1AFB9204008FA782 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 14E61C5820DD7C4800124E2B /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 14E61C8520DD7D6F00124E2B /* PureLayout.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 607FACCD1AFB9204008FA782 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 14E61C8620DD7E6A00124E2B /* PureLayout.framework in Frameworks */, + 14E61C6320DD7C4800124E2B /* NYPLCardCreator.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 14E61C5D20DD7C4800124E2B /* NYPLCardCreator */ = { + isa = PBXGroup; + children = ( + 14E61C5E20DD7C4800124E2B /* NYPLCardCreator.h */, + 14E61C5F20DD7C4800124E2B /* Info.plist */, + 146E47B020DD746300C8F97F /* ActivityTitleView.swift */, + 146E47B420DD746300C8F97F /* Address.swift */, + 146E47BE20DD746300C8F97F /* AddressCell.swift */, + 146E47B520DD746300C8F97F /* AddressStep.swift */, + 146E47C720DD746300C8F97F /* AddressViewController.swift */, + 146E47C220DD746300C8F97F /* AlternativeAddressesViewController.swift */, + 146E47B220DD746300C8F97F /* AuthenticatingSession.swift */, + 146E47B620DD746300C8F97F /* CardCreator.swift */, + 146E47BA20DD746300C8F97F /* CardCreatorConfiguration.swift */, + 146E47BD20DD746300C8F97F /* CardType.swift */, + 146E47C420DD746300C8F97F /* ConfirmValidAddressViewController.swift */, + 146E47B120DD746300C8F97F /* FormTableViewController.swift */, + 146E47C020DD746300C8F97F /* IntroductionViewController.swift */, + 146E47BB20DD746300C8F97F /* LabelledTextViewCell.swift */, + 146E47B720DD746300C8F97F /* LocationViewController.swift */, + 146E47C920DD746300C8F97F /* NameAndEmailViewController.swift */, + 146E47B920DD746300C8F97F /* PlacemarkQuery.swift */, + 146E47C120DD746300C8F97F /* RemoteHTMLViewController.swift */, + 146E47C820DD746300C8F97F /* SummaryAddressCell.swift */, + 146E47B320DD746300C8F97F /* SummaryCell.swift */, + 146E47BF20DD746300C8F97F /* TableViewController.swift */, + 146E47C520DD746300C8F97F /* UserCredentialsViewController.swift */, + 146E47BC20DD746300C8F97F /* UsernameAndPINViewController.swift */, + 146E47C320DD746300C8F97F /* UserSummaryViewController.swift */, + 146E47C620DD746300C8F97F /* ValidateAddressResponse.swift */, + 146E47B820DD746300C8F97F /* ValidateUsernameResponse.swift */, + ); + path = NYPLCardCreator; + sourceTree = ""; + }; + 607FACC71AFB9204008FA782 = { + isa = PBXGroup; + children = ( + 14E61C5D20DD7C4800124E2B /* NYPLCardCreator */, + 607FACD21AFB9204008FA782 /* NYPLCardCreatorExample */, + 607FACD11AFB9204008FA782 /* Products */, + 9042A7DBE0CDD8162AA0E597 /* Frameworks */, + ); + sourceTree = ""; + }; + 607FACD11AFB9204008FA782 /* Products */ = { + isa = PBXGroup; + children = ( + 607FACD01AFB9204008FA782 /* NYPLCardCreator_Example.app */, + 14E61C5C20DD7C4800124E2B /* NYPLCardCreator.framework */, + ); + name = Products; + sourceTree = ""; + }; + 607FACD21AFB9204008FA782 /* NYPLCardCreatorExample */ = { + isa = PBXGroup; + children = ( + 607FACD51AFB9204008FA782 /* AppDelegate.swift */, + 607FACDC1AFB9204008FA782 /* Images.xcassets */, + 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */, + 607FACD31AFB9204008FA782 /* Supporting Files */, + ); + name = NYPLCardCreatorExample; + path = NYPLCardCreator; + sourceTree = ""; + }; + 607FACD31AFB9204008FA782 /* Supporting Files */ = { + isa = PBXGroup; + children = ( + 607FACD41AFB9204008FA782 /* Info.plist */, + 2D6F7C381D90FB3A000B906A /* InfoPlist.strings */, + ); + name = "Supporting Files"; + sourceTree = ""; + }; + 9042A7DBE0CDD8162AA0E597 /* Frameworks */ = { + isa = PBXGroup; + children = ( + 14E61C8320DD7D2000124E2B /* PureLayout.framework */, + ); + name = Frameworks; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXHeadersBuildPhase section */ + 14E61C5920DD7C4800124E2B /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 14E61C6020DD7C4800124E2B /* NYPLCardCreator.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXHeadersBuildPhase section */ + +/* Begin PBXNativeTarget section */ + 14E61C5B20DD7C4800124E2B /* NYPLCardCreator */ = { + isa = PBXNativeTarget; + buildConfigurationList = 14E61C6720DD7C4800124E2B /* Build configuration list for PBXNativeTarget "NYPLCardCreator" */; + buildPhases = ( + 14E61C5720DD7C4800124E2B /* Sources */, + 14E61C5820DD7C4800124E2B /* Frameworks */, + 14E61C5920DD7C4800124E2B /* Headers */, + 14E61C5A20DD7C4800124E2B /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = NYPLCardCreator; + productName = NYPLCardCreator; + productReference = 14E61C5C20DD7C4800124E2B /* NYPLCardCreator.framework */; + productType = "com.apple.product-type.framework"; + }; + 607FACCF1AFB9204008FA782 /* NYPLCardCreator_Example */ = { + isa = PBXNativeTarget; + buildConfigurationList = 607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget "NYPLCardCreator_Example" */; + buildPhases = ( + 607FACCC1AFB9204008FA782 /* Sources */, + 607FACCD1AFB9204008FA782 /* Frameworks */, + 607FACCE1AFB9204008FA782 /* Resources */, + 14E61C6820DD7C4800124E2B /* Embed Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + 14E61C6220DD7C4800124E2B /* PBXTargetDependency */, + ); + name = NYPLCardCreator_Example; + productName = NYPLCardCreator; + productReference = 607FACD01AFB9204008FA782 /* NYPLCardCreator_Example.app */; + productType = "com.apple.product-type.application"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 607FACC81AFB9204008FA782 /* Project object */ = { + isa = PBXProject; + attributes = { + LastSwiftUpdateCheck = 0720; + LastUpgradeCheck = 0720; + ORGANIZATIONNAME = CocoaPods; + TargetAttributes = { + 14E61C5B20DD7C4800124E2B = { + CreatedOnToolsVersion = 9.4; + ProvisioningStyle = Automatic; + }; + 607FACCF1AFB9204008FA782 = { + CreatedOnToolsVersion = 6.3.1; + LastSwiftMigration = 0810; + }; + }; + }; + buildConfigurationList = 607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject "NYPLCardCreator" */; + compatibilityVersion = "Xcode 3.2"; + developmentRegion = English; + hasScannedForEncodings = 0; + knownRegions = ( + en, + Base, + ); + mainGroup = 607FACC71AFB9204008FA782; + productRefGroup = 607FACD11AFB9204008FA782 /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + 607FACCF1AFB9204008FA782 /* NYPLCardCreator_Example */, + 14E61C5B20DD7C4800124E2B /* NYPLCardCreator */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + 14E61C5A20DD7C4800124E2B /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 607FACCE1AFB9204008FA782 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 607FACE01AFB9204008FA782 /* LaunchScreen.xib in Resources */, + 2D6F7C391D90FB3A000B906A /* InfoPlist.strings in Resources */, + 607FACDD1AFB9204008FA782 /* Images.xcassets in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 14E61C5720DD7C4800124E2B /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 14E61C7020DD7C6200124E2B /* IntroductionViewController.swift in Sources */, + 14E61C6F20DD7C6200124E2B /* RemoteHTMLViewController.swift in Sources */, + 14E61C6C20DD7C6200124E2B /* ActivityTitleView.swift in Sources */, + 14E61C7320DD7C6200124E2B /* FormTableViewController.swift in Sources */, + 14E61C7C20DD7C6200124E2B /* NameAndEmailViewController.swift in Sources */, + 14E61C6A20DD7C6200124E2B /* CardCreator.swift in Sources */, + 14E61C7420DD7C6200124E2B /* PlacemarkQuery.swift in Sources */, + 14E61C7F20DD7C6200124E2B /* UsernameAndPINViewController.swift in Sources */, + 14E61C7920DD7C6200124E2B /* AddressViewController.swift in Sources */, + 14E61C7220DD7C6200124E2B /* SummaryCell.swift in Sources */, + 14E61C8120DD7C6200124E2B /* LocationViewController.swift in Sources */, + 14E61C7E20DD7C6200124E2B /* CardCreatorConfiguration.swift in Sources */, + 14E61C6E20DD7C6200124E2B /* ValidateUsernameResponse.swift in Sources */, + 14E61C7B20DD7C6200124E2B /* AddressStep.swift in Sources */, + 14E61C6920DD7C6200124E2B /* Address.swift in Sources */, + 14E61C7D20DD7C6200124E2B /* AlternativeAddressesViewController.swift in Sources */, + 14E61C6D20DD7C6200124E2B /* CardType.swift in Sources */, + 14E61C7820DD7C6200124E2B /* UserCredentialsViewController.swift in Sources */, + 14E61C8220DD7C6200124E2B /* LabelledTextViewCell.swift in Sources */, + 14E61C7720DD7C6200124E2B /* ValidateAddressResponse.swift in Sources */, + 14E61C7120DD7C6200124E2B /* SummaryAddressCell.swift in Sources */, + 14E61C8020DD7C6200124E2B /* TableViewController.swift in Sources */, + 14E61C7A20DD7C6200124E2B /* AuthenticatingSession.swift in Sources */, + 14E61C6B20DD7C6200124E2B /* ConfirmValidAddressViewController.swift in Sources */, + 14E61C7620DD7C6200124E2B /* UserSummaryViewController.swift in Sources */, + 14E61C7520DD7C6200124E2B /* AddressCell.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 607FACCC1AFB9204008FA782 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 607FACD61AFB9204008FA782 /* AppDelegate.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + 14E61C6220DD7C4800124E2B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 14E61C5B20DD7C4800124E2B /* NYPLCardCreator */; + targetProxy = 14E61C6120DD7C4800124E2B /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin PBXVariantGroup section */ + 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */ = { + isa = PBXVariantGroup; + children = ( + 607FACDF1AFB9204008FA782 /* Base */, + ); + name = LaunchScreen.xib; + path = ../NYPLCardCreatorExample; + sourceTree = ""; + }; +/* End PBXVariantGroup section */ + +/* Begin XCBuildConfiguration section */ + 14E61C6520DD7C4800124E2B /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CODE_SIGN_IDENTITY = "iPhone Developer"; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = dwarf; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PROJECT_DIR)/Carthage/Build/iOS", + ); + GCC_C_LANGUAGE_STANDARD = gnu11; + INFOPLIST_FILE = NYPLCardCreator/Info.plist; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + PRODUCT_BUNDLE_IDENTIFIER = org.nypl.labs.NYPLCardCreator; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SWIFT_VERSION = 3.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + 14E61C6620DD7C4800124E2B /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CODE_SIGN_IDENTITY = "iPhone Developer"; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PROJECT_DIR)/Carthage/Build/iOS", + ); + GCC_C_LANGUAGE_STANDARD = gnu11; + INFOPLIST_FILE = NYPLCardCreator/Info.plist; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + PRODUCT_BUNDLE_IDENTIFIER = org.nypl.labs.NYPLCardCreator; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; + SWIFT_VERSION = 3.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + 607FACED1AFB9204008FA782 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_SYMBOLS_PRIVATE_EXTERN = NO; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 8.3; + MTL_ENABLE_DEBUG_INFO = YES; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = iphoneos; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + }; + name = Debug; + }; + 607FACEE1AFB9204008FA782 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 8.3; + MTL_ENABLE_DEBUG_INFO = NO; + SDKROOT = iphoneos; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 607FACF01AFB9204008FA782 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CODE_SIGN_IDENTITY = "iPhone Developer"; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PROJECT_DIR)/Carthage/Build/iOS", + ); + INFOPLIST_FILE = "$(SRCROOT)/NYPLCardCreatorExample/Info.plist"; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + MODULE_NAME = ExampleApp; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.$(PRODUCT_NAME:rfc1034identifier)"; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_VERSION = 3.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 607FACF11AFB9204008FA782 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CODE_SIGN_IDENTITY = "iPhone Developer"; + FRAMEWORK_SEARCH_PATHS = ( + "$(inherited)", + "$(PROJECT_DIR)/Carthage/Build/iOS", + ); + INFOPLIST_FILE = "$(SRCROOT)/NYPLCardCreatorExample/Info.plist"; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + MODULE_NAME = ExampleApp; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.$(PRODUCT_NAME:rfc1034identifier)"; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_VERSION = 3.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 14E61C6720DD7C4800124E2B /* Build configuration list for PBXNativeTarget "NYPLCardCreator" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 14E61C6520DD7C4800124E2B /* Debug */, + 14E61C6620DD7C4800124E2B /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject "NYPLCardCreator" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 607FACED1AFB9204008FA782 /* Debug */, + 607FACEE1AFB9204008FA782 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget "NYPLCardCreator_Example" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 607FACF01AFB9204008FA782 /* Debug */, + 607FACF11AFB9204008FA782 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = 607FACC81AFB9204008FA782 /* Project object */; +} diff --git a/Example/NYPLCardCreator.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/NYPLCardCreator.xcodeproj/project.xcworkspace/contents.xcworkspacedata similarity index 100% rename from Example/NYPLCardCreator.xcodeproj/project.xcworkspace/contents.xcworkspacedata rename to NYPLCardCreator.xcodeproj/project.xcworkspace/contents.xcworkspacedata diff --git a/NYPLCardCreator.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/NYPLCardCreator.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 0000000..18d9810 --- /dev/null +++ b/NYPLCardCreator.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/Example/NYPLCardCreator.xcodeproj/xcshareddata/xcschemes/NYPLCardCreator-Example.xcscheme b/NYPLCardCreator.xcodeproj/xcshareddata/xcschemes/NYPLCardCreator-Example.xcscheme similarity index 100% rename from Example/NYPLCardCreator.xcodeproj/xcshareddata/xcschemes/NYPLCardCreator-Example.xcscheme rename to NYPLCardCreator.xcodeproj/xcshareddata/xcschemes/NYPLCardCreator-Example.xcscheme diff --git a/NYPLCardCreator/Classes/ActivityTitleView.swift b/NYPLCardCreator/ActivityTitleView.swift similarity index 100% rename from NYPLCardCreator/Classes/ActivityTitleView.swift rename to NYPLCardCreator/ActivityTitleView.swift diff --git a/NYPLCardCreator/Classes/Address.swift b/NYPLCardCreator/Address.swift similarity index 100% rename from NYPLCardCreator/Classes/Address.swift rename to NYPLCardCreator/Address.swift diff --git a/NYPLCardCreator/Classes/AddressCell.swift b/NYPLCardCreator/AddressCell.swift similarity index 100% rename from NYPLCardCreator/Classes/AddressCell.swift rename to NYPLCardCreator/AddressCell.swift diff --git a/NYPLCardCreator/Classes/AddressStep.swift b/NYPLCardCreator/AddressStep.swift similarity index 100% rename from NYPLCardCreator/Classes/AddressStep.swift rename to NYPLCardCreator/AddressStep.swift diff --git a/NYPLCardCreator/Classes/AddressViewController.swift b/NYPLCardCreator/AddressViewController.swift similarity index 100% rename from NYPLCardCreator/Classes/AddressViewController.swift rename to NYPLCardCreator/AddressViewController.swift diff --git a/NYPLCardCreator/Classes/AlternativeAddressesViewController.swift b/NYPLCardCreator/AlternativeAddressesViewController.swift similarity index 100% rename from NYPLCardCreator/Classes/AlternativeAddressesViewController.swift rename to NYPLCardCreator/AlternativeAddressesViewController.swift diff --git a/NYPLCardCreator/Assets/.gitkeep b/NYPLCardCreator/Assets/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/NYPLCardCreator/Classes/AuthenticatingSession.swift b/NYPLCardCreator/AuthenticatingSession.swift similarity index 100% rename from NYPLCardCreator/Classes/AuthenticatingSession.swift rename to NYPLCardCreator/AuthenticatingSession.swift diff --git a/NYPLCardCreator/Classes/CardCreator.swift b/NYPLCardCreator/CardCreator.swift similarity index 100% rename from NYPLCardCreator/Classes/CardCreator.swift rename to NYPLCardCreator/CardCreator.swift diff --git a/NYPLCardCreator/Classes/CardCreatorConfiguration.swift b/NYPLCardCreator/CardCreatorConfiguration.swift similarity index 100% rename from NYPLCardCreator/Classes/CardCreatorConfiguration.swift rename to NYPLCardCreator/CardCreatorConfiguration.swift diff --git a/NYPLCardCreator/Classes/CardType.swift b/NYPLCardCreator/CardType.swift similarity index 100% rename from NYPLCardCreator/Classes/CardType.swift rename to NYPLCardCreator/CardType.swift diff --git a/NYPLCardCreator/Classes/.gitkeep b/NYPLCardCreator/Classes/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/NYPLCardCreator/Classes/ConfirmValidAddressViewController.swift b/NYPLCardCreator/ConfirmValidAddressViewController.swift similarity index 100% rename from NYPLCardCreator/Classes/ConfirmValidAddressViewController.swift rename to NYPLCardCreator/ConfirmValidAddressViewController.swift diff --git a/NYPLCardCreator/Classes/FormTableViewController.swift b/NYPLCardCreator/FormTableViewController.swift similarity index 100% rename from NYPLCardCreator/Classes/FormTableViewController.swift rename to NYPLCardCreator/FormTableViewController.swift diff --git a/Example/Tests/Info.plist b/NYPLCardCreator/Info.plist similarity index 79% rename from Example/Tests/Info.plist rename to NYPLCardCreator/Info.plist index ba72822..1007fd9 100644 --- a/Example/Tests/Info.plist +++ b/NYPLCardCreator/Info.plist @@ -3,7 +3,7 @@ CFBundleDevelopmentRegion - en + $(DEVELOPMENT_LANGUAGE) CFBundleExecutable $(EXECUTABLE_NAME) CFBundleIdentifier @@ -13,12 +13,12 @@ CFBundleName $(PRODUCT_NAME) CFBundlePackageType - BNDL + FMWK CFBundleShortVersionString 1.0 - CFBundleSignature - ???? CFBundleVersion - 1 + $(CURRENT_PROJECT_VERSION) + NSPrincipalClass + diff --git a/NYPLCardCreator/Classes/IntroductionViewController.swift b/NYPLCardCreator/IntroductionViewController.swift similarity index 100% rename from NYPLCardCreator/Classes/IntroductionViewController.swift rename to NYPLCardCreator/IntroductionViewController.swift diff --git a/NYPLCardCreator/Classes/LabelledTextViewCell.swift b/NYPLCardCreator/LabelledTextViewCell.swift similarity index 100% rename from NYPLCardCreator/Classes/LabelledTextViewCell.swift rename to NYPLCardCreator/LabelledTextViewCell.swift diff --git a/NYPLCardCreator/Classes/LocationViewController.swift b/NYPLCardCreator/LocationViewController.swift similarity index 100% rename from NYPLCardCreator/Classes/LocationViewController.swift rename to NYPLCardCreator/LocationViewController.swift diff --git a/NYPLCardCreator/NYPLCardCreator.h b/NYPLCardCreator/NYPLCardCreator.h new file mode 100644 index 0000000..8f64956 --- /dev/null +++ b/NYPLCardCreator/NYPLCardCreator.h @@ -0,0 +1,19 @@ +// +// NYPLCardCreator.h +// NYPLCardCreator +// +// Created by Winnie Quinn on 6/22/18. +// Copyright © 2018 CocoaPods. All rights reserved. +// + +#import + +//! Project version number for NYPLCardCreator. +FOUNDATION_EXPORT double NYPLCardCreatorVersionNumber; + +//! Project version string for NYPLCardCreator. +FOUNDATION_EXPORT const unsigned char NYPLCardCreatorVersionString[]; + +// In this header, you should import all the public headers of your framework using statements like #import + + diff --git a/NYPLCardCreator/Classes/NameAndEmailViewController.swift b/NYPLCardCreator/NameAndEmailViewController.swift similarity index 100% rename from NYPLCardCreator/Classes/NameAndEmailViewController.swift rename to NYPLCardCreator/NameAndEmailViewController.swift diff --git a/NYPLCardCreator/Classes/PlacemarkQuery.swift b/NYPLCardCreator/PlacemarkQuery.swift similarity index 100% rename from NYPLCardCreator/Classes/PlacemarkQuery.swift rename to NYPLCardCreator/PlacemarkQuery.swift diff --git a/NYPLCardCreator/Classes/RemoteHTMLViewController.swift b/NYPLCardCreator/RemoteHTMLViewController.swift similarity index 100% rename from NYPLCardCreator/Classes/RemoteHTMLViewController.swift rename to NYPLCardCreator/RemoteHTMLViewController.swift diff --git a/NYPLCardCreator/Classes/SummaryAddressCell.swift b/NYPLCardCreator/SummaryAddressCell.swift similarity index 100% rename from NYPLCardCreator/Classes/SummaryAddressCell.swift rename to NYPLCardCreator/SummaryAddressCell.swift diff --git a/NYPLCardCreator/Classes/SummaryCell.swift b/NYPLCardCreator/SummaryCell.swift similarity index 100% rename from NYPLCardCreator/Classes/SummaryCell.swift rename to NYPLCardCreator/SummaryCell.swift diff --git a/NYPLCardCreator/Classes/TableViewController.swift b/NYPLCardCreator/TableViewController.swift similarity index 100% rename from NYPLCardCreator/Classes/TableViewController.swift rename to NYPLCardCreator/TableViewController.swift diff --git a/NYPLCardCreator/Classes/UserCredentialsViewController.swift b/NYPLCardCreator/UserCredentialsViewController.swift similarity index 100% rename from NYPLCardCreator/Classes/UserCredentialsViewController.swift rename to NYPLCardCreator/UserCredentialsViewController.swift diff --git a/NYPLCardCreator/Classes/UserSummaryViewController.swift b/NYPLCardCreator/UserSummaryViewController.swift similarity index 100% rename from NYPLCardCreator/Classes/UserSummaryViewController.swift rename to NYPLCardCreator/UserSummaryViewController.swift diff --git a/NYPLCardCreator/Classes/UsernameAndPINViewController.swift b/NYPLCardCreator/UsernameAndPINViewController.swift similarity index 100% rename from NYPLCardCreator/Classes/UsernameAndPINViewController.swift rename to NYPLCardCreator/UsernameAndPINViewController.swift diff --git a/NYPLCardCreator/Classes/ValidateAddressResponse.swift b/NYPLCardCreator/ValidateAddressResponse.swift similarity index 100% rename from NYPLCardCreator/Classes/ValidateAddressResponse.swift rename to NYPLCardCreator/ValidateAddressResponse.swift diff --git a/NYPLCardCreator/Classes/ValidateUsernameResponse.swift b/NYPLCardCreator/ValidateUsernameResponse.swift similarity index 100% rename from NYPLCardCreator/Classes/ValidateUsernameResponse.swift rename to NYPLCardCreator/ValidateUsernameResponse.swift diff --git a/Example/NYPLCardCreator/AppDelegate.swift b/NYPLCardCreatorExample/AppDelegate.swift similarity index 100% rename from Example/NYPLCardCreator/AppDelegate.swift rename to NYPLCardCreatorExample/AppDelegate.swift diff --git a/Example/NYPLCardCreator/Base.lproj/LaunchScreen.xib b/NYPLCardCreatorExample/Base.lproj/LaunchScreen.xib similarity index 100% rename from Example/NYPLCardCreator/Base.lproj/LaunchScreen.xib rename to NYPLCardCreatorExample/Base.lproj/LaunchScreen.xib diff --git a/Example/NYPLCardCreator/Images.xcassets/AppIcon.appiconset/Contents.json b/NYPLCardCreatorExample/Images.xcassets/AppIcon.appiconset/Contents.json similarity index 88% rename from Example/NYPLCardCreator/Images.xcassets/AppIcon.appiconset/Contents.json rename to NYPLCardCreatorExample/Images.xcassets/AppIcon.appiconset/Contents.json index b8236c6..19882d5 100644 --- a/Example/NYPLCardCreator/Images.xcassets/AppIcon.appiconset/Contents.json +++ b/NYPLCardCreatorExample/Images.xcassets/AppIcon.appiconset/Contents.json @@ -39,6 +39,11 @@ "idiom" : "iphone", "size" : "60x60", "scale" : "3x" + }, + { + "idiom" : "ios-marketing", + "size" : "1024x1024", + "scale" : "1x" } ], "info" : { diff --git a/Example/NYPLCardCreator/Images.xcassets/CheckboxOff.imageset/CheckboxOff@1x.png b/NYPLCardCreatorExample/Images.xcassets/CheckboxOff.imageset/CheckboxOff@1x.png similarity index 100% rename from Example/NYPLCardCreator/Images.xcassets/CheckboxOff.imageset/CheckboxOff@1x.png rename to NYPLCardCreatorExample/Images.xcassets/CheckboxOff.imageset/CheckboxOff@1x.png diff --git a/Example/NYPLCardCreator/Images.xcassets/CheckboxOff.imageset/CheckboxOff@2x.png b/NYPLCardCreatorExample/Images.xcassets/CheckboxOff.imageset/CheckboxOff@2x.png similarity index 100% rename from Example/NYPLCardCreator/Images.xcassets/CheckboxOff.imageset/CheckboxOff@2x.png rename to NYPLCardCreatorExample/Images.xcassets/CheckboxOff.imageset/CheckboxOff@2x.png diff --git a/Example/NYPLCardCreator/Images.xcassets/CheckboxOff.imageset/CheckboxOff@3x.png b/NYPLCardCreatorExample/Images.xcassets/CheckboxOff.imageset/CheckboxOff@3x.png similarity index 100% rename from Example/NYPLCardCreator/Images.xcassets/CheckboxOff.imageset/CheckboxOff@3x.png rename to NYPLCardCreatorExample/Images.xcassets/CheckboxOff.imageset/CheckboxOff@3x.png diff --git a/Example/NYPLCardCreator/Images.xcassets/CheckboxOff.imageset/Contents.json b/NYPLCardCreatorExample/Images.xcassets/CheckboxOff.imageset/Contents.json similarity index 100% rename from Example/NYPLCardCreator/Images.xcassets/CheckboxOff.imageset/Contents.json rename to NYPLCardCreatorExample/Images.xcassets/CheckboxOff.imageset/Contents.json diff --git a/Example/NYPLCardCreator/Images.xcassets/CheckboxOn.imageset/CheckboxOn@1x.png b/NYPLCardCreatorExample/Images.xcassets/CheckboxOn.imageset/CheckboxOn@1x.png similarity index 100% rename from Example/NYPLCardCreator/Images.xcassets/CheckboxOn.imageset/CheckboxOn@1x.png rename to NYPLCardCreatorExample/Images.xcassets/CheckboxOn.imageset/CheckboxOn@1x.png diff --git a/Example/NYPLCardCreator/Images.xcassets/CheckboxOn.imageset/CheckboxOn@2x.png b/NYPLCardCreatorExample/Images.xcassets/CheckboxOn.imageset/CheckboxOn@2x.png similarity index 100% rename from Example/NYPLCardCreator/Images.xcassets/CheckboxOn.imageset/CheckboxOn@2x.png rename to NYPLCardCreatorExample/Images.xcassets/CheckboxOn.imageset/CheckboxOn@2x.png diff --git a/Example/NYPLCardCreator/Images.xcassets/CheckboxOn.imageset/CheckboxOn@3x.png b/NYPLCardCreatorExample/Images.xcassets/CheckboxOn.imageset/CheckboxOn@3x.png similarity index 100% rename from Example/NYPLCardCreator/Images.xcassets/CheckboxOn.imageset/CheckboxOn@3x.png rename to NYPLCardCreatorExample/Images.xcassets/CheckboxOn.imageset/CheckboxOn@3x.png diff --git a/Example/NYPLCardCreator/Images.xcassets/CheckboxOn.imageset/Contents.json b/NYPLCardCreatorExample/Images.xcassets/CheckboxOn.imageset/Contents.json similarity index 100% rename from Example/NYPLCardCreator/Images.xcassets/CheckboxOn.imageset/Contents.json rename to NYPLCardCreatorExample/Images.xcassets/CheckboxOn.imageset/Contents.json diff --git a/Example/NYPLCardCreator/Images.xcassets/Contents.json b/NYPLCardCreatorExample/Images.xcassets/Contents.json similarity index 100% rename from Example/NYPLCardCreator/Images.xcassets/Contents.json rename to NYPLCardCreatorExample/Images.xcassets/Contents.json diff --git a/Example/NYPLCardCreator/Info.plist b/NYPLCardCreatorExample/Info.plist similarity index 100% rename from Example/NYPLCardCreator/Info.plist rename to NYPLCardCreatorExample/Info.plist diff --git a/Example/NYPLCardCreator/InfoPlist.strings b/NYPLCardCreatorExample/InfoPlist.strings similarity index 100% rename from Example/NYPLCardCreator/InfoPlist.strings rename to NYPLCardCreatorExample/InfoPlist.strings diff --git a/_Pods.xcodeproj b/_Pods.xcodeproj deleted file mode 120000 index 3c5a8e7..0000000 --- a/_Pods.xcodeproj +++ /dev/null @@ -1 +0,0 @@ -Example/Pods/Pods.xcodeproj \ No newline at end of file From a0197c7a163c17f9dc886d002048f7197d89de8e Mon Sep 17 00:00:00 2001 From: Winnie Quinn Date: Fri, 22 Jun 2018 16:30:31 -0400 Subject: [PATCH 2/2] Share scheme for framework --- ...mple.xcscheme => NYPLCardCreator.xcscheme} | 63 +++++-------------- 1 file changed, 14 insertions(+), 49 deletions(-) rename NYPLCardCreator.xcodeproj/xcshareddata/xcschemes/{NYPLCardCreator-Example.xcscheme => NYPLCardCreator.xcscheme} (51%) diff --git a/NYPLCardCreator.xcodeproj/xcshareddata/xcschemes/NYPLCardCreator-Example.xcscheme b/NYPLCardCreator.xcodeproj/xcshareddata/xcschemes/NYPLCardCreator.xcscheme similarity index 51% rename from NYPLCardCreator.xcodeproj/xcshareddata/xcschemes/NYPLCardCreator-Example.xcscheme rename to NYPLCardCreator.xcodeproj/xcshareddata/xcschemes/NYPLCardCreator.xcscheme index 90c93d4..3ad0cb0 100644 --- a/NYPLCardCreator.xcodeproj/xcshareddata/xcschemes/NYPLCardCreator-Example.xcscheme +++ b/NYPLCardCreator.xcodeproj/xcshareddata/xcschemes/NYPLCardCreator.xcscheme @@ -1,6 +1,6 @@ - - - - @@ -42,26 +28,7 @@ selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB" shouldUseLaunchSchemeArgsEnv = "YES"> - - - - - - - - @@ -75,16 +42,15 @@ debugDocumentVersioning = "YES" debugServiceExtension = "internal" allowLocationSimulation = "YES"> - + - + @@ -94,16 +60,15 @@ savedToolIdentifier = "" useCustomWorkingDirectory = "NO" debugDocumentVersioning = "YES"> - + - +