From a707ed1e031d60ca6b6909f3627b16b3633a6688 Mon Sep 17 00:00:00 2001 From: reeshika-h Date: Tue, 29 Apr 2025 12:02:38 +0530 Subject: [PATCH 1/8] feat: Update project structure and dependencies - Added workspace settings and shared data files for Xcode project. - Updated Swift tools version from 5.1 to 5.6 in Package.swift. - Changed dependency version for contentstack-utils-swift to exact version 1.3.4. - Updated Contentstack SDK version in environment file to 2.0.0. - Refactored test imports from Contentstack to ContentstackSwift across all test files. - Enhanced build configurations and scheme settings for iOS tests. --- .env | 2 +- Cartfile | 2 +- Config.xcconfig | 2 +- .../contents.xcworkspacedata | 2 +- ContentstackSwift.podspec | 19 +- .../ContentstackTests_Info.plist | 25 + .../Contentstack_Info.plist | 25 + ContentstackSwift.xcodeproj/project.pbxproj | 2628 +++++++++++++++++ .../contents.xcworkspacedata | 7 + .../xcshareddata/IDEWorkspaceChecks.plist | 8 + .../xcshareddata/WorkspaceSettings.xcsettings | 8 + .../xcschemes/Contentstack iOS Tests.xcscheme | 59 + .../xcschemes/Contentstack iOS.xcscheme | 67 + Package.swift | 13 +- Scripts/.env | 2 +- Tests/AssetQueryAPITest.swift | 2 +- Tests/AssetQueryTest.swift | 2 +- Tests/AssetTest.swift | 2 +- Tests/ContentStackLogTest.swift | 2 +- Tests/ContentTypeQueryAPITest.swift | 2 +- Tests/ContentTypeQueryTest.swift | 2 +- Tests/ContentTypeTest.swift | 2 +- Tests/ContentstackConfigTest.swift | 2 +- Tests/ContentstackTest.swift | 2 +- Tests/ContentstackTests.swift | 2 +- Tests/DateTest.swift | 2 +- Tests/EntryAPITest.swift | 2 +- "Tests/EntryQueriable\020\020Test.swift" | 2 +- Tests/EntryTest.swift | 2 +- Tests/ImageTransformEquatableTest.swift | 2 +- Tests/ImageTransformTest.swift | 2 +- Tests/ImageTransformTestAdditional.swift | 2 +- Tests/Product.swift | 2 +- Tests/QueryEntryType.swift | 2 +- Tests/QueryOnAPITest.swift | 2 +- Tests/QueryTest.swift | 2 +- Tests/Session.swift | 2 +- Tests/StackCacheAPITest.swift | 2 +- Tests/StackTest.swift | 2 +- Tests/SutBuilder.swift | 2 +- Tests/SyncAPITest.swift | 2 +- Tests/SyncTest.swift | 2 +- Tests/TaxonomyTest.swift | 2 +- Tests/UtilsTest.swift | 2 +- Tests/XCTestCase+Extension.swift | 2 +- 45 files changed, 2879 insertions(+), 50 deletions(-) create mode 100644 ContentstackSwift.xcodeproj/ContentstackTests_Info.plist create mode 100644 ContentstackSwift.xcodeproj/Contentstack_Info.plist create mode 100644 ContentstackSwift.xcodeproj/project.pbxproj create mode 100644 ContentstackSwift.xcodeproj/project.xcworkspace/contents.xcworkspacedata create mode 100644 ContentstackSwift.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist create mode 100644 ContentstackSwift.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings create mode 100644 ContentstackSwift.xcodeproj/xcshareddata/xcschemes/Contentstack iOS Tests.xcscheme create mode 100644 ContentstackSwift.xcodeproj/xcshareddata/xcschemes/Contentstack iOS.xcscheme diff --git a/.env b/.env index d08b999c..6ddbb366 100644 --- a/.env +++ b/.env @@ -1 +1 @@ -CONTENTSTACK_SDK_VERSION=1.5.1 +CONTENTSTACK_SDK_VERSION=2.0.0 diff --git a/Cartfile b/Cartfile index f587220f..d017a110 100644 --- a/Cartfile +++ b/Cartfile @@ -1,2 +1,2 @@ -github "contentstack/contentstack-swift-dvr" "master" +github "contentstack/contentstack-swift-dvr" github "contentstack/contentstack-utils-swift" diff --git a/Config.xcconfig b/Config.xcconfig index b8ab6e29..b6d3d38d 100644 --- a/Config.xcconfig +++ b/Config.xcconfig @@ -1 +1 @@ -CONTENTSTACK_SDK_VERSION = 1.5.1 +CONTENTSTACK_SDK_VERSION = 2.0.0 diff --git a/Contentstack.xcworkspace/contents.xcworkspacedata b/Contentstack.xcworkspace/contents.xcworkspacedata index f320bd8d..bba964bc 100644 --- a/Contentstack.xcworkspace/contents.xcworkspacedata +++ b/Contentstack.xcworkspace/contents.xcworkspacedata @@ -2,7 +2,7 @@ + location = "group:ContentstackSwift.xcodeproj"> diff --git a/ContentstackSwift.podspec b/ContentstackSwift.podspec index 7b45e6bf..c78d360b 100644 --- a/ContentstackSwift.podspec +++ b/ContentstackSwift.podspec @@ -7,11 +7,10 @@ # #!/usr/bin/ruby -require 'dotenv/load' Pod::Spec.new do |s| s.name = 'ContentstackSwift' - s.version = ENV['CONTENTSTACK_SDK_VERSION'] + s.version = '2.0.0' s.summary = 'Contentstack is a headless CMS with an API-first approach that puts content at the centre.' s.description = <<-DESC @@ -29,14 +28,14 @@ Pod::Spec.new do |s| 'uttamukkoji' => 'uttamukkoji@gmail.com', 'Contentstack' => 'support@contentstack.io' } - s.source = { :git => 'https://github.com/contentstack/contentstack-swift.git', :tag => s.version.to_s } - s.social_media_url = 'https://twitter.com/Contentstack' - s.swift_version = '5' - - s.ios.deployment_target = '11.0' - s.osx.deployment_target = '10.13' - s.watchos.deployment_target = '4.0' - s.tvos.deployment_target = '11.0' + s.source = { :git => 'https://github.com/contentstack/contentstack-swift.git', :tag => s.version } + s.social_media_url = 'https://x.com/Contentstack' + s.swift_version = '5.6' + + s.ios.deployment_target = '13.0' + s.osx.deployment_target = '10.15' + s.watchos.deployment_target = '6.0' + s.tvos.deployment_target = '13.0' s.source_files = 'Sources/**/*' diff --git a/ContentstackSwift.xcodeproj/ContentstackTests_Info.plist b/ContentstackSwift.xcodeproj/ContentstackTests_Info.plist new file mode 100644 index 00000000..7c23420d --- /dev/null +++ b/ContentstackSwift.xcodeproj/ContentstackTests_Info.plist @@ -0,0 +1,25 @@ + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + BNDL + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + $(CURRENT_PROJECT_VERSION) + NSPrincipalClass + + + diff --git a/ContentstackSwift.xcodeproj/Contentstack_Info.plist b/ContentstackSwift.xcodeproj/Contentstack_Info.plist new file mode 100644 index 00000000..57ada9f9 --- /dev/null +++ b/ContentstackSwift.xcodeproj/Contentstack_Info.plist @@ -0,0 +1,25 @@ + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + $(CURRENT_PROJECT_VERSION) + NSPrincipalClass + + + diff --git a/ContentstackSwift.xcodeproj/project.pbxproj b/ContentstackSwift.xcodeproj/project.pbxproj new file mode 100644 index 00000000..b13dd221 --- /dev/null +++ b/ContentstackSwift.xcodeproj/project.pbxproj @@ -0,0 +1,2628 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 54; + objects = { + +/* Begin PBXBuildFile section */ + 0F0246662431F37300F72181 /* ImageTransform.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F0246652431F37300F72181 /* ImageTransform.swift */; }; + 0F0246672431F37300F72181 /* ImageTransform.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F0246652431F37300F72181 /* ImageTransform.swift */; }; + 0F0246682431F37300F72181 /* ImageTransform.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F0246652431F37300F72181 /* ImageTransform.swift */; }; + 0F0246692431F37300F72181 /* ImageTransform.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F0246652431F37300F72181 /* ImageTransform.swift */; }; + 0F02466B243201B500F72181 /* ImageTransformTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F02466A243201B500F72181 /* ImageTransformTest.swift */; }; + 0F02466C243201B500F72181 /* ImageTransformTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F02466A243201B500F72181 /* ImageTransformTest.swift */; }; + 0F02466D243201B500F72181 /* ImageTransformTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F02466A243201B500F72181 /* ImageTransformTest.swift */; }; + 0F02466F243210E200F72181 /* ImageParameter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F02466E243210E200F72181 /* ImageParameter.swift */; }; + 0F024670243210E200F72181 /* ImageParameter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F02466E243210E200F72181 /* ImageParameter.swift */; }; + 0F024671243210E200F72181 /* ImageParameter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F02466E243210E200F72181 /* ImageParameter.swift */; }; + 0F024672243210E200F72181 /* ImageParameter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F02466E243210E200F72181 /* ImageParameter.swift */; }; + 0F024674243217D800F72181 /* ImageTransformError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F024673243217D800F72181 /* ImageTransformError.swift */; }; + 0F024675243217D800F72181 /* ImageTransformError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F024673243217D800F72181 /* ImageTransformError.swift */; }; + 0F024676243217D800F72181 /* ImageTransformError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F024673243217D800F72181 /* ImageTransformError.swift */; }; + 0F024677243217D800F72181 /* ImageTransformError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F024673243217D800F72181 /* ImageTransformError.swift */; }; + 0F096B14243610470094F042 /* ImageTransformTestAdditional.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F096B13243610470094F042 /* ImageTransformTestAdditional.swift */; }; + 0F096B15243610470094F042 /* ImageTransformTestAdditional.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F096B13243610470094F042 /* ImageTransformTestAdditional.swift */; }; + 0F096B16243610470094F042 /* ImageTransformTestAdditional.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F096B13243610470094F042 /* ImageTransformTestAdditional.swift */; }; + 0F1DCC7A243D9BD400EED404 /* SyncTest.json in Resources */ = {isa = PBXBuildFile; fileRef = 0F1DCC77243D9BBF00EED404 /* SyncTest.json */; }; + 0F1DCC7B243D9BD400EED404 /* SyncTest.json in Resources */ = {isa = PBXBuildFile; fileRef = 0F1DCC77243D9BBF00EED404 /* SyncTest.json */; }; + 0F1DCC80243DCF2500EED404 /* EntryModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F1DCC7F243DCF2500EED404 /* EntryModel.swift */; }; + 0F1DCC81243DCF2500EED404 /* EntryModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F1DCC7F243DCF2500EED404 /* EntryModel.swift */; }; + 0F1DCC82243DCF2500EED404 /* EntryModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F1DCC7F243DCF2500EED404 /* EntryModel.swift */; }; + 0F1DCC83243DCF2500EED404 /* EntryModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F1DCC7F243DCF2500EED404 /* EntryModel.swift */; }; + 0F1DCC85243DD01900EED404 /* AssetModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F1DCC84243DD01900EED404 /* AssetModel.swift */; }; + 0F1DCC86243DD01900EED404 /* AssetModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F1DCC84243DD01900EED404 /* AssetModel.swift */; }; + 0F1DCC87243DD01900EED404 /* AssetModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F1DCC84243DD01900EED404 /* AssetModel.swift */; }; + 0F1DCC88243DD01900EED404 /* AssetModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F1DCC84243DD01900EED404 /* AssetModel.swift */; }; + 0F1DCC8A243DD20E00EED404 /* ContentTypeModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F1DCC89243DD20E00EED404 /* ContentTypeModel.swift */; }; + 0F1DCC8B243DD20E00EED404 /* ContentTypeModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F1DCC89243DD20E00EED404 /* ContentTypeModel.swift */; }; + 0F1DCC8C243DD20E00EED404 /* ContentTypeModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F1DCC89243DD20E00EED404 /* ContentTypeModel.swift */; }; + 0F1DCC8D243DD20E00EED404 /* ContentTypeModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F1DCC89243DD20E00EED404 /* ContentTypeModel.swift */; }; + 0F244F9E244062B4003C3F26 /* ContentType.json in Resources */ = {isa = PBXBuildFile; fileRef = 0F244F9C244062B4003C3F26 /* ContentType.json */; }; + 0F244F9F244062B4003C3F26 /* ContentType.json in Resources */ = {isa = PBXBuildFile; fileRef = 0F244F9C244062B4003C3F26 /* ContentType.json */; }; + 0F244FA224406A2D003C3F26 /* SyncStack.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F244FA124406A2D003C3F26 /* SyncStack.swift */; }; + 0F244FA324406A2D003C3F26 /* SyncStack.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F244FA124406A2D003C3F26 /* SyncStack.swift */; }; + 0F244FA424406A2D003C3F26 /* SyncStack.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F244FA124406A2D003C3F26 /* SyncStack.swift */; }; + 0F244FA524406A2D003C3F26 /* SyncStack.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F244FA124406A2D003C3F26 /* SyncStack.swift */; }; + 0F244FA724406A4A003C3F26 /* EntryQueriableTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F244FA624406A4A003C3F26 /* EntryQueriableTest.swift */; }; + 0F244FA824406A4A003C3F26 /* EntryQueriableTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F244FA624406A4A003C3F26 /* EntryQueriableTest.swift */; }; + 0F244FA924406A4A003C3F26 /* EntryQueriableTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F244FA624406A4A003C3F26 /* EntryQueriableTest.swift */; }; + 0F2DB7E72451D353007B9815 /* ImageOperations.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F2DB7E62451D353007B9815 /* ImageOperations.swift */; }; + 0F2DB7E82451D353007B9815 /* ImageOperations.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F2DB7E62451D353007B9815 /* ImageOperations.swift */; }; + 0F2DB7E92451D353007B9815 /* ImageOperations.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F2DB7E62451D353007B9815 /* ImageOperations.swift */; }; + 0F2DB7EA2451D353007B9815 /* ImageOperations.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F2DB7E62451D353007B9815 /* ImageOperations.swift */; }; + 0F359991257BE29B00B3DB89 /* Asset.json in Resources */ = {isa = PBXBuildFile; fileRef = 0FFBB4462446F9A4000D2795 /* Asset.json */; }; + 0F359992257BE2A700B3DB89 /* ContentType.json in Resources */ = {isa = PBXBuildFile; fileRef = 0F244F9C244062B4003C3F26 /* ContentType.json */; }; + 0F359993257BE2D100B3DB89 /* Entry.json in Resources */ = {isa = PBXBuildFile; fileRef = 0F796C512449EA8700EA04D5 /* Entry.json */; }; + 0F359994257BE2EE00B3DB89 /* QueryOn.json in Resources */ = {isa = PBXBuildFile; fileRef = 0F50EA15244ED7F500E5D705 /* QueryOn.json */; }; + 0F359995257BE30A00B3DB89 /* SyncTest.json in Resources */ = {isa = PBXBuildFile; fileRef = 0F1DCC77243D9BBF00EED404 /* SyncTest.json */; }; + 0F38D7E0242C7C9E00232D7F /* Product.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F38D7DF242C7C9E00232D7F /* Product.swift */; }; + 0F38D7E1242C7C9E00232D7F /* Product.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F38D7DF242C7C9E00232D7F /* Product.swift */; }; + 0F38D7E2242C7C9E00232D7F /* Product.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F38D7DF242C7C9E00232D7F /* Product.swift */; }; + 0F38D7E4242C831300232D7F /* AssetTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F38D7E3242C831300232D7F /* AssetTest.swift */; }; + 0F38D7E5242C831A00232D7F /* AssetTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F38D7E3242C831300232D7F /* AssetTest.swift */; }; + 0F38D7E6242C831B00232D7F /* AssetTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F38D7E3242C831300232D7F /* AssetTest.swift */; }; + 0F463113243B044F001CE1FA /* SyncTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F463112243B044F001CE1FA /* SyncTest.swift */; }; + 0F463114243B044F001CE1FA /* SyncTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F463112243B044F001CE1FA /* SyncTest.swift */; }; + 0F463115243B044F001CE1FA /* SyncTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F463112243B044F001CE1FA /* SyncTest.swift */; }; + 0F4A245C24224D3100159C24 /* ContentstackResponse.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4A245B24224D3100159C24 /* ContentstackResponse.swift */; }; + 0F4A245D24224D3100159C24 /* ContentstackResponse.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4A245B24224D3100159C24 /* ContentstackResponse.swift */; }; + 0F4A245E24224D3100159C24 /* ContentstackResponse.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4A245B24224D3100159C24 /* ContentstackResponse.swift */; }; + 0F4A245F24224D3100159C24 /* ContentstackResponse.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4A245B24224D3100159C24 /* ContentstackResponse.swift */; }; + 0F4A75D4241BAC4300E3A024 /* ContentstackSwift.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0F4A75CB241BAC4300E3A024 /* ContentstackSwift.framework */; }; + 0F4A75F4241BAE6C00E3A024 /* ContentstackSwift.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0F4A75EB241BAE6C00E3A024 /* ContentstackSwift.framework */; }; + 0F4A7610241BAFE000E3A024 /* ContentstackSwift.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0F4A7607241BAFE000E3A024 /* ContentstackSwift.framework */; }; + 0F4A762C241BB0D200E3A024 /* Contentstack.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4A762B241BB0D200E3A024 /* Contentstack.swift */; }; + 0F4A762D241BB0D200E3A024 /* Contentstack.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4A762B241BB0D200E3A024 /* Contentstack.swift */; }; + 0F4A762E241BB0D200E3A024 /* Contentstack.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4A762B241BB0D200E3A024 /* Contentstack.swift */; }; + 0F4A762F241BB0D200E3A024 /* Contentstack.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4A762B241BB0D200E3A024 /* Contentstack.swift */; }; + 0F4A7646241BB3CB00E3A024 /* ContentstackTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4A7641241BB3C600E3A024 /* ContentstackTests.swift */; }; + 0F4A7647241BB3CC00E3A024 /* ContentstackTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4A7641241BB3C600E3A024 /* ContentstackTests.swift */; }; + 0F4A7648241BB3CE00E3A024 /* ContentstackTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4A7641241BB3C600E3A024 /* ContentstackTests.swift */; }; + 0F4C0A7C243C4579006604B7 /* Error.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4C0A7B243C4579006604B7 /* Error.swift */; }; + 0F4C0A7D243C4584006604B7 /* Error.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4C0A7B243C4579006604B7 /* Error.swift */; }; + 0F4C0A7E243C4585006604B7 /* Error.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4C0A7B243C4579006604B7 /* Error.swift */; }; + 0F4C0A7F243C4586006604B7 /* Error.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4C0A7B243C4579006604B7 /* Error.swift */; }; + 0F4C0A81243C470F006604B7 /* ContentstackLogger.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4C0A80243C470F006604B7 /* ContentstackLogger.swift */; }; + 0F4C0A82243C470F006604B7 /* ContentstackLogger.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4C0A80243C470F006604B7 /* ContentstackLogger.swift */; }; + 0F4C0A83243C470F006604B7 /* ContentstackLogger.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4C0A80243C470F006604B7 /* ContentstackLogger.swift */; }; + 0F4C0A84243C470F006604B7 /* ContentstackLogger.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4C0A80243C470F006604B7 /* ContentstackLogger.swift */; }; + 0F4C0A87243C6990006604B7 /* config.json in Resources */ = {isa = PBXBuildFile; fileRef = 0F4C0A86243C6990006604B7 /* config.json */; }; + 0F4C0A88243C6990006604B7 /* config.json in Resources */ = {isa = PBXBuildFile; fileRef = 0F4C0A86243C6990006604B7 /* config.json */; }; + 0F4C0A89243C6990006604B7 /* config.json in Resources */ = {isa = PBXBuildFile; fileRef = 0F4C0A86243C6990006604B7 /* config.json */; }; + 0F4FBCA02420B0E4007B8CAE /* DateTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4FBC9F2420B0E4007B8CAE /* DateTest.swift */; }; + 0F4FBCA12420B0E4007B8CAE /* DateTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4FBC9F2420B0E4007B8CAE /* DateTest.swift */; }; + 0F4FBCA22420B0E4007B8CAE /* DateTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4FBC9F2420B0E4007B8CAE /* DateTest.swift */; }; + 0F4FBCA42420B5F4007B8CAE /* Utils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4FBCA32420B5F4007B8CAE /* Utils.swift */; }; + 0F4FBCA52420B5F4007B8CAE /* Utils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4FBCA32420B5F4007B8CAE /* Utils.swift */; }; + 0F4FBCA62420B5F4007B8CAE /* Utils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4FBCA32420B5F4007B8CAE /* Utils.swift */; }; + 0F4FBCA72420B5F4007B8CAE /* Utils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4FBCA32420B5F4007B8CAE /* Utils.swift */; }; + 0F4FBCA92420B615007B8CAE /* UtilsTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4FBCA82420B615007B8CAE /* UtilsTest.swift */; }; + 0F4FBCAA2420B615007B8CAE /* UtilsTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4FBCA82420B615007B8CAE /* UtilsTest.swift */; }; + 0F4FBCAB2420B615007B8CAE /* UtilsTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4FBCA82420B615007B8CAE /* UtilsTest.swift */; }; + 0F4FBCAD2420CD5F007B8CAE /* Query.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4FBCAC2420CD5F007B8CAE /* Query.swift */; }; + 0F4FBCAE2420CD5F007B8CAE /* Query.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4FBCAC2420CD5F007B8CAE /* Query.swift */; }; + 0F4FBCAF2420CD5F007B8CAE /* Query.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4FBCAC2420CD5F007B8CAE /* Query.swift */; }; + 0F4FBCB02420CD5F007B8CAE /* Query.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4FBCAC2420CD5F007B8CAE /* Query.swift */; }; + 0F4FBCB32420D2F1007B8CAE /* QueryOperation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4FBCB22420D2F1007B8CAE /* QueryOperation.swift */; }; + 0F4FBCB42420D2F1007B8CAE /* QueryOperation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4FBCB22420D2F1007B8CAE /* QueryOperation.swift */; }; + 0F4FBCB52420D2F1007B8CAE /* QueryOperation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4FBCB22420D2F1007B8CAE /* QueryOperation.swift */; }; + 0F4FBCB62420D2F1007B8CAE /* QueryOperation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4FBCB22420D2F1007B8CAE /* QueryOperation.swift */; }; + 0F4FBCB82420F344007B8CAE /* QueryParameter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4FBCB72420F344007B8CAE /* QueryParameter.swift */; }; + 0F4FBCB92420F344007B8CAE /* QueryParameter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4FBCB72420F344007B8CAE /* QueryParameter.swift */; }; + 0F4FBCBA2420F344007B8CAE /* QueryParameter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4FBCB72420F344007B8CAE /* QueryParameter.swift */; }; + 0F4FBCBB2420F344007B8CAE /* QueryParameter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4FBCB72420F344007B8CAE /* QueryParameter.swift */; }; + 0F50EA0E244EC3DD00E5D705 /* Session.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F50EA0D244EC3DD00E5D705 /* Session.swift */; }; + 0F50EA0F244EC3DD00E5D705 /* Session.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F50EA0D244EC3DD00E5D705 /* Session.swift */; }; + 0F50EA10244EC3DD00E5D705 /* Session.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F50EA0D244EC3DD00E5D705 /* Session.swift */; }; + 0F50EA17244ED7F500E5D705 /* QueryOn.json in Resources */ = {isa = PBXBuildFile; fileRef = 0F50EA15244ED7F500E5D705 /* QueryOn.json */; }; + 0F50EA18244ED7F500E5D705 /* QueryOn.json in Resources */ = {isa = PBXBuildFile; fileRef = 0F50EA15244ED7F500E5D705 /* QueryOn.json */; }; + 0F50EA1D244ED88C00E5D705 /* StackCacheAPITest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F50EA1C244ED88C00E5D705 /* StackCacheAPITest.swift */; }; + 0F50EA1E244ED88C00E5D705 /* StackCacheAPITest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F50EA1C244ED88C00E5D705 /* StackCacheAPITest.swift */; }; + 0F50EA1F244ED88C00E5D705 /* StackCacheAPITest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F50EA1C244ED88C00E5D705 /* StackCacheAPITest.swift */; }; + 0F5794C2266A37120082815C /* Paragraph.Json in Resources */ = {isa = PBXBuildFile; fileRef = 0F5794C1266A37120082815C /* Paragraph.Json */; }; + 0F5794C3266A37120082815C /* Paragraph.Json in Resources */ = {isa = PBXBuildFile; fileRef = 0F5794C1266A37120082815C /* Paragraph.Json */; }; + 0F5794C4266A37120082815C /* Paragraph.Json in Resources */ = {isa = PBXBuildFile; fileRef = 0F5794C1266A37120082815C /* Paragraph.Json */; }; + 0F60CA2F2428949C00ED67E6 /* EntryTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F60CA2E2428949C00ED67E6 /* EntryTest.swift */; }; + 0F60CA302428949C00ED67E6 /* EntryTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F60CA2E2428949C00ED67E6 /* EntryTest.swift */; }; + 0F60CA312428949C00ED67E6 /* EntryTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F60CA2E2428949C00ED67E6 /* EntryTest.swift */; }; + 0F60CA332428D02600ED67E6 /* QueryEntryType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F60CA322428D02600ED67E6 /* QueryEntryType.swift */; }; + 0F60CA342428D02600ED67E6 /* QueryEntryType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F60CA322428D02600ED67E6 /* QueryEntryType.swift */; }; + 0F60CA352428D02600ED67E6 /* QueryEntryType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F60CA322428D02600ED67E6 /* QueryEntryType.swift */; }; + 0F7138C52424A70C00B314B0 /* AssetQueryTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F7138C42424A70C00B314B0 /* AssetQueryTest.swift */; }; + 0F7138C62424A70C00B314B0 /* AssetQueryTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F7138C42424A70C00B314B0 /* AssetQueryTest.swift */; }; + 0F7138C72424A70C00B314B0 /* AssetQueryTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F7138C42424A70C00B314B0 /* AssetQueryTest.swift */; }; + 0F7138CD2424A94000B314B0 /* QueryTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F7138CC2424A94000B314B0 /* QueryTest.swift */; }; + 0F7138CE2424A94000B314B0 /* QueryTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F7138CC2424A94000B314B0 /* QueryTest.swift */; }; + 0F7138CF2424A94000B314B0 /* QueryTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F7138CC2424A94000B314B0 /* QueryTest.swift */; }; + 0F7138D12424E98D00B314B0 /* ParameterEncoding.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F7138D02424E98D00B314B0 /* ParameterEncoding.swift */; }; + 0F7138D22424E98D00B314B0 /* ParameterEncoding.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F7138D02424E98D00B314B0 /* ParameterEncoding.swift */; }; + 0F7138D32424E98D00B314B0 /* ParameterEncoding.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F7138D02424E98D00B314B0 /* ParameterEncoding.swift */; }; + 0F7138D42424E98D00B314B0 /* ParameterEncoding.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F7138D02424E98D00B314B0 /* ParameterEncoding.swift */; }; + 0F77CFB824373B8A00C57764 /* ImageTransformEquatableTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F77CFB724373B8A00C57764 /* ImageTransformEquatableTest.swift */; }; + 0F77CFB924373B8F00C57764 /* ImageTransformEquatableTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F77CFB724373B8A00C57764 /* ImageTransformEquatableTest.swift */; }; + 0F77CFBA24373B9000C57764 /* ImageTransformEquatableTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F77CFB724373B8A00C57764 /* ImageTransformEquatableTest.swift */; }; + 0F796C532449EA8700EA04D5 /* Entry.json in Resources */ = {isa = PBXBuildFile; fileRef = 0F796C512449EA8700EA04D5 /* Entry.json */; }; + 0F796C542449EA8700EA04D5 /* Entry.json in Resources */ = {isa = PBXBuildFile; fileRef = 0F796C512449EA8700EA04D5 /* Entry.json */; }; + 0FB4CAC924332C5200A385B1 /* ImageOperation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FB4CAC824332C5200A385B1 /* ImageOperation.swift */; }; + 0FB4CACA24332C5200A385B1 /* ImageOperation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FB4CAC824332C5200A385B1 /* ImageOperation.swift */; }; + 0FB4CACB24332C5200A385B1 /* ImageOperation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FB4CAC824332C5200A385B1 /* ImageOperation.swift */; }; + 0FB4CACC24332C5200A385B1 /* ImageOperation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FB4CAC824332C5200A385B1 /* ImageOperation.swift */; }; + 0FC52DBA2452EDE000B33614 /* EntryQuaryable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FC52DB92452EDE000B33614 /* EntryQuaryable.swift */; }; + 0FC52DBB2452EDE000B33614 /* EntryQuaryable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FC52DB92452EDE000B33614 /* EntryQuaryable.swift */; }; + 0FC52DBC2452EDE000B33614 /* EntryQuaryable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FC52DB92452EDE000B33614 /* EntryQuaryable.swift */; }; + 0FC52DBD2452EDE000B33614 /* EntryQuaryable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FC52DB92452EDE000B33614 /* EntryQuaryable.swift */; }; + 0FD39D40242352F800E34826 /* QueryableRange.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FD39D3F242352F800E34826 /* QueryableRange.swift */; }; + 0FD39D41242352F800E34826 /* QueryableRange.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FD39D3F242352F800E34826 /* QueryableRange.swift */; }; + 0FD39D42242352F800E34826 /* QueryableRange.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FD39D3F242352F800E34826 /* QueryableRange.swift */; }; + 0FD39D43242352F800E34826 /* QueryableRange.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FD39D3F242352F800E34826 /* QueryableRange.swift */; }; + 0FD39D45242356B100E34826 /* QueryProtocols.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FD39D44242356B100E34826 /* QueryProtocols.swift */; }; + 0FD39D46242356B100E34826 /* QueryProtocols.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FD39D44242356B100E34826 /* QueryProtocols.swift */; }; + 0FD39D47242356B100E34826 /* QueryProtocols.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FD39D44242356B100E34826 /* QueryProtocols.swift */; }; + 0FD39D48242356B100E34826 /* QueryProtocols.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FD39D44242356B100E34826 /* QueryProtocols.swift */; }; + 0FD39D4A24237A0400E34826 /* ContentTypeQueryTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FD39D4924237A0400E34826 /* ContentTypeQueryTest.swift */; }; + 0FD39D4B24237A0400E34826 /* ContentTypeQueryTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FD39D4924237A0400E34826 /* ContentTypeQueryTest.swift */; }; + 0FD39D4C24237A0400E34826 /* ContentTypeQueryTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FD39D4924237A0400E34826 /* ContentTypeQueryTest.swift */; }; + 0FFA5D4A241F4DED003B3AF5 /* ContentstackConfigTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D49241F4DED003B3AF5 /* ContentstackConfigTest.swift */; }; + 0FFA5D4E241F4FAC003B3AF5 /* Contentstack.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FFA5D4B241F4FAC003B3AF5 /* Contentstack.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 0FFA5D4F241F4FAC003B3AF5 /* Contentstack.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FFA5D4B241F4FAC003B3AF5 /* Contentstack.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 0FFA5D50241F4FAC003B3AF5 /* Contentstack.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FFA5D4B241F4FAC003B3AF5 /* Contentstack.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 0FFA5D55241F4FC3003B3AF5 /* Contentstack.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FFA5D4B241F4FAC003B3AF5 /* Contentstack.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 0FFA5D57241F5085003B3AF5 /* ContentstackConfig.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D56241F5085003B3AF5 /* ContentstackConfig.swift */; }; + 0FFA5D58241F5085003B3AF5 /* ContentstackConfig.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D56241F5085003B3AF5 /* ContentstackConfig.swift */; }; + 0FFA5D59241F5085003B3AF5 /* ContentstackConfig.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D56241F5085003B3AF5 /* ContentstackConfig.swift */; }; + 0FFA5D5A241F5085003B3AF5 /* ContentstackConfig.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D56241F5085003B3AF5 /* ContentstackConfig.swift */; }; + 0FFA5D5C241F5134003B3AF5 /* Stack.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D5B241F5134003B3AF5 /* Stack.swift */; }; + 0FFA5D5D241F5134003B3AF5 /* Stack.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D5B241F5134003B3AF5 /* Stack.swift */; }; + 0FFA5D5E241F5134003B3AF5 /* Stack.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D5B241F5134003B3AF5 /* Stack.swift */; }; + 0FFA5D5F241F5134003B3AF5 /* Stack.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D5B241F5134003B3AF5 /* Stack.swift */; }; + 0FFA5D63241F5575003B3AF5 /* CSDefinitions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D61241F5575003B3AF5 /* CSDefinitions.swift */; }; + 0FFA5D64241F5575003B3AF5 /* CSDefinitions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D61241F5575003B3AF5 /* CSDefinitions.swift */; }; + 0FFA5D65241F5575003B3AF5 /* CSDefinitions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D61241F5575003B3AF5 /* CSDefinitions.swift */; }; + 0FFA5D66241F5575003B3AF5 /* CSDefinitions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D61241F5575003B3AF5 /* CSDefinitions.swift */; }; + 0FFA5D67241F5575003B3AF5 /* CSURLCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D62241F5575003B3AF5 /* CSURLCache.swift */; }; + 0FFA5D68241F5575003B3AF5 /* CSURLCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D62241F5575003B3AF5 /* CSURLCache.swift */; }; + 0FFA5D69241F5575003B3AF5 /* CSURLCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D62241F5575003B3AF5 /* CSURLCache.swift */; }; + 0FFA5D6A241F5575003B3AF5 /* CSURLCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D62241F5575003B3AF5 /* CSURLCache.swift */; }; + 0FFA5D70241F6BFA003B3AF5 /* Decodable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D6E241F6BF9003B3AF5 /* Decodable.swift */; }; + 0FFA5D71241F6BFA003B3AF5 /* Decodable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D6E241F6BF9003B3AF5 /* Decodable.swift */; }; + 0FFA5D72241F6BFA003B3AF5 /* Decodable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D6E241F6BF9003B3AF5 /* Decodable.swift */; }; + 0FFA5D73241F6BFA003B3AF5 /* Decodable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D6E241F6BF9003B3AF5 /* Decodable.swift */; }; + 0FFA5D74241F6BFA003B3AF5 /* Date.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D6F241F6BFA003B3AF5 /* Date.swift */; }; + 0FFA5D75241F6BFA003B3AF5 /* Date.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D6F241F6BFA003B3AF5 /* Date.swift */; }; + 0FFA5D76241F6BFA003B3AF5 /* Date.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D6F241F6BFA003B3AF5 /* Date.swift */; }; + 0FFA5D77241F6BFA003B3AF5 /* Date.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D6F241F6BFA003B3AF5 /* Date.swift */; }; + 0FFA5D7A241F7033003B3AF5 /* ContentType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D79241F7033003B3AF5 /* ContentType.swift */; }; + 0FFA5D7B241F7033003B3AF5 /* ContentType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D79241F7033003B3AF5 /* ContentType.swift */; }; + 0FFA5D7C241F7033003B3AF5 /* ContentType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D79241F7033003B3AF5 /* ContentType.swift */; }; + 0FFA5D7D241F7033003B3AF5 /* ContentType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D79241F7033003B3AF5 /* ContentType.swift */; }; + 0FFA5D7F241F7060003B3AF5 /* SystemFields.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D7E241F7060003B3AF5 /* SystemFields.swift */; }; + 0FFA5D80241F7060003B3AF5 /* SystemFields.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D7E241F7060003B3AF5 /* SystemFields.swift */; }; + 0FFA5D81241F7060003B3AF5 /* SystemFields.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D7E241F7060003B3AF5 /* SystemFields.swift */; }; + 0FFA5D82241F7060003B3AF5 /* SystemFields.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D7E241F7060003B3AF5 /* SystemFields.swift */; }; + 0FFA5D84241F808F003B3AF5 /* Asset.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D83241F808F003B3AF5 /* Asset.swift */; }; + 0FFA5D85241F808F003B3AF5 /* Asset.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D83241F808F003B3AF5 /* Asset.swift */; }; + 0FFA5D86241F808F003B3AF5 /* Asset.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D83241F808F003B3AF5 /* Asset.swift */; }; + 0FFA5D87241F808F003B3AF5 /* Asset.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D83241F808F003B3AF5 /* Asset.swift */; }; + 0FFA5D8D241F8122003B3AF5 /* StackTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D88241F8113003B3AF5 /* StackTest.swift */; }; + 0FFA5D8E241F8122003B3AF5 /* StackTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D88241F8113003B3AF5 /* StackTest.swift */; }; + 0FFA5D8F241F8123003B3AF5 /* StackTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D88241F8113003B3AF5 /* StackTest.swift */; }; + 0FFA5D90241F8126003B3AF5 /* ContentstackConfigTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D49241F4DED003B3AF5 /* ContentstackConfigTest.swift */; }; + 0FFA5D91241F8127003B3AF5 /* ContentstackConfigTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D49241F4DED003B3AF5 /* ContentstackConfigTest.swift */; }; + 0FFA5D93241F8214003B3AF5 /* EndPoint.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D92241F8214003B3AF5 /* EndPoint.swift */; }; + 0FFA5D94241F8214003B3AF5 /* EndPoint.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D92241F8214003B3AF5 /* EndPoint.swift */; }; + 0FFA5D95241F8214003B3AF5 /* EndPoint.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D92241F8214003B3AF5 /* EndPoint.swift */; }; + 0FFA5D96241F8214003B3AF5 /* EndPoint.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D92241F8214003B3AF5 /* EndPoint.swift */; }; + 0FFA5D98241F8EB2003B3AF5 /* Entry.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D97241F8EB2003B3AF5 /* Entry.swift */; }; + 0FFA5D99241F8EB2003B3AF5 /* Entry.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D97241F8EB2003B3AF5 /* Entry.swift */; }; + 0FFA5D9A241F8EB2003B3AF5 /* Entry.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D97241F8EB2003B3AF5 /* Entry.swift */; }; + 0FFA5D9B241F8EB2003B3AF5 /* Entry.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D97241F8EB2003B3AF5 /* Entry.swift */; }; + 0FFA5D9F241F8FFE003B3AF5 /* ContentTypeTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D9E241F8FFE003B3AF5 /* ContentTypeTest.swift */; }; + 0FFA5DA0241F8FFE003B3AF5 /* ContentTypeTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D9E241F8FFE003B3AF5 /* ContentTypeTest.swift */; }; + 0FFA5DA1241F8FFE003B3AF5 /* ContentTypeTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D9E241F8FFE003B3AF5 /* ContentTypeTest.swift */; }; + 0FFA5DA3241F90BF003B3AF5 /* SutBuilder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5DA2241F90BF003B3AF5 /* SutBuilder.swift */; }; + 0FFA5DA4241F90BF003B3AF5 /* SutBuilder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5DA2241F90BF003B3AF5 /* SutBuilder.swift */; }; + 0FFA5DA5241F90BF003B3AF5 /* SutBuilder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5DA2241F90BF003B3AF5 /* SutBuilder.swift */; }; + 0FFA5DB4241F99F9003B3AF5 /* FatalError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5DB3241F99F9003B3AF5 /* FatalError.swift */; }; + 0FFA5DB6241F99F9003B3AF5 /* FatalError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5DB3241F99F9003B3AF5 /* FatalError.swift */; }; + 0FFA5DB8241F99F9003B3AF5 /* FatalError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5DB3241F99F9003B3AF5 /* FatalError.swift */; }; + 0FFA5DBA241F99F9003B3AF5 /* FatalError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5DB3241F99F9003B3AF5 /* FatalError.swift */; }; + 0FFA5DBC241F9A6C003B3AF5 /* XCTestCase+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5DBB241F9A6C003B3AF5 /* XCTestCase+Extension.swift */; }; + 0FFA5DBD241F9A6C003B3AF5 /* XCTestCase+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5DBB241F9A6C003B3AF5 /* XCTestCase+Extension.swift */; }; + 0FFA5DBE241F9A6C003B3AF5 /* XCTestCase+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5DBB241F9A6C003B3AF5 /* XCTestCase+Extension.swift */; }; + 0FFBB4482446F9A4000D2795 /* Asset.json in Resources */ = {isa = PBXBuildFile; fileRef = 0FFBB4462446F9A4000D2795 /* Asset.json */; }; + 0FFBB4492446F9A4000D2795 /* Asset.json in Resources */ = {isa = PBXBuildFile; fileRef = 0FFBB4462446F9A4000D2795 /* Asset.json */; }; + 0FFBB44C24470C43000D2795 /* ContentStackLogTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFBB44B24470C43000D2795 /* ContentStackLogTest.swift */; }; + 0FFBB44D24470C43000D2795 /* ContentStackLogTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFBB44B24470C43000D2795 /* ContentStackLogTest.swift */; }; + 0FFBB44E24470C43000D2795 /* ContentStackLogTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFBB44B24470C43000D2795 /* ContentStackLogTest.swift */; }; + 470253932C0C612A009BDF8B /* TaxonomyModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 470253922C0C612A009BDF8B /* TaxonomyModel.swift */; }; + 470253942C0C612A009BDF8B /* TaxonomyModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 470253922C0C612A009BDF8B /* TaxonomyModel.swift */; }; + 470253952C0C612A009BDF8B /* TaxonomyModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 470253922C0C612A009BDF8B /* TaxonomyModel.swift */; }; + 470253962C0C612A009BDF8B /* TaxonomyModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 470253922C0C612A009BDF8B /* TaxonomyModel.swift */; }; + 470657542B5E785C00BBFF88 /* ContentTypeQueryAPITest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 470657532B5E785C00BBFF88 /* ContentTypeQueryAPITest.swift */; }; + 470657552B5E785C00BBFF88 /* ContentTypeQueryAPITest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 470657532B5E785C00BBFF88 /* ContentTypeQueryAPITest.swift */; }; + 470657562B5E785C00BBFF88 /* ContentTypeQueryAPITest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 470657532B5E785C00BBFF88 /* ContentTypeQueryAPITest.swift */; }; + 470657582B5E788400BBFF88 /* EntryAPITest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 470657572B5E788400BBFF88 /* EntryAPITest.swift */; }; + 470657592B5E788400BBFF88 /* EntryAPITest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 470657572B5E788400BBFF88 /* EntryAPITest.swift */; }; + 4706575A2B5E788400BBFF88 /* EntryAPITest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 470657572B5E788400BBFF88 /* EntryAPITest.swift */; }; + 4706575C2B5E78B300BBFF88 /* AssetQueryAPITest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4706575B2B5E78B300BBFF88 /* AssetQueryAPITest.swift */; }; + 4706575D2B5E78B300BBFF88 /* AssetQueryAPITest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4706575B2B5E78B300BBFF88 /* AssetQueryAPITest.swift */; }; + 4706575E2B5E78B300BBFF88 /* AssetQueryAPITest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4706575B2B5E78B300BBFF88 /* AssetQueryAPITest.swift */; }; + 470657602B5E797300BBFF88 /* ContentstackTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4706575F2B5E797300BBFF88 /* ContentstackTest.swift */; }; + 470657612B5E797300BBFF88 /* ContentstackTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4706575F2B5E797300BBFF88 /* ContentstackTest.swift */; }; + 470657622B5E797300BBFF88 /* ContentstackTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4706575F2B5E797300BBFF88 /* ContentstackTest.swift */; }; + 47AAE0902B60420E0098655A /* SyncAPITest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 47AAE08F2B60420E0098655A /* SyncAPITest.swift */; }; + 47AAE0912B60420E0098655A /* SyncAPITest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 47AAE08F2B60420E0098655A /* SyncAPITest.swift */; }; + 47AAE0922B60420E0098655A /* SyncAPITest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 47AAE08F2B60420E0098655A /* SyncAPITest.swift */; }; + 47B09C292CA9530100B8AB41 /* ContentstackUtils in Frameworks */ = {isa = PBXBuildFile; productRef = 47B09C282CA9530100B8AB41 /* ContentstackUtils */; }; + 47B4DC622C232A8200370CFC /* TaxonomyTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 47B4DC612C232A8200370CFC /* TaxonomyTest.swift */; }; + 47B4DC632C232A8200370CFC /* TaxonomyTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 47B4DC612C232A8200370CFC /* TaxonomyTest.swift */; }; + 47B4DC642C232A8200370CFC /* TaxonomyTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 47B4DC612C232A8200370CFC /* TaxonomyTest.swift */; }; + 47C6EFC22C0B5B9400F0D5CF /* Taxonomy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 47C6EFC12C0B5B9400F0D5CF /* Taxonomy.swift */; }; + 47C6EFC32C0B5B9400F0D5CF /* Taxonomy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 47C6EFC12C0B5B9400F0D5CF /* Taxonomy.swift */; }; + 47C6EFC42C0B5B9400F0D5CF /* Taxonomy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 47C6EFC12C0B5B9400F0D5CF /* Taxonomy.swift */; }; + 47C6EFC52C0B5B9400F0D5CF /* Taxonomy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 47C6EFC12C0B5B9400F0D5CF /* Taxonomy.swift */; }; + 47D561512C9EF97D00DC085D /* ContentstackUtils in Frameworks */ = {isa = PBXBuildFile; productRef = 47D561502C9EF97D00DC085D /* ContentstackUtils */; }; + 47D561572C9EFA5900DC085D /* DVR in Frameworks */ = {isa = PBXBuildFile; productRef = 47D561562C9EFA5900DC085D /* DVR */; }; + 6750778E2D3E256A0076A066 /* DVR in Frameworks */ = {isa = PBXBuildFile; productRef = 6750778D2D3E256A0076A066 /* DVR */; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + 0F4A75F5241BAE6C00E3A024 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0F4A75EA241BAE6C00E3A024; + remoteInfo = "Contentstack macOS"; + }; + 0F4A7611241BAFE000E3A024 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0F4A7606241BAFE000E3A024; + remoteInfo = "Contentstack tvOS"; + }; + 0F4A764C241BB42100E3A024 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = OBJ_1 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0F4A75CA241BAC4300E3A024; + remoteInfo = "Contentstack iOS"; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXFileReference section */ + 0F0246652431F37300F72181 /* ImageTransform.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ImageTransform.swift; sourceTree = ""; }; + 0F02466A243201B500F72181 /* ImageTransformTest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ImageTransformTest.swift; sourceTree = ""; }; + 0F02466E243210E200F72181 /* ImageParameter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ImageParameter.swift; sourceTree = ""; }; + 0F024673243217D800F72181 /* ImageTransformError.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ImageTransformError.swift; sourceTree = ""; }; + 0F096B13243610470094F042 /* ImageTransformTestAdditional.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ImageTransformTestAdditional.swift; sourceTree = ""; }; + 0F1DCC6E243D980A00EED404 /* DVR.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = DVR.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 0F1DCC70243D980A00EED404 /* OHHTTPStubs.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = OHHTTPStubs.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 0F1DCC72243D991100EED404 /* DVR.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = DVR.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 0F1DCC74243D991100EED404 /* OHHTTPStubs.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = OHHTTPStubs.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 0F1DCC77243D9BBF00EED404 /* SyncTest.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = SyncTest.json; sourceTree = ""; }; + 0F1DCC7F243DCF2500EED404 /* EntryModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EntryModel.swift; sourceTree = ""; }; + 0F1DCC84243DD01900EED404 /* AssetModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AssetModel.swift; sourceTree = ""; }; + 0F1DCC89243DD20E00EED404 /* ContentTypeModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContentTypeModel.swift; sourceTree = ""; }; + 0F244F9C244062B4003C3F26 /* ContentType.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = ContentType.json; sourceTree = ""; }; + 0F244FA124406A2D003C3F26 /* SyncStack.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SyncStack.swift; sourceTree = ""; }; + 0F244FA624406A4A003C3F26 /* EntryQueriableTest.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "EntryQueriable\U0010\U0010Test.swift"; sourceTree = ""; }; + 0F2DB7E62451D353007B9815 /* ImageOperations.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ImageOperations.swift; sourceTree = ""; }; + 0F38D7DF242C7C9E00232D7F /* Product.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Product.swift; sourceTree = ""; }; + 0F38D7E3242C831300232D7F /* AssetTest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AssetTest.swift; sourceTree = ""; }; + 0F463112243B044F001CE1FA /* SyncTest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SyncTest.swift; sourceTree = ""; }; + 0F4A245B24224D3100159C24 /* ContentstackResponse.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContentstackResponse.swift; sourceTree = ""; }; + 0F4A75CB241BAC4300E3A024 /* ContentstackSwift.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = ContentstackSwift.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 0F4A75D3241BAC4300E3A024 /* ContentstackSwift iOS Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "ContentstackSwift iOS Tests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; }; + 0F4A75EB241BAE6C00E3A024 /* ContentstackSwift.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = ContentstackSwift.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 0F4A75F3241BAE6C00E3A024 /* ContentstackSwift macOS Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "ContentstackSwift macOS Tests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; }; + 0F4A7607241BAFE000E3A024 /* ContentstackSwift.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = ContentstackSwift.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 0F4A760F241BAFE000E3A024 /* ContentstackSwift tvOS Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "ContentstackSwift tvOS Tests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; }; + 0F4A7623241BB0A300E3A024 /* ContentstackSwift.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = ContentstackSwift.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 0F4A762B241BB0D200E3A024 /* Contentstack.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Contentstack.swift; sourceTree = ""; }; + 0F4A763C241BB38C00E3A024 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 0F4A7641241BB3C600E3A024 /* ContentstackTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ContentstackTests.swift; sourceTree = ""; }; + 0F4C0A7B243C4579006604B7 /* Error.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Error.swift; sourceTree = ""; }; + 0F4C0A80243C470F006604B7 /* ContentstackLogger.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContentstackLogger.swift; sourceTree = ""; }; + 0F4C0A86243C6990006604B7 /* config.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = config.json; sourceTree = ""; }; + 0F4FBC9A2420A17F007B8CAE /* Config.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Config.xcconfig; sourceTree = ""; }; + 0F4FBC9F2420B0E4007B8CAE /* DateTest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DateTest.swift; sourceTree = ""; }; + 0F4FBCA32420B5F4007B8CAE /* Utils.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Utils.swift; sourceTree = ""; }; + 0F4FBCA82420B615007B8CAE /* UtilsTest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UtilsTest.swift; sourceTree = ""; }; + 0F4FBCAC2420CD5F007B8CAE /* Query.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Query.swift; sourceTree = ""; }; + 0F4FBCB22420D2F1007B8CAE /* QueryOperation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = QueryOperation.swift; sourceTree = ""; }; + 0F4FBCB72420F344007B8CAE /* QueryParameter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = QueryParameter.swift; sourceTree = ""; }; + 0F50EA0D244EC3DD00E5D705 /* Session.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Session.swift; sourceTree = ""; }; + 0F50EA15244ED7F500E5D705 /* QueryOn.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = QueryOn.json; sourceTree = ""; }; + 0F50EA1C244ED88C00E5D705 /* StackCacheAPITest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StackCacheAPITest.swift; sourceTree = ""; }; + 0F5794C1266A37120082815C /* Paragraph.Json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = Paragraph.Json; sourceTree = ""; }; + 0F60CA2E2428949C00ED67E6 /* EntryTest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EntryTest.swift; sourceTree = ""; }; + 0F60CA322428D02600ED67E6 /* QueryEntryType.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = QueryEntryType.swift; sourceTree = ""; }; + 0F6B6CE424501328007AB3C1 /* swiftlint.sh */ = {isa = PBXFileReference; lastKnownFileType = text.script.sh; path = swiftlint.sh; sourceTree = ""; }; + 0F6B6CE524501328007AB3C1 /* run-test-cases.sh */ = {isa = PBXFileReference; lastKnownFileType = text.script.sh; path = "run-test-cases.sh"; sourceTree = ""; }; + 0F6B6CE624501328007AB3C1 /* reference-docs.sh */ = {isa = PBXFileReference; lastKnownFileType = text.script.sh; path = "reference-docs.sh"; sourceTree = ""; }; + 0F6B6CE724508154007AB3C1 /* DVR.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = DVR.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 0F6B6CE924508154007AB3C1 /* OHHTTPStubs.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = OHHTTPStubs.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 0F6B6CEB24508165007AB3C1 /* DVR.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = DVR.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 0F6B6CED24508165007AB3C1 /* OHHTTPStubs.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = OHHTTPStubs.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 0F7138C42424A70C00B314B0 /* AssetQueryTest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AssetQueryTest.swift; sourceTree = ""; }; + 0F7138CC2424A94000B314B0 /* QueryTest.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = QueryTest.swift; sourceTree = ""; }; + 0F7138D02424E98D00B314B0 /* ParameterEncoding.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ParameterEncoding.swift; sourceTree = ""; }; + 0F77CFB724373B8A00C57764 /* ImageTransformEquatableTest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ImageTransformEquatableTest.swift; sourceTree = ""; }; + 0F796C512449EA8700EA04D5 /* Entry.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = Entry.json; sourceTree = ""; }; + 0FB4CAC824332C5200A385B1 /* ImageOperation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ImageOperation.swift; sourceTree = ""; }; + 0FC52DB92452EDE000B33614 /* EntryQuaryable.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EntryQuaryable.swift; sourceTree = ""; }; + 0FD39D3F242352F800E34826 /* QueryableRange.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = QueryableRange.swift; sourceTree = ""; }; + 0FD39D44242356B100E34826 /* QueryProtocols.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = QueryProtocols.swift; sourceTree = ""; }; + 0FD39D4924237A0400E34826 /* ContentTypeQueryTest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContentTypeQueryTest.swift; sourceTree = ""; }; + 0FE1DC1B2457F8B600944056 /* ContentstackSwift.podspec */ = {isa = PBXFileReference; lastKnownFileType = text; path = ContentstackSwift.podspec; sourceTree = ""; }; + 0FFA5D49241F4DED003B3AF5 /* ContentstackConfigTest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContentstackConfigTest.swift; sourceTree = ""; }; + 0FFA5D4B241F4FAC003B3AF5 /* Contentstack.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Contentstack.h; sourceTree = ""; }; + 0FFA5D4C241F4FAC003B3AF5 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = "../Supporting Files/Info.plist"; sourceTree = ""; }; + 0FFA5D56241F5085003B3AF5 /* ContentstackConfig.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ContentstackConfig.swift; sourceTree = ""; }; + 0FFA5D5B241F5134003B3AF5 /* Stack.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Stack.swift; sourceTree = ""; }; + 0FFA5D61241F5575003B3AF5 /* CSDefinitions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CSDefinitions.swift; sourceTree = ""; }; + 0FFA5D62241F5575003B3AF5 /* CSURLCache.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CSURLCache.swift; sourceTree = ""; }; + 0FFA5D6E241F6BF9003B3AF5 /* Decodable.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Decodable.swift; sourceTree = ""; }; + 0FFA5D6F241F6BFA003B3AF5 /* Date.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Date.swift; sourceTree = ""; }; + 0FFA5D79241F7033003B3AF5 /* ContentType.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContentType.swift; sourceTree = ""; }; + 0FFA5D7E241F7060003B3AF5 /* SystemFields.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SystemFields.swift; sourceTree = ""; }; + 0FFA5D83241F808F003B3AF5 /* Asset.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Asset.swift; sourceTree = ""; }; + 0FFA5D88241F8113003B3AF5 /* StackTest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StackTest.swift; sourceTree = ""; }; + 0FFA5D92241F8214003B3AF5 /* EndPoint.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = EndPoint.swift; sourceTree = ""; }; + 0FFA5D97241F8EB2003B3AF5 /* Entry.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Entry.swift; sourceTree = ""; }; + 0FFA5D9E241F8FFE003B3AF5 /* ContentTypeTest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContentTypeTest.swift; sourceTree = ""; }; + 0FFA5DA2241F90BF003B3AF5 /* SutBuilder.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SutBuilder.swift; sourceTree = ""; }; + 0FFA5DB3241F99F9003B3AF5 /* FatalError.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FatalError.swift; sourceTree = ""; }; + 0FFA5DBB241F9A6C003B3AF5 /* XCTestCase+Extension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "XCTestCase+Extension.swift"; sourceTree = ""; }; + 0FFB22B3261C98E50056AEE0 /* .env */ = {isa = PBXFileReference; lastKnownFileType = text; path = .env; sourceTree = ""; }; + 0FFBB4462446F9A4000D2795 /* Asset.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = Asset.json; sourceTree = ""; }; + 0FFBB44B24470C43000D2795 /* ContentStackLogTest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContentStackLogTest.swift; sourceTree = ""; }; + 470253922C0C612A009BDF8B /* TaxonomyModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TaxonomyModel.swift; sourceTree = ""; }; + 470657532B5E785C00BBFF88 /* ContentTypeQueryAPITest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContentTypeQueryAPITest.swift; sourceTree = ""; }; + 470657572B5E788400BBFF88 /* EntryAPITest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EntryAPITest.swift; sourceTree = ""; }; + 4706575B2B5E78B300BBFF88 /* AssetQueryAPITest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AssetQueryAPITest.swift; sourceTree = ""; }; + 4706575F2B5E797300BBFF88 /* ContentstackTest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContentstackTest.swift; sourceTree = ""; }; + 470657632B5E7F5400BBFF88 /* DVR.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = DVR.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 47161AC42B5D744E00AD615B /* DVR.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = DVR.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 47161ACB2B5D788E00AD615B /* DVR.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = DVR.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 47AAE08F2B60420E0098655A /* SyncAPITest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SyncAPITest.swift; sourceTree = ""; }; + 47AEE8D92C9ED4C9007884A7 /* DVR.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = DVR.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 47AEE8E72C9EDF3E007884A7 /* DVR.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = DVR.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 47B09C242CA952E400B8AB41 /* DVR.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = DVR.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 47B4DC612C232A8200370CFC /* TaxonomyTest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TaxonomyTest.swift; sourceTree = ""; }; + 47C6EFC12C0B5B9400F0D5CF /* Taxonomy.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Taxonomy.swift; sourceTree = ""; }; + OBJ_17 /* LICENSE */ = {isa = PBXFileReference; lastKnownFileType = text; path = LICENSE; sourceTree = ""; }; + OBJ_18 /* README.md */ = {isa = PBXFileReference; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = ""; }; + OBJ_6 /* Package.swift */ = {isa = PBXFileReference; explicitFileType = sourcecode.swift; path = Package.swift; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 0F4A75C8241BAC4300E3A024 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 47D561512C9EF97D00DC085D /* ContentstackUtils in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 0F4A75D0241BAC4300E3A024 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 0F4A75D4241BAC4300E3A024 /* ContentstackSwift.framework in Frameworks */, + 47D561572C9EFA5900DC085D /* DVR in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 0F4A75E8241BAE6C00E3A024 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 47B09C292CA9530100B8AB41 /* ContentstackUtils in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 0F4A75F0241BAE6C00E3A024 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 6750778E2D3E256A0076A066 /* DVR in Frameworks */, + 0F4A75F4241BAE6C00E3A024 /* ContentstackSwift.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 0F4A7604241BAFE000E3A024 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 0F4A760C241BAFE000E3A024 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 0F4A7610241BAFE000E3A024 /* ContentstackSwift.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 0F4A7620241BB0A300E3A024 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 0F0246642431F34400F72181 /* ImageTransform */ = { + isa = PBXGroup; + children = ( + 0F0246652431F37300F72181 /* ImageTransform.swift */, + 0F02466E243210E200F72181 /* ImageParameter.swift */, + 0F024673243217D800F72181 /* ImageTransformError.swift */, + 0FB4CAC824332C5200A385B1 /* ImageOperation.swift */, + 0F2DB7E62451D353007B9815 /* ImageOperations.swift */, + ); + name = ImageTransform; + sourceTree = ""; + }; + 0F096B122435BF930094F042 /* Models */ = { + isa = PBXGroup; + children = ( + 0F244FA124406A2D003C3F26 /* SyncStack.swift */, + 0FFA5D7E241F7060003B3AF5 /* SystemFields.swift */, + 0F4A245B24224D3100159C24 /* ContentstackResponse.swift */, + 0F1DCC7F243DCF2500EED404 /* EntryModel.swift */, + 0F1DCC84243DD01900EED404 /* AssetModel.swift */, + 0F1DCC89243DD20E00EED404 /* ContentTypeModel.swift */, + 470253922C0C612A009BDF8B /* TaxonomyModel.swift */, + ); + name = Models; + sourceTree = ""; + }; + 0F1DCC6D243D980900EED404 /* Frameworks */ = { + isa = PBXGroup; + children = ( + 47B09C242CA952E400B8AB41 /* DVR.framework */, + 47AEE8E72C9EDF3E007884A7 /* DVR.framework */, + 47AEE8D92C9ED4C9007884A7 /* DVR.framework */, + 470657632B5E7F5400BBFF88 /* DVR.framework */, + 47161ACB2B5D788E00AD615B /* DVR.framework */, + 47161AC42B5D744E00AD615B /* DVR.framework */, + 0F6B6CEB24508165007AB3C1 /* DVR.framework */, + 0F6B6CED24508165007AB3C1 /* OHHTTPStubs.framework */, + 0F6B6CE724508154007AB3C1 /* DVR.framework */, + 0F6B6CE924508154007AB3C1 /* OHHTTPStubs.framework */, + 0F1DCC72243D991100EED404 /* DVR.framework */, + 0F1DCC74243D991100EED404 /* OHHTTPStubs.framework */, + 0F1DCC6E243D980A00EED404 /* DVR.framework */, + 0F1DCC70243D980A00EED404 /* OHHTTPStubs.framework */, + ); + name = Frameworks; + sourceTree = ""; + }; + 0F1DCC76243D9B9A00EED404 /* DVRRecording */ = { + isa = PBXGroup; + children = ( + 0F796C512449EA8700EA04D5 /* Entry.json */, + 0F50EA15244ED7F500E5D705 /* QueryOn.json */, + 0FFBB4462446F9A4000D2795 /* Asset.json */, + 0F244F9C244062B4003C3F26 /* ContentType.json */, + 0F1DCC77243D9BBF00EED404 /* SyncTest.json */, + 0F5794C1266A37120082815C /* Paragraph.Json */, + ); + name = DVRRecording; + path = DVRRecordings; + sourceTree = ""; + }; + 0F38D7DE242C7C8300232D7F /* Models */ = { + isa = PBXGroup; + children = ( + 0F38D7DF242C7C9E00232D7F /* Product.swift */, + 0F50EA0D244EC3DD00E5D705 /* Session.swift */, + ); + name = Models; + sourceTree = ""; + }; + 0F4A7630241BB11200E3A024 /* Supporting Files */ = { + isa = PBXGroup; + children = ( + 0FFA5D4B241F4FAC003B3AF5 /* Contentstack.h */, + 0FFA5D4C241F4FAC003B3AF5 /* Info.plist */, + ); + name = "Supporting Files"; + sourceTree = ""; + }; + 0F4A763B241BB36100E3A024 /* Supporting Files */ = { + isa = PBXGroup; + children = ( + 0F4A763C241BB38C00E3A024 /* Info.plist */, + ); + name = "Supporting Files"; + sourceTree = ""; + }; + 0F4C0A7A243C4524006604B7 /* ContentstackError */ = { + isa = PBXGroup; + children = ( + 0F4C0A7B243C4579006604B7 /* Error.swift */, + ); + name = ContentstackError; + sourceTree = ""; + }; + 0F4C0A85243C6781006604B7 /* Cofig */ = { + isa = PBXGroup; + children = ( + 0F4C0A86243C6990006604B7 /* config.json */, + ); + name = Cofig; + sourceTree = ""; + }; + 0F4FBCB12420D2CA007B8CAE /* Query */ = { + isa = PBXGroup; + children = ( + 0F4FBCAC2420CD5F007B8CAE /* Query.swift */, + 0FD39D44242356B100E34826 /* QueryProtocols.swift */, + 0F4FBCB22420D2F1007B8CAE /* QueryOperation.swift */, + 0F4FBCB72420F344007B8CAE /* QueryParameter.swift */, + 0FD39D3F242352F800E34826 /* QueryableRange.swift */, + 0FC52DB92452EDE000B33614 /* EntryQuaryable.swift */, + ); + name = Query; + sourceTree = ""; + }; + 0F6B6CE224501328007AB3C1 /* Scripts */ = { + isa = PBXGroup; + children = ( + 0F6B6CE324501328007AB3C1 /* BuildPhases */, + 0F6B6CE524501328007AB3C1 /* run-test-cases.sh */, + 0F6B6CE624501328007AB3C1 /* reference-docs.sh */, + ); + path = Scripts; + sourceTree = ""; + }; + 0F6B6CE324501328007AB3C1 /* BuildPhases */ = { + isa = PBXGroup; + children = ( + 0F6B6CE424501328007AB3C1 /* swiftlint.sh */, + ); + path = BuildPhases; + sourceTree = ""; + }; + 0FFA5D60241F5561003B3AF5 /* Utilities */ = { + isa = PBXGroup; + children = ( + 0FFA5D6F241F6BFA003B3AF5 /* Date.swift */, + 0F4FBCA32420B5F4007B8CAE /* Utils.swift */, + 0FFA5D92241F8214003B3AF5 /* EndPoint.swift */, + 0FFA5DB3241F99F9003B3AF5 /* FatalError.swift */, + 0FFA5D6E241F6BF9003B3AF5 /* Decodable.swift */, + 0FFA5D62241F5575003B3AF5 /* CSURLCache.swift */, + 0FFA5D61241F5575003B3AF5 /* CSDefinitions.swift */, + 0F7138D02424E98D00B314B0 /* ParameterEncoding.swift */, + 0F4C0A80243C470F006604B7 /* ContentstackLogger.swift */, + ); + name = Utilities; + sourceTree = ""; + }; + 0FFA5D9C241F8F81003B3AF5 /* UnitTests */ = { + isa = PBXGroup; + children = ( + 0F244FA624406A4A003C3F26 /* EntryQueriableTest.swift */, + 0FFA5D49241F4DED003B3AF5 /* ContentstackConfigTest.swift */, + 0FFA5D88241F8113003B3AF5 /* StackTest.swift */, + 0F4A7641241BB3C600E3A024 /* ContentstackTests.swift */, + 0FFA5D9E241F8FFE003B3AF5 /* ContentTypeTest.swift */, + 0F4FBC9F2420B0E4007B8CAE /* DateTest.swift */, + 0F4FBCA82420B615007B8CAE /* UtilsTest.swift */, + 0FD39D4924237A0400E34826 /* ContentTypeQueryTest.swift */, + 0F7138C42424A70C00B314B0 /* AssetQueryTest.swift */, + 0F7138CC2424A94000B314B0 /* QueryTest.swift */, + 0F60CA2E2428949C00ED67E6 /* EntryTest.swift */, + 0F60CA322428D02600ED67E6 /* QueryEntryType.swift */, + 0F38D7E3242C831300232D7F /* AssetTest.swift */, + 0F02466A243201B500F72181 /* ImageTransformTest.swift */, + 0F096B13243610470094F042 /* ImageTransformTestAdditional.swift */, + 0F77CFB724373B8A00C57764 /* ImageTransformEquatableTest.swift */, + 0F463112243B044F001CE1FA /* SyncTest.swift */, + 0FFBB44B24470C43000D2795 /* ContentStackLogTest.swift */, + ); + name = UnitTests; + sourceTree = ""; + }; + 0FFA5D9D241F8F9B003B3AF5 /* APITests */ = { + isa = PBXGroup; + children = ( + 0F50EA1C244ED88C00E5D705 /* StackCacheAPITest.swift */, + 470657532B5E785C00BBFF88 /* ContentTypeQueryAPITest.swift */, + 470657572B5E788400BBFF88 /* EntryAPITest.swift */, + 4706575B2B5E78B300BBFF88 /* AssetQueryAPITest.swift */, + 4706575F2B5E797300BBFF88 /* ContentstackTest.swift */, + 47AAE08F2B60420E0098655A /* SyncAPITest.swift */, + 47B4DC612C232A8200370CFC /* TaxonomyTest.swift */, + ); + name = APITests; + sourceTree = ""; + }; + 0FFA5DA6241F9403003B3AF5 /* Utilities */ = { + isa = PBXGroup; + children = ( + 0FFA5DBB241F9A6C003B3AF5 /* XCTestCase+Extension.swift */, + ); + name = Utilities; + sourceTree = ""; + }; + OBJ_10 /* Tests */ = { + isa = PBXGroup; + children = ( + 0F1DCC76243D9B9A00EED404 /* DVRRecording */, + 0F4C0A85243C6781006604B7 /* Cofig */, + 0F38D7DE242C7C8300232D7F /* Models */, + 0FFA5DA6241F9403003B3AF5 /* Utilities */, + 0FFA5D9D241F8F9B003B3AF5 /* APITests */, + 0FFA5D9C241F8F81003B3AF5 /* UnitTests */, + 0F4A763B241BB36100E3A024 /* Supporting Files */, + 0FFA5DA2241F90BF003B3AF5 /* SutBuilder.swift */, + ); + path = Tests; + sourceTree = SOURCE_ROOT; + }; + OBJ_14 /* Products */ = { + isa = PBXGroup; + children = ( + 0F4A75CB241BAC4300E3A024 /* ContentstackSwift.framework */, + 0F4A75D3241BAC4300E3A024 /* ContentstackSwift iOS Tests.xctest */, + 0F4A75EB241BAE6C00E3A024 /* ContentstackSwift.framework */, + 0F4A75F3241BAE6C00E3A024 /* ContentstackSwift macOS Tests.xctest */, + 0F4A7607241BAFE000E3A024 /* ContentstackSwift.framework */, + 0F4A760F241BAFE000E3A024 /* ContentstackSwift tvOS Tests.xctest */, + 0F4A7623241BB0A300E3A024 /* ContentstackSwift.framework */, + ); + name = Products; + sourceTree = BUILT_PRODUCTS_DIR; + }; + OBJ_5 = { + isa = PBXGroup; + children = ( + 0FFB22B3261C98E50056AEE0 /* .env */, + 0FE1DC1B2457F8B600944056 /* ContentstackSwift.podspec */, + 0F6B6CE224501328007AB3C1 /* Scripts */, + 0F4FBC9A2420A17F007B8CAE /* Config.xcconfig */, + OBJ_6 /* Package.swift */, + OBJ_7 /* Sources */, + OBJ_10 /* Tests */, + OBJ_14 /* Products */, + OBJ_17 /* LICENSE */, + OBJ_18 /* README.md */, + 0F1DCC6D243D980900EED404 /* Frameworks */, + ); + sourceTree = ""; + }; + OBJ_7 /* Sources */ = { + isa = PBXGroup; + children = ( + 0F4C0A7A243C4524006604B7 /* ContentstackError */, + 0F096B122435BF930094F042 /* Models */, + 0F0246642431F34400F72181 /* ImageTransform */, + 0F4A7630241BB11200E3A024 /* Supporting Files */, + 0F4FBCB12420D2CA007B8CAE /* Query */, + 0FFA5D60241F5561003B3AF5 /* Utilities */, + 0FFA5D5B241F5134003B3AF5 /* Stack.swift */, + 0FFA5D83241F808F003B3AF5 /* Asset.swift */, + 0FFA5D97241F8EB2003B3AF5 /* Entry.swift */, + 0FFA5D79241F7033003B3AF5 /* ContentType.swift */, + 0F4A762B241BB0D200E3A024 /* Contentstack.swift */, + 0FFA5D56241F5085003B3AF5 /* ContentstackConfig.swift */, + 47C6EFC12C0B5B9400F0D5CF /* Taxonomy.swift */, + ); + path = Sources; + sourceTree = SOURCE_ROOT; + }; +/* End PBXGroup section */ + +/* Begin PBXHeadersBuildPhase section */ + 0F4A75C6241BAC4300E3A024 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 0FFA5D55241F4FC3003B3AF5 /* Contentstack.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 0F4A75E6241BAE6C00E3A024 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 0FFA5D4E241F4FAC003B3AF5 /* Contentstack.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 0F4A7602241BAFE000E3A024 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 0FFA5D4F241F4FAC003B3AF5 /* Contentstack.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 0F4A761E241BB0A300E3A024 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 0FFA5D50241F4FAC003B3AF5 /* Contentstack.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXHeadersBuildPhase section */ + +/* Begin PBXNativeTarget section */ + 0F4A75CA241BAC4300E3A024 /* ContentstackSwift iOS */ = { + isa = PBXNativeTarget; + buildConfigurationList = 0F4A75E0241BAC4300E3A024 /* Build configuration list for PBXNativeTarget "ContentstackSwift iOS" */; + buildPhases = ( + 0F4A75C6241BAC4300E3A024 /* Headers */, + 0F4A75C7241BAC4300E3A024 /* Sources */, + 0F4A75C8241BAC4300E3A024 /* Frameworks */, + 0F4A75C9241BAC4300E3A024 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = "ContentstackSwift iOS"; + packageProductDependencies = ( + 47D561502C9EF97D00DC085D /* ContentstackUtils */, + ); + productName = "Contentstack iOS"; + productReference = 0F4A75CB241BAC4300E3A024 /* ContentstackSwift.framework */; + productType = "com.apple.product-type.framework"; + }; + 0F4A75D2241BAC4300E3A024 /* ContentstackSwift iOS Tests */ = { + isa = PBXNativeTarget; + buildConfigurationList = 0F4A75E1241BAC4300E3A024 /* Build configuration list for PBXNativeTarget "ContentstackSwift iOS Tests" */; + buildPhases = ( + 0F4A75CF241BAC4300E3A024 /* Sources */, + 0F4A75D0241BAC4300E3A024 /* Frameworks */, + 0F4A75D1241BAC4300E3A024 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + 0F4A764D241BB42100E3A024 /* PBXTargetDependency */, + ); + name = "ContentstackSwift iOS Tests"; + packageProductDependencies = ( + 47D561562C9EFA5900DC085D /* DVR */, + ); + productName = "Contentstack iOSTests"; + productReference = 0F4A75D3241BAC4300E3A024 /* ContentstackSwift iOS Tests.xctest */; + productType = "com.apple.product-type.bundle.unit-test"; + }; + 0F4A75EA241BAE6C00E3A024 /* ContentstackSwift macOS */ = { + isa = PBXNativeTarget; + buildConfigurationList = 0F4A75FC241BAE6C00E3A024 /* Build configuration list for PBXNativeTarget "ContentstackSwift macOS" */; + buildPhases = ( + 0F4A75E6241BAE6C00E3A024 /* Headers */, + 0F4A75E7241BAE6C00E3A024 /* Sources */, + 0F4A75E8241BAE6C00E3A024 /* Frameworks */, + 0F4A75E9241BAE6C00E3A024 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = "ContentstackSwift macOS"; + packageProductDependencies = ( + 47B09C282CA9530100B8AB41 /* ContentstackUtils */, + ); + productName = "Contentstack macOS"; + productReference = 0F4A75EB241BAE6C00E3A024 /* ContentstackSwift.framework */; + productType = "com.apple.product-type.framework"; + }; + 0F4A75F2241BAE6C00E3A024 /* ContentstackSwift macOS Tests */ = { + isa = PBXNativeTarget; + buildConfigurationList = 0F4A75FF241BAE6C00E3A024 /* Build configuration list for PBXNativeTarget "ContentstackSwift macOS Tests" */; + buildPhases = ( + 0F4A75EF241BAE6C00E3A024 /* Sources */, + 0F4A75F0241BAE6C00E3A024 /* Frameworks */, + 0F4A75F1241BAE6C00E3A024 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + 0F4A75F6241BAE6C00E3A024 /* PBXTargetDependency */, + ); + name = "ContentstackSwift macOS Tests"; + productName = "Contentstack macOSTests"; + productReference = 0F4A75F3241BAE6C00E3A024 /* ContentstackSwift macOS Tests.xctest */; + productType = "com.apple.product-type.bundle.unit-test"; + }; + 0F4A7606241BAFE000E3A024 /* ContentstackSwift tvOS */ = { + isa = PBXNativeTarget; + buildConfigurationList = 0F4A7618241BAFE000E3A024 /* Build configuration list for PBXNativeTarget "ContentstackSwift tvOS" */; + buildPhases = ( + 0F4A7602241BAFE000E3A024 /* Headers */, + 0F4A7603241BAFE000E3A024 /* Sources */, + 0F4A7604241BAFE000E3A024 /* Frameworks */, + 0F4A7605241BAFE000E3A024 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = "ContentstackSwift tvOS"; + packageProductDependencies = ( + ); + productName = "Contentstack tvOS"; + productReference = 0F4A7607241BAFE000E3A024 /* ContentstackSwift.framework */; + productType = "com.apple.product-type.framework"; + }; + 0F4A760E241BAFE000E3A024 /* ContentstackSwift tvOS Tests */ = { + isa = PBXNativeTarget; + buildConfigurationList = 0F4A761B241BAFE000E3A024 /* Build configuration list for PBXNativeTarget "ContentstackSwift tvOS Tests" */; + buildPhases = ( + 0F4A760B241BAFE000E3A024 /* Sources */, + 0F4A760C241BAFE000E3A024 /* Frameworks */, + 0F4A760D241BAFE000E3A024 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + 0F4A7612241BAFE000E3A024 /* PBXTargetDependency */, + ); + name = "ContentstackSwift tvOS Tests"; + productName = "Contentstack tvOSTests"; + productReference = 0F4A760F241BAFE000E3A024 /* ContentstackSwift tvOS Tests.xctest */; + productType = "com.apple.product-type.bundle.unit-test"; + }; + 0F4A7622241BB0A300E3A024 /* ContentstackSwift watchOS */ = { + isa = PBXNativeTarget; + buildConfigurationList = 0F4A7628241BB0A300E3A024 /* Build configuration list for PBXNativeTarget "ContentstackSwift watchOS" */; + buildPhases = ( + 0F4A761E241BB0A300E3A024 /* Headers */, + 0F4A761F241BB0A300E3A024 /* Sources */, + 0F4A7620241BB0A300E3A024 /* Frameworks */, + 0F4A7621241BB0A300E3A024 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = "ContentstackSwift watchOS"; + packageProductDependencies = ( + ); + productName = "Contentstack watchOS"; + productReference = 0F4A7623241BB0A300E3A024 /* ContentstackSwift.framework */; + productType = "com.apple.product-type.framework"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + OBJ_1 /* Project object */ = { + isa = PBXProject; + attributes = { + BuildIndependentTargetsInParallel = YES; + LastSwiftMigration = 9999; + LastSwiftUpdateCheck = 1100; + LastUpgradeCheck = 1630; + TargetAttributes = { + 0F4A75CA241BAC4300E3A024 = { + CreatedOnToolsVersion = 11.0; + LastSwiftMigration = 1100; + ProvisioningStyle = Automatic; + }; + 0F4A75D2241BAC4300E3A024 = { + CreatedOnToolsVersion = 11.0; + ProvisioningStyle = Automatic; + }; + 0F4A75EA241BAE6C00E3A024 = { + CreatedOnToolsVersion = 11.0; + LastSwiftMigration = 1100; + ProvisioningStyle = Automatic; + }; + 0F4A75F2241BAE6C00E3A024 = { + CreatedOnToolsVersion = 11.0; + ProvisioningStyle = Automatic; + }; + 0F4A7606241BAFE000E3A024 = { + CreatedOnToolsVersion = 11.0; + LastSwiftMigration = 1100; + ProvisioningStyle = Automatic; + }; + 0F4A760E241BAFE000E3A024 = { + CreatedOnToolsVersion = 11.0; + ProvisioningStyle = Automatic; + }; + 0F4A7622241BB0A300E3A024 = { + CreatedOnToolsVersion = 11.0; + LastSwiftMigration = 1100; + ProvisioningStyle = Automatic; + }; + }; + }; + buildConfigurationList = OBJ_2 /* Build configuration list for PBXProject "ContentstackSwift" */; + compatibilityVersion = "Xcode 3.2"; + developmentRegion = en; + hasScannedForEncodings = 0; + knownRegions = ( + en, + Base, + ); + mainGroup = OBJ_5; + packageReferences = ( + 47D5614F2C9EF96D00DC085D /* XCRemoteSwiftPackageReference "contentstack-utils-swift" */, + 6700D9E32DAE76ED00D9B55C /* XCRemoteSwiftPackageReference "contentstack-swift-dvr" */, + ); + productRefGroup = OBJ_14 /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + 0F4A75CA241BAC4300E3A024 /* ContentstackSwift iOS */, + 0F4A75D2241BAC4300E3A024 /* ContentstackSwift iOS Tests */, + 0F4A75EA241BAE6C00E3A024 /* ContentstackSwift macOS */, + 0F4A75F2241BAE6C00E3A024 /* ContentstackSwift macOS Tests */, + 0F4A7606241BAFE000E3A024 /* ContentstackSwift tvOS */, + 0F4A760E241BAFE000E3A024 /* ContentstackSwift tvOS Tests */, + 0F4A7622241BB0A300E3A024 /* ContentstackSwift watchOS */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + 0F4A75C9241BAC4300E3A024 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 0F4A75D1241BAC4300E3A024 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 0F359995257BE30A00B3DB89 /* SyncTest.json in Resources */, + 0F359993257BE2D100B3DB89 /* Entry.json in Resources */, + 0F359994257BE2EE00B3DB89 /* QueryOn.json in Resources */, + 0F359991257BE29B00B3DB89 /* Asset.json in Resources */, + 0F359992257BE2A700B3DB89 /* ContentType.json in Resources */, + 0F4C0A87243C6990006604B7 /* config.json in Resources */, + 0F5794C2266A37120082815C /* Paragraph.Json in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 0F4A75E9241BAE6C00E3A024 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 0F4A75F1241BAE6C00E3A024 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 0F1DCC7A243D9BD400EED404 /* SyncTest.json in Resources */, + 0F244F9E244062B4003C3F26 /* ContentType.json in Resources */, + 0FFBB4482446F9A4000D2795 /* Asset.json in Resources */, + 0F50EA17244ED7F500E5D705 /* QueryOn.json in Resources */, + 0F796C532449EA8700EA04D5 /* Entry.json in Resources */, + 0F4C0A88243C6990006604B7 /* config.json in Resources */, + 0F5794C3266A37120082815C /* Paragraph.Json in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 0F4A7605241BAFE000E3A024 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 0F4A760D241BAFE000E3A024 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 0F1DCC7B243D9BD400EED404 /* SyncTest.json in Resources */, + 0F244F9F244062B4003C3F26 /* ContentType.json in Resources */, + 0FFBB4492446F9A4000D2795 /* Asset.json in Resources */, + 0F50EA18244ED7F500E5D705 /* QueryOn.json in Resources */, + 0F796C542449EA8700EA04D5 /* Entry.json in Resources */, + 0F4C0A89243C6990006604B7 /* config.json in Resources */, + 0F5794C4266A37120082815C /* Paragraph.Json in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 0F4A7621241BB0A300E3A024 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 0F4A75C7241BAC4300E3A024 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 0F7138D12424E98D00B314B0 /* ParameterEncoding.swift in Sources */, + 0FFA5D98241F8EB2003B3AF5 /* Entry.swift in Sources */, + 0F02466F243210E200F72181 /* ImageParameter.swift in Sources */, + 0FFA5D63241F5575003B3AF5 /* CSDefinitions.swift in Sources */, + 47C6EFC22C0B5B9400F0D5CF /* Taxonomy.swift in Sources */, + 0FFA5D7A241F7033003B3AF5 /* ContentType.swift in Sources */, + 0F0246662431F37300F72181 /* ImageTransform.swift in Sources */, + 0F4FBCA42420B5F4007B8CAE /* Utils.swift in Sources */, + 0F4C0A7C243C4579006604B7 /* Error.swift in Sources */, + 0F4C0A81243C470F006604B7 /* ContentstackLogger.swift in Sources */, + 0FFA5D84241F808F003B3AF5 /* Asset.swift in Sources */, + 0FFA5D57241F5085003B3AF5 /* ContentstackConfig.swift in Sources */, + 0F4FBCB32420D2F1007B8CAE /* QueryOperation.swift in Sources */, + 0FB4CAC924332C5200A385B1 /* ImageOperation.swift in Sources */, + 0F4A245C24224D3100159C24 /* ContentstackResponse.swift in Sources */, + 0FFA5D93241F8214003B3AF5 /* EndPoint.swift in Sources */, + 0FFA5DB4241F99F9003B3AF5 /* FatalError.swift in Sources */, + 0F024674243217D800F72181 /* ImageTransformError.swift in Sources */, + 0FFA5D74241F6BFA003B3AF5 /* Date.swift in Sources */, + 0FFA5D5C241F5134003B3AF5 /* Stack.swift in Sources */, + 0F4FBCB82420F344007B8CAE /* QueryParameter.swift in Sources */, + 0F1DCC8A243DD20E00EED404 /* ContentTypeModel.swift in Sources */, + 0F1DCC80243DCF2500EED404 /* EntryModel.swift in Sources */, + 0F4FBCAD2420CD5F007B8CAE /* Query.swift in Sources */, + 0F2DB7E72451D353007B9815 /* ImageOperations.swift in Sources */, + 0FFA5D7F241F7060003B3AF5 /* SystemFields.swift in Sources */, + 0F244FA224406A2D003C3F26 /* SyncStack.swift in Sources */, + 0FFA5D70241F6BFA003B3AF5 /* Decodable.swift in Sources */, + 470253932C0C612A009BDF8B /* TaxonomyModel.swift in Sources */, + 0FD39D40242352F800E34826 /* QueryableRange.swift in Sources */, + 0FFA5D67241F5575003B3AF5 /* CSURLCache.swift in Sources */, + 0FC52DBA2452EDE000B33614 /* EntryQuaryable.swift in Sources */, + 0F4A762C241BB0D200E3A024 /* Contentstack.swift in Sources */, + 0F1DCC85243DD01900EED404 /* AssetModel.swift in Sources */, + 0FD39D45242356B100E34826 /* QueryProtocols.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 0F4A75CF241BAC4300E3A024 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 0F60CA332428D02600ED67E6 /* QueryEntryType.swift in Sources */, + 4706575C2B5E78B300BBFF88 /* AssetQueryAPITest.swift in Sources */, + 0F60CA2F2428949C00ED67E6 /* EntryTest.swift in Sources */, + 0F244FA724406A4A003C3F26 /* EntryQueriableTest.swift in Sources */, + 0F463113243B044F001CE1FA /* SyncTest.swift in Sources */, + 0FFA5DBC241F9A6C003B3AF5 /* XCTestCase+Extension.swift in Sources */, + 0F4FBCA02420B0E4007B8CAE /* DateTest.swift in Sources */, + 0FFA5D4A241F4DED003B3AF5 /* ContentstackConfigTest.swift in Sources */, + 47B4DC622C232A8200370CFC /* TaxonomyTest.swift in Sources */, + 0F50EA1D244ED88C00E5D705 /* StackCacheAPITest.swift in Sources */, + 470657582B5E788400BBFF88 /* EntryAPITest.swift in Sources */, + 0F096B14243610470094F042 /* ImageTransformTestAdditional.swift in Sources */, + 0FD39D4A24237A0400E34826 /* ContentTypeQueryTest.swift in Sources */, + 0FFBB44C24470C43000D2795 /* ContentStackLogTest.swift in Sources */, + 0F77CFB824373B8A00C57764 /* ImageTransformEquatableTest.swift in Sources */, + 0F02466B243201B500F72181 /* ImageTransformTest.swift in Sources */, + 47AAE0902B60420E0098655A /* SyncAPITest.swift in Sources */, + 470657542B5E785C00BBFF88 /* ContentTypeQueryAPITest.swift in Sources */, + 470657602B5E797300BBFF88 /* ContentstackTest.swift in Sources */, + 0F4FBCA92420B615007B8CAE /* UtilsTest.swift in Sources */, + 0F7138CD2424A94000B314B0 /* QueryTest.swift in Sources */, + 0F50EA0E244EC3DD00E5D705 /* Session.swift in Sources */, + 0FFA5D9F241F8FFE003B3AF5 /* ContentTypeTest.swift in Sources */, + 0F4A7646241BB3CB00E3A024 /* ContentstackTests.swift in Sources */, + 0F7138C52424A70C00B314B0 /* AssetQueryTest.swift in Sources */, + 0FFA5D8F241F8123003B3AF5 /* StackTest.swift in Sources */, + 0FFA5DA3241F90BF003B3AF5 /* SutBuilder.swift in Sources */, + 0F38D7E0242C7C9E00232D7F /* Product.swift in Sources */, + 0F38D7E4242C831300232D7F /* AssetTest.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 0F4A75E7241BAE6C00E3A024 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 0F7138D22424E98D00B314B0 /* ParameterEncoding.swift in Sources */, + 0FFA5D99241F8EB2003B3AF5 /* Entry.swift in Sources */, + 0F024670243210E200F72181 /* ImageParameter.swift in Sources */, + 0FFA5D64241F5575003B3AF5 /* CSDefinitions.swift in Sources */, + 47C6EFC32C0B5B9400F0D5CF /* Taxonomy.swift in Sources */, + 0FFA5D7B241F7033003B3AF5 /* ContentType.swift in Sources */, + 0F0246672431F37300F72181 /* ImageTransform.swift in Sources */, + 0F4FBCA52420B5F4007B8CAE /* Utils.swift in Sources */, + 0F4C0A7D243C4584006604B7 /* Error.swift in Sources */, + 0F4C0A82243C470F006604B7 /* ContentstackLogger.swift in Sources */, + 0FFA5D85241F808F003B3AF5 /* Asset.swift in Sources */, + 0FFA5D58241F5085003B3AF5 /* ContentstackConfig.swift in Sources */, + 0F4FBCB42420D2F1007B8CAE /* QueryOperation.swift in Sources */, + 0FB4CACA24332C5200A385B1 /* ImageOperation.swift in Sources */, + 0F4A245D24224D3100159C24 /* ContentstackResponse.swift in Sources */, + 0FFA5D94241F8214003B3AF5 /* EndPoint.swift in Sources */, + 0FFA5DB6241F99F9003B3AF5 /* FatalError.swift in Sources */, + 0F024675243217D800F72181 /* ImageTransformError.swift in Sources */, + 0FFA5D75241F6BFA003B3AF5 /* Date.swift in Sources */, + 0FFA5D5D241F5134003B3AF5 /* Stack.swift in Sources */, + 0F4FBCB92420F344007B8CAE /* QueryParameter.swift in Sources */, + 0F1DCC8B243DD20E00EED404 /* ContentTypeModel.swift in Sources */, + 0F1DCC81243DCF2500EED404 /* EntryModel.swift in Sources */, + 0F4FBCAE2420CD5F007B8CAE /* Query.swift in Sources */, + 0F2DB7E82451D353007B9815 /* ImageOperations.swift in Sources */, + 0FFA5D80241F7060003B3AF5 /* SystemFields.swift in Sources */, + 0F244FA324406A2D003C3F26 /* SyncStack.swift in Sources */, + 0FFA5D71241F6BFA003B3AF5 /* Decodable.swift in Sources */, + 470253942C0C612A009BDF8B /* TaxonomyModel.swift in Sources */, + 0FD39D41242352F800E34826 /* QueryableRange.swift in Sources */, + 0FFA5D68241F5575003B3AF5 /* CSURLCache.swift in Sources */, + 0FC52DBB2452EDE000B33614 /* EntryQuaryable.swift in Sources */, + 0F4A762D241BB0D200E3A024 /* Contentstack.swift in Sources */, + 0F1DCC86243DD01900EED404 /* AssetModel.swift in Sources */, + 0FD39D46242356B100E34826 /* QueryProtocols.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 0F4A75EF241BAE6C00E3A024 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 0F60CA342428D02600ED67E6 /* QueryEntryType.swift in Sources */, + 470657552B5E785C00BBFF88 /* ContentTypeQueryAPITest.swift in Sources */, + 0F60CA302428949C00ED67E6 /* EntryTest.swift in Sources */, + 0F244FA824406A4A003C3F26 /* EntryQueriableTest.swift in Sources */, + 0F463114243B044F001CE1FA /* SyncTest.swift in Sources */, + 47AAE0912B60420E0098655A /* SyncAPITest.swift in Sources */, + 0FFA5DBD241F9A6C003B3AF5 /* XCTestCase+Extension.swift in Sources */, + 0F4FBCA12420B0E4007B8CAE /* DateTest.swift in Sources */, + 47B4DC632C232A8200370CFC /* TaxonomyTest.swift in Sources */, + 0FFA5D90241F8126003B3AF5 /* ContentstackConfigTest.swift in Sources */, + 0F50EA1E244ED88C00E5D705 /* StackCacheAPITest.swift in Sources */, + 0F096B15243610470094F042 /* ImageTransformTestAdditional.swift in Sources */, + 0FD39D4B24237A0400E34826 /* ContentTypeQueryTest.swift in Sources */, + 0FFBB44D24470C43000D2795 /* ContentStackLogTest.swift in Sources */, + 4706575D2B5E78B300BBFF88 /* AssetQueryAPITest.swift in Sources */, + 0F77CFB924373B8F00C57764 /* ImageTransformEquatableTest.swift in Sources */, + 0F02466C243201B500F72181 /* ImageTransformTest.swift in Sources */, + 0F4FBCAA2420B615007B8CAE /* UtilsTest.swift in Sources */, + 470657592B5E788400BBFF88 /* EntryAPITest.swift in Sources */, + 0F50EA0F244EC3DD00E5D705 /* Session.swift in Sources */, + 0F7138CE2424A94000B314B0 /* QueryTest.swift in Sources */, + 0FFA5DA0241F8FFE003B3AF5 /* ContentTypeTest.swift in Sources */, + 0FFA5D8E241F8122003B3AF5 /* StackTest.swift in Sources */, + 470657612B5E797300BBFF88 /* ContentstackTest.swift in Sources */, + 0F7138C62424A70C00B314B0 /* AssetQueryTest.swift in Sources */, + 0F4A7647241BB3CC00E3A024 /* ContentstackTests.swift in Sources */, + 0FFA5DA4241F90BF003B3AF5 /* SutBuilder.swift in Sources */, + 0F38D7E1242C7C9E00232D7F /* Product.swift in Sources */, + 0F38D7E5242C831A00232D7F /* AssetTest.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 0F4A7603241BAFE000E3A024 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 0F7138D32424E98D00B314B0 /* ParameterEncoding.swift in Sources */, + 0FFA5D9A241F8EB2003B3AF5 /* Entry.swift in Sources */, + 0F024671243210E200F72181 /* ImageParameter.swift in Sources */, + 0FFA5D65241F5575003B3AF5 /* CSDefinitions.swift in Sources */, + 47C6EFC42C0B5B9400F0D5CF /* Taxonomy.swift in Sources */, + 0FFA5D7C241F7033003B3AF5 /* ContentType.swift in Sources */, + 0F0246682431F37300F72181 /* ImageTransform.swift in Sources */, + 0F4FBCA62420B5F4007B8CAE /* Utils.swift in Sources */, + 0F4C0A7E243C4585006604B7 /* Error.swift in Sources */, + 0F4C0A83243C470F006604B7 /* ContentstackLogger.swift in Sources */, + 0FFA5D86241F808F003B3AF5 /* Asset.swift in Sources */, + 0FFA5D59241F5085003B3AF5 /* ContentstackConfig.swift in Sources */, + 0F4FBCB52420D2F1007B8CAE /* QueryOperation.swift in Sources */, + 0FB4CACB24332C5200A385B1 /* ImageOperation.swift in Sources */, + 0F4A245E24224D3100159C24 /* ContentstackResponse.swift in Sources */, + 0FFA5D95241F8214003B3AF5 /* EndPoint.swift in Sources */, + 0FFA5DB8241F99F9003B3AF5 /* FatalError.swift in Sources */, + 0F024676243217D800F72181 /* ImageTransformError.swift in Sources */, + 0FFA5D76241F6BFA003B3AF5 /* Date.swift in Sources */, + 0FFA5D5E241F5134003B3AF5 /* Stack.swift in Sources */, + 0F4FBCBA2420F344007B8CAE /* QueryParameter.swift in Sources */, + 0F1DCC8C243DD20E00EED404 /* ContentTypeModel.swift in Sources */, + 0F1DCC82243DCF2500EED404 /* EntryModel.swift in Sources */, + 0F4FBCAF2420CD5F007B8CAE /* Query.swift in Sources */, + 0F2DB7E92451D353007B9815 /* ImageOperations.swift in Sources */, + 0FFA5D81241F7060003B3AF5 /* SystemFields.swift in Sources */, + 0F244FA424406A2D003C3F26 /* SyncStack.swift in Sources */, + 0FFA5D72241F6BFA003B3AF5 /* Decodable.swift in Sources */, + 470253952C0C612A009BDF8B /* TaxonomyModel.swift in Sources */, + 0FD39D42242352F800E34826 /* QueryableRange.swift in Sources */, + 0FFA5D69241F5575003B3AF5 /* CSURLCache.swift in Sources */, + 0FC52DBC2452EDE000B33614 /* EntryQuaryable.swift in Sources */, + 0F4A762E241BB0D200E3A024 /* Contentstack.swift in Sources */, + 0F1DCC87243DD01900EED404 /* AssetModel.swift in Sources */, + 0FD39D47242356B100E34826 /* QueryProtocols.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 0F4A760B241BAFE000E3A024 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 0F60CA352428D02600ED67E6 /* QueryEntryType.swift in Sources */, + 470657562B5E785C00BBFF88 /* ContentTypeQueryAPITest.swift in Sources */, + 0F60CA312428949C00ED67E6 /* EntryTest.swift in Sources */, + 0F244FA924406A4A003C3F26 /* EntryQueriableTest.swift in Sources */, + 0F463115243B044F001CE1FA /* SyncTest.swift in Sources */, + 47AAE0922B60420E0098655A /* SyncAPITest.swift in Sources */, + 0FFA5DBE241F9A6C003B3AF5 /* XCTestCase+Extension.swift in Sources */, + 0F4FBCA22420B0E4007B8CAE /* DateTest.swift in Sources */, + 47B4DC642C232A8200370CFC /* TaxonomyTest.swift in Sources */, + 0FFA5D91241F8127003B3AF5 /* ContentstackConfigTest.swift in Sources */, + 0F50EA1F244ED88C00E5D705 /* StackCacheAPITest.swift in Sources */, + 0F096B16243610470094F042 /* ImageTransformTestAdditional.swift in Sources */, + 0FD39D4C24237A0400E34826 /* ContentTypeQueryTest.swift in Sources */, + 0FFBB44E24470C43000D2795 /* ContentStackLogTest.swift in Sources */, + 4706575E2B5E78B300BBFF88 /* AssetQueryAPITest.swift in Sources */, + 0F77CFBA24373B9000C57764 /* ImageTransformEquatableTest.swift in Sources */, + 0F02466D243201B500F72181 /* ImageTransformTest.swift in Sources */, + 0F4FBCAB2420B615007B8CAE /* UtilsTest.swift in Sources */, + 4706575A2B5E788400BBFF88 /* EntryAPITest.swift in Sources */, + 0F50EA10244EC3DD00E5D705 /* Session.swift in Sources */, + 0F7138CF2424A94000B314B0 /* QueryTest.swift in Sources */, + 0FFA5DA1241F8FFE003B3AF5 /* ContentTypeTest.swift in Sources */, + 0FFA5D8D241F8122003B3AF5 /* StackTest.swift in Sources */, + 470657622B5E797300BBFF88 /* ContentstackTest.swift in Sources */, + 0F7138C72424A70C00B314B0 /* AssetQueryTest.swift in Sources */, + 0F4A7648241BB3CE00E3A024 /* ContentstackTests.swift in Sources */, + 0FFA5DA5241F90BF003B3AF5 /* SutBuilder.swift in Sources */, + 0F38D7E2242C7C9E00232D7F /* Product.swift in Sources */, + 0F38D7E6242C831B00232D7F /* AssetTest.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 0F4A761F241BB0A300E3A024 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 0F7138D42424E98D00B314B0 /* ParameterEncoding.swift in Sources */, + 0FFA5D9B241F8EB2003B3AF5 /* Entry.swift in Sources */, + 0F024672243210E200F72181 /* ImageParameter.swift in Sources */, + 0FFA5D66241F5575003B3AF5 /* CSDefinitions.swift in Sources */, + 47C6EFC52C0B5B9400F0D5CF /* Taxonomy.swift in Sources */, + 0FFA5D7D241F7033003B3AF5 /* ContentType.swift in Sources */, + 0F0246692431F37300F72181 /* ImageTransform.swift in Sources */, + 0F4FBCA72420B5F4007B8CAE /* Utils.swift in Sources */, + 0F4C0A7F243C4586006604B7 /* Error.swift in Sources */, + 0F4C0A84243C470F006604B7 /* ContentstackLogger.swift in Sources */, + 0FFA5D87241F808F003B3AF5 /* Asset.swift in Sources */, + 0FFA5D5A241F5085003B3AF5 /* ContentstackConfig.swift in Sources */, + 0F4FBCB62420D2F1007B8CAE /* QueryOperation.swift in Sources */, + 0FB4CACC24332C5200A385B1 /* ImageOperation.swift in Sources */, + 0F4A245F24224D3100159C24 /* ContentstackResponse.swift in Sources */, + 0FFA5D96241F8214003B3AF5 /* EndPoint.swift in Sources */, + 0FFA5DBA241F99F9003B3AF5 /* FatalError.swift in Sources */, + 0F024677243217D800F72181 /* ImageTransformError.swift in Sources */, + 0FFA5D77241F6BFA003B3AF5 /* Date.swift in Sources */, + 0FFA5D5F241F5134003B3AF5 /* Stack.swift in Sources */, + 0F4FBCBB2420F344007B8CAE /* QueryParameter.swift in Sources */, + 0F1DCC8D243DD20E00EED404 /* ContentTypeModel.swift in Sources */, + 0F1DCC83243DCF2500EED404 /* EntryModel.swift in Sources */, + 0F4FBCB02420CD5F007B8CAE /* Query.swift in Sources */, + 0F2DB7EA2451D353007B9815 /* ImageOperations.swift in Sources */, + 0FFA5D82241F7060003B3AF5 /* SystemFields.swift in Sources */, + 0F244FA524406A2D003C3F26 /* SyncStack.swift in Sources */, + 0FFA5D73241F6BFA003B3AF5 /* Decodable.swift in Sources */, + 470253962C0C612A009BDF8B /* TaxonomyModel.swift in Sources */, + 0FD39D43242352F800E34826 /* QueryableRange.swift in Sources */, + 0FFA5D6A241F5575003B3AF5 /* CSURLCache.swift in Sources */, + 0FC52DBD2452EDE000B33614 /* EntryQuaryable.swift in Sources */, + 0F4A762F241BB0D200E3A024 /* Contentstack.swift in Sources */, + 0F1DCC88243DD01900EED404 /* AssetModel.swift in Sources */, + 0FD39D48242356B100E34826 /* QueryProtocols.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + 0F4A75F6241BAE6C00E3A024 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 0F4A75EA241BAE6C00E3A024 /* ContentstackSwift macOS */; + targetProxy = 0F4A75F5241BAE6C00E3A024 /* PBXContainerItemProxy */; + }; + 0F4A7612241BAFE000E3A024 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 0F4A7606241BAFE000E3A024 /* ContentstackSwift tvOS */; + targetProxy = 0F4A7611241BAFE000E3A024 /* PBXContainerItemProxy */; + }; + 0F4A764D241BB42100E3A024 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 0F4A75CA241BAC4300E3A024 /* ContentstackSwift iOS */; + targetProxy = 0F4A764C241BB42100E3A024 /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin XCBuildConfiguration section */ + 0F4A75DC241BAC4300E3A024 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 0F4FBC9A2420A17F007B8CAE /* Config.xcconfig */; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + CODE_SIGN_IDENTITY = ""; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DEVELOPMENT_TEAM = SMAKUMV86W; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_MODULE_VERIFIER = YES; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + 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; + INFOPLIST_FILE = "Supporting Files/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MARKETING_VERSION = 1.2.5; + MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++14"; + MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; + MTL_FAST_MATH = YES; + PRODUCT_BUNDLE_IDENTIFIER = com.contentstack.Contentstack; + PRODUCT_NAME = ContentstackSwift; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SUPPORTED_PLATFORMS = "iphonesimulator iphoneos"; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + TVOS_DEPLOYMENT_TARGET = 12.0; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + WATCHOS_DEPLOYMENT_TARGET = 2.0; + }; + name = Debug; + }; + 0F4A75DD241BAC4300E3A024 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 0F4FBC9A2420A17F007B8CAE /* Config.xcconfig */; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + CODE_SIGN_IDENTITY = ""; + CODE_SIGN_STYLE = Automatic; + COPY_PHASE_STRIP = NO; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DEVELOPMENT_TEAM = SMAKUMV86W; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_MODULE_VERIFIER = YES; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + 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; + INFOPLIST_FILE = "Supporting Files/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MARKETING_VERSION = 1.2.5; + MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++14"; + MTL_ENABLE_DEBUG_INFO = NO; + MTL_FAST_MATH = YES; + PRODUCT_BUNDLE_IDENTIFIER = com.contentstack.Contentstack; + PRODUCT_NAME = ContentstackSwift; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SUPPORTED_PLATFORMS = "iphonesimulator iphoneos"; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + TVOS_DEPLOYMENT_TARGET = 12.0; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + WATCHOS_DEPLOYMENT_TARGET = 2.0; + }; + name = Release; + }; + 0F4A75DE241BAC4300E3A024 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 0F4FBC9A2420A17F007B8CAE /* Config.xcconfig */; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + "ARCHS[sdk=*]" = "$(ARCHS_STANDARD)"; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + "CODE_SIGN_IDENTITY[sdk=macosx*]" = "-"; + CODE_SIGN_STYLE = Automatic; + DEVELOPMENT_TEAM = FLVTD4X723; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + 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; + INFOPLIST_FILE = Tests/Info.plist; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; + MTL_FAST_MATH = YES; + PRODUCT_BUNDLE_IDENTIFIER = "com.contentstack.Contentstack-iOSTests"; + PRODUCT_NAME = "$(TARGET_NAME)"; + SDKROOT = iphoneos; + SUPPORTED_PLATFORMS = "iphonesimulator iphoneos"; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 0F4A75DF241BAC4300E3A024 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 0F4FBC9A2420A17F007B8CAE /* Config.xcconfig */; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + "CODE_SIGN_IDENTITY[sdk=macosx*]" = "-"; + CODE_SIGN_STYLE = Automatic; + COPY_PHASE_STRIP = NO; + DEVELOPMENT_TEAM = FLVTD4X723; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + "EXCLUDED_ARCHS[sdk=*]" = arm64; + GCC_C_LANGUAGE_STANDARD = gnu11; + 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; + INFOPLIST_FILE = Tests/Info.plist; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MTL_ENABLE_DEBUG_INFO = NO; + MTL_FAST_MATH = YES; + PRODUCT_BUNDLE_IDENTIFIER = "com.contentstack.Contentstack-iOSTests"; + PRODUCT_NAME = "$(TARGET_NAME)"; + SDKROOT = iphoneos; + SUPPORTED_PLATFORMS = "iphonesimulator iphoneos"; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 0F4A75FD241BAE6C00E3A024 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 0F4FBC9A2420A17F007B8CAE /* Config.xcconfig */; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; + CURRENT_PROJECT_VERSION = 1; + DEAD_CODE_STRIPPING = YES; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_MODULE_VERIFIER = YES; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + 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; + INFOPLIST_FILE = "Supporting Files/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/../Frameworks", + "@loader_path/Frameworks", + ); + MACOSX_DEPLOYMENT_TARGET = 13.0; + MARKETING_VERSION = 1.2.5; + MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++14"; + MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; + MTL_FAST_MATH = YES; + PRODUCT_BUNDLE_IDENTIFIER = com.contentstack.Contentstack; + PRODUCT_NAME = ContentstackSwift; + SKIP_INSTALL = YES; + SUPPORTED_PLATFORMS = macosx; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 5.0; + TVOS_DEPLOYMENT_TARGET = 12.0; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + WATCHOS_DEPLOYMENT_TARGET = 2.0; + }; + name = Debug; + }; + 0F4A75FE241BAE6C00E3A024 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 0F4FBC9A2420A17F007B8CAE /* Config.xcconfig */; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; + COPY_PHASE_STRIP = NO; + CURRENT_PROJECT_VERSION = 1; + DEAD_CODE_STRIPPING = YES; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_MODULE_VERIFIER = YES; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + 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; + INFOPLIST_FILE = "Supporting Files/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/../Frameworks", + "@loader_path/Frameworks", + ); + MACOSX_DEPLOYMENT_TARGET = 13.0; + MARKETING_VERSION = 1.2.5; + MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++14"; + MTL_ENABLE_DEBUG_INFO = NO; + MTL_FAST_MATH = YES; + PRODUCT_BUNDLE_IDENTIFIER = com.contentstack.Contentstack; + PRODUCT_NAME = ContentstackSwift; + SKIP_INSTALL = YES; + SUPPORTED_PLATFORMS = macosx; + SWIFT_VERSION = 5.0; + TVOS_DEPLOYMENT_TARGET = 12.0; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + WATCHOS_DEPLOYMENT_TARGET = 2.0; + }; + name = Release; + }; + 0F4A7600241BAE6C00E3A024 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; + DEAD_CODE_STRIPPING = YES; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + 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; + INFOPLIST_FILE = Tests/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/../Frameworks", + "@loader_path/../Frameworks", + ); + MACOSX_DEPLOYMENT_TARGET = 13.0; + MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; + MTL_FAST_MATH = YES; + PRODUCT_BUNDLE_IDENTIFIER = "com.contentstack.Contentstack-macOSTests"; + PRODUCT_NAME = "$(TARGET_NAME)"; + SUPPORTED_PLATFORMS = macosx; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SWIFT_VERSION = 5.0; + }; + name = Debug; + }; + 0F4A7601241BAE6C00E3A024 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; + COPY_PHASE_STRIP = NO; + DEAD_CODE_STRIPPING = YES; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + 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; + INFOPLIST_FILE = Tests/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/../Frameworks", + "@loader_path/../Frameworks", + ); + MACOSX_DEPLOYMENT_TARGET = 13.0; + MTL_ENABLE_DEBUG_INFO = NO; + MTL_FAST_MATH = YES; + PRODUCT_BUNDLE_IDENTIFIER = "com.contentstack.Contentstack-macOSTests"; + PRODUCT_NAME = "$(TARGET_NAME)"; + SUPPORTED_PLATFORMS = macosx; + SWIFT_VERSION = 5.0; + }; + name = Release; + }; + 0F4A7619241BAFE000E3A024 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + CODE_SIGN_IDENTITY = ""; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_MODULE_VERIFIER = YES; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + 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; + INFOPLIST_FILE = "Supporting Files/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MARKETING_VERSION = 1.2.5; + MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++14"; + MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; + MTL_FAST_MATH = YES; + PRODUCT_BUNDLE_IDENTIFIER = "com.contentstack.Contentstack-tvOS"; + PRODUCT_NAME = ContentstackSwift; + SDKROOT = appletvos; + SKIP_INSTALL = YES; + SUPPORTED_PLATFORMS = "appletvsimulator appletvos"; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = 3; + TVOS_DEPLOYMENT_TARGET = 13.0; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + WATCHOS_DEPLOYMENT_TARGET = 2.0; + }; + name = Debug; + }; + 0F4A761A241BAFE000E3A024 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + CODE_SIGN_IDENTITY = ""; + CODE_SIGN_STYLE = Automatic; + COPY_PHASE_STRIP = NO; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_MODULE_VERIFIER = YES; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + 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; + INFOPLIST_FILE = "Supporting Files/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MARKETING_VERSION = 1.2.5; + MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++14"; + MTL_ENABLE_DEBUG_INFO = NO; + MTL_FAST_MATH = YES; + PRODUCT_BUNDLE_IDENTIFIER = "com.contentstack.Contentstack-tvOS"; + PRODUCT_NAME = ContentstackSwift; + SDKROOT = appletvos; + SKIP_INSTALL = YES; + SUPPORTED_PLATFORMS = "appletvsimulator appletvos"; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = 3; + TVOS_DEPLOYMENT_TARGET = 13.0; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + WATCHOS_DEPLOYMENT_TARGET = 2.0; + }; + name = Release; + }; + 0F4A761C241BAFE000E3A024 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + CODE_SIGN_STYLE = Automatic; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + 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; + INFOPLIST_FILE = Tests/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; + MTL_FAST_MATH = YES; + PRODUCT_BUNDLE_IDENTIFIER = "com.contentstack.Contentstack-tvOSTests"; + PRODUCT_NAME = "$(TARGET_NAME)"; + SDKROOT = appletvos; + SUPPORTED_PLATFORMS = "appletvsimulator appletvos"; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = 3; + TVOS_DEPLOYMENT_TARGET = 13.0; + }; + name = Debug; + }; + 0F4A761D241BAFE000E3A024 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + CODE_SIGN_STYLE = Automatic; + COPY_PHASE_STRIP = NO; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + 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; + INFOPLIST_FILE = Tests/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MTL_ENABLE_DEBUG_INFO = NO; + MTL_FAST_MATH = YES; + PRODUCT_BUNDLE_IDENTIFIER = "com.contentstack.Contentstack-tvOSTests"; + PRODUCT_NAME = "$(TARGET_NAME)"; + SDKROOT = appletvos; + SUPPORTED_PLATFORMS = "appletvsimulator appletvos"; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = 3; + TVOS_DEPLOYMENT_TARGET = 13.0; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 0F4A7629241BB0A300E3A024 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 0F4FBC9A2420A17F007B8CAE /* Config.xcconfig */; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + APPLICATION_EXTENSION_API_ONLY = YES; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + CODE_SIGN_IDENTITY = ""; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_MODULE_VERIFIER = YES; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + 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; + INFOPLIST_FILE = "Supporting Files/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MARKETING_VERSION = 1.2.5; + MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++14"; + MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; + MTL_FAST_MATH = YES; + PRODUCT_BUNDLE_IDENTIFIER = "com.contentstack.Contentstack-watchOS"; + PRODUCT_NAME = ContentstackSwift; + SDKROOT = watchos; + SKIP_INSTALL = YES; + SUPPORTED_PLATFORMS = "watchsimulator watchos"; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = 4; + TVOS_DEPLOYMENT_TARGET = 12.0; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + WATCHOS_DEPLOYMENT_TARGET = 6.0; + }; + name = Debug; + }; + 0F4A762A241BB0A300E3A024 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 0F4FBC9A2420A17F007B8CAE /* Config.xcconfig */; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + APPLICATION_EXTENSION_API_ONLY = YES; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + CODE_SIGN_IDENTITY = ""; + CODE_SIGN_STYLE = Automatic; + COPY_PHASE_STRIP = NO; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_MODULE_VERIFIER = YES; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + 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; + INFOPLIST_FILE = "Supporting Files/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MARKETING_VERSION = 1.2.5; + MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++14"; + MTL_ENABLE_DEBUG_INFO = NO; + MTL_FAST_MATH = YES; + PRODUCT_BUNDLE_IDENTIFIER = "com.contentstack.Contentstack-watchOS"; + PRODUCT_NAME = ContentstackSwift; + SDKROOT = watchos; + SKIP_INSTALL = YES; + SUPPORTED_PLATFORMS = "watchsimulator watchos"; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = 4; + TVOS_DEPLOYMENT_TARGET = 12.0; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + WATCHOS_DEPLOYMENT_TARGET = 6.0; + }; + name = Release; + }; + OBJ_3 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 0F4FBC9A2420A17F007B8CAE /* Config.xcconfig */; + buildSettings = { + ARCHS = "$(ARCHS_STANDARD)"; + "ARCHS[sdk=*]" = "$(ARCHS_STANDARD)"; + ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COMBINE_HIDPI_IMAGES = YES; + COPY_PHASE_STRIP = NO; + DEAD_CODE_STRIPPING = YES; + DEBUG_INFORMATION_FORMAT = dwarf; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_NS_ASSERTIONS = YES; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + ENABLE_USER_SCRIPT_SANDBOXING = YES; + "EXCLUDED_ARCHS[sdk=*]" = ""; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "SWIFT_PACKAGE=1", + "DEBUG=1", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + MACOSX_DEPLOYMENT_TARGET = 13.0; + ONLY_ACTIVE_ARCH = YES; + OTHER_SWIFT_FLAGS = "$(inherited) -DXcode"; + PRODUCT_NAME = "$(TARGET_NAME)"; + SDKROOT = macosx; + SUPPORTED_PLATFORMS = "macosx iphoneos iphonesimulator appletvos appletvsimulator watchos watchsimulator"; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) SWIFT_PACKAGE DEBUG"; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + TVOS_DEPLOYMENT_TARGET = 13.0; + USE_HEADERMAP = NO; + WATCHOS_DEPLOYMENT_TARGET = 6.0; + }; + name = Debug; + }; + OBJ_4 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 0F4FBC9A2420A17F007B8CAE /* Config.xcconfig */; + buildSettings = { + ARCHS = "$(ARCHS_STANDARD)"; + ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COMBINE_HIDPI_IMAGES = YES; + COPY_PHASE_STRIP = YES; + DEAD_CODE_STRIPPING = YES; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_USER_SCRIPT_SANDBOXING = YES; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = s; + GCC_PREPROCESSOR_DEFINITIONS = ( + "$(inherited)", + "SWIFT_PACKAGE=1", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + MACOSX_DEPLOYMENT_TARGET = 13.0; + ONLY_ACTIVE_ARCH = YES; + OTHER_SWIFT_FLAGS = "$(inherited) -DXcode"; + PRODUCT_NAME = "$(TARGET_NAME)"; + SDKROOT = macosx; + SUPPORTED_PLATFORMS = "macosx iphoneos iphonesimulator appletvos appletvsimulator watchos watchsimulator"; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) SWIFT_PACKAGE"; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_OPTIMIZATION_LEVEL = "-O"; + TVOS_DEPLOYMENT_TARGET = 13.0; + USE_HEADERMAP = NO; + WATCHOS_DEPLOYMENT_TARGET = 6.0; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 0F4A75E0241BAC4300E3A024 /* Build configuration list for PBXNativeTarget "ContentstackSwift iOS" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 0F4A75DC241BAC4300E3A024 /* Debug */, + 0F4A75DD241BAC4300E3A024 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; + 0F4A75E1241BAC4300E3A024 /* Build configuration list for PBXNativeTarget "ContentstackSwift iOS Tests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 0F4A75DE241BAC4300E3A024 /* Debug */, + 0F4A75DF241BAC4300E3A024 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; + 0F4A75FC241BAE6C00E3A024 /* Build configuration list for PBXNativeTarget "ContentstackSwift macOS" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 0F4A75FD241BAE6C00E3A024 /* Debug */, + 0F4A75FE241BAE6C00E3A024 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; + 0F4A75FF241BAE6C00E3A024 /* Build configuration list for PBXNativeTarget "ContentstackSwift macOS Tests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 0F4A7600241BAE6C00E3A024 /* Debug */, + 0F4A7601241BAE6C00E3A024 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; + 0F4A7618241BAFE000E3A024 /* Build configuration list for PBXNativeTarget "ContentstackSwift tvOS" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 0F4A7619241BAFE000E3A024 /* Debug */, + 0F4A761A241BAFE000E3A024 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; + 0F4A761B241BAFE000E3A024 /* Build configuration list for PBXNativeTarget "ContentstackSwift tvOS Tests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 0F4A761C241BAFE000E3A024 /* Debug */, + 0F4A761D241BAFE000E3A024 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; + 0F4A7628241BB0A300E3A024 /* Build configuration list for PBXNativeTarget "ContentstackSwift watchOS" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 0F4A7629241BB0A300E3A024 /* Debug */, + 0F4A762A241BB0A300E3A024 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; + OBJ_2 /* Build configuration list for PBXProject "ContentstackSwift" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + OBJ_3 /* Debug */, + OBJ_4 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Debug; + }; +/* End XCConfigurationList section */ + +/* Begin XCRemoteSwiftPackageReference section */ + 47D5614F2C9EF96D00DC085D /* XCRemoteSwiftPackageReference "contentstack-utils-swift" */ = { + isa = XCRemoteSwiftPackageReference; + repositoryURL = "https://github.com/contentstack/contentstack-utils-swift"; + requirement = { + kind = exactVersion; + version = 1.3.4; + }; + }; + 6700D9E32DAE76ED00D9B55C /* XCRemoteSwiftPackageReference "contentstack-swift-dvr" */ = { + isa = XCRemoteSwiftPackageReference; + repositoryURL = "https://github.com/contentstack/contentstack-swift-dvr.git"; + requirement = { + branch = master; + kind = branch; + }; + }; +/* End XCRemoteSwiftPackageReference section */ + +/* Begin XCSwiftPackageProductDependency section */ + 47B09C282CA9530100B8AB41 /* ContentstackUtils */ = { + isa = XCSwiftPackageProductDependency; + package = 47D5614F2C9EF96D00DC085D /* XCRemoteSwiftPackageReference "contentstack-utils-swift" */; + productName = ContentstackUtils; + }; + 47D561502C9EF97D00DC085D /* ContentstackUtils */ = { + isa = XCSwiftPackageProductDependency; + package = 47D5614F2C9EF96D00DC085D /* XCRemoteSwiftPackageReference "contentstack-utils-swift" */; + productName = ContentstackUtils; + }; + 47D561562C9EFA5900DC085D /* DVR */ = { + isa = XCSwiftPackageProductDependency; + package = 6700D9E32DAE76ED00D9B55C /* XCRemoteSwiftPackageReference "contentstack-swift-dvr" */; + productName = DVR; + }; + 6750778D2D3E256A0076A066 /* DVR */ = { + isa = XCSwiftPackageProductDependency; + package = 6700D9E32DAE76ED00D9B55C /* XCRemoteSwiftPackageReference "contentstack-swift-dvr" */; + productName = DVR; + }; +/* End XCSwiftPackageProductDependency section */ + }; + rootObject = OBJ_1 /* Project object */; +} diff --git a/ContentstackSwift.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/ContentstackSwift.xcodeproj/project.xcworkspace/contents.xcworkspacedata new file mode 100644 index 00000000..919434a6 --- /dev/null +++ b/ContentstackSwift.xcodeproj/project.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/ContentstackSwift.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/ContentstackSwift.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 00000000..18d98100 --- /dev/null +++ b/ContentstackSwift.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/ContentstackSwift.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/ContentstackSwift.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings new file mode 100644 index 00000000..a72dc2b4 --- /dev/null +++ b/ContentstackSwift.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings @@ -0,0 +1,8 @@ + + + + + IDEWorkspaceSharedSettings_AutocreateContextsIfNeeded + + + \ No newline at end of file diff --git a/ContentstackSwift.xcodeproj/xcshareddata/xcschemes/Contentstack iOS Tests.xcscheme b/ContentstackSwift.xcodeproj/xcshareddata/xcschemes/Contentstack iOS Tests.xcscheme new file mode 100644 index 00000000..8b63b939 --- /dev/null +++ b/ContentstackSwift.xcodeproj/xcshareddata/xcschemes/Contentstack iOS Tests.xcscheme @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ContentstackSwift.xcodeproj/xcshareddata/xcschemes/Contentstack iOS.xcscheme b/ContentstackSwift.xcodeproj/xcshareddata/xcschemes/Contentstack iOS.xcscheme new file mode 100644 index 00000000..483a12eb --- /dev/null +++ b/ContentstackSwift.xcodeproj/xcshareddata/xcschemes/Contentstack iOS.xcscheme @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Package.swift b/Package.swift index b0b90004..1240f5bb 100644 --- a/Package.swift +++ b/Package.swift @@ -1,4 +1,4 @@ -// swift-tools-version:5.1 +// swift-tools-version:5.6 // The swift-tools-version declares the minimum version of Swift required to build this package. import PackageDescription @@ -20,9 +20,9 @@ let package = Package( ], dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/contentstack/contentstack-utils-swift.git", .branch("master")), + .package(url: "https://github.com/contentstack/contentstack-utils-swift.git", exact:"1.3.4"), // Dev dependencies - .package(url: "https://github.com/contentstack/contentstack-swift-dvr.git", .branch("master")) + .package(url: "https://github.com/contentstack/contentstack-swift-dvr.git", branch:"master") ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. @@ -30,11 +30,14 @@ let package = Package( //and on products in packages which this package depends on. .target( name: "ContentstackSwift", - dependencies: ["ContentstackUtils"], + dependencies: [ + .product(name: "ContentstackUtils", package: "contentstack-utils-swift"), + .product(name: "DVR", package: "contentstack-swift-dvr")], path: "Sources"), .testTarget( name: "ContentstackTests", - dependencies: ["ContentstackSwift", "DVR"], + dependencies: ["ContentstackSwift", + .product(name: "DVR", package: "contentstack-swift-dvr")], path: "Tests") ] ) diff --git a/Scripts/.env b/Scripts/.env index 5f935edd..6ddbb366 100644 --- a/Scripts/.env +++ b/Scripts/.env @@ -1 +1 @@ -CONTENTSTACK_SDK_VERSION=1.4.0 +CONTENTSTACK_SDK_VERSION=2.0.0 diff --git a/Tests/AssetQueryAPITest.swift b/Tests/AssetQueryAPITest.swift index 5538eeed..89217aed 100644 --- a/Tests/AssetQueryAPITest.swift +++ b/Tests/AssetQueryAPITest.swift @@ -7,7 +7,7 @@ import XCTest -@testable import Contentstack +@testable import ContentstackSwift import DVR class AssetQueryAPITest: XCTestCase { diff --git a/Tests/AssetQueryTest.swift b/Tests/AssetQueryTest.swift index ed31859d..1acd767c 100644 --- a/Tests/AssetQueryTest.swift +++ b/Tests/AssetQueryTest.swift @@ -6,7 +6,7 @@ // import XCTest -@testable import Contentstack +@testable import ContentstackSwift class AssetQueryTest: XCTestCase { let testStringValue = "TESTVALUE" diff --git a/Tests/AssetTest.swift b/Tests/AssetTest.swift index 164f7497..f7c567fd 100644 --- a/Tests/AssetTest.swift +++ b/Tests/AssetTest.swift @@ -6,7 +6,7 @@ // import XCTest -@testable import Contentstack +@testable import ContentstackSwift class AssetTest: XCTestCase { func testEndPoint() { diff --git a/Tests/ContentStackLogTest.swift b/Tests/ContentStackLogTest.swift index a4769053..fc8007be 100644 --- a/Tests/ContentStackLogTest.swift +++ b/Tests/ContentStackLogTest.swift @@ -6,7 +6,7 @@ // import XCTest -@testable import Contentstack +@testable import ContentstackSwift class CustomeLogMessage: CustomLogger { diff --git a/Tests/ContentTypeQueryAPITest.swift b/Tests/ContentTypeQueryAPITest.swift index 59df46da..662ce2e1 100644 --- a/Tests/ContentTypeQueryAPITest.swift +++ b/Tests/ContentTypeQueryAPITest.swift @@ -6,7 +6,7 @@ // import XCTest -@testable import Contentstack +@testable import ContentstackSwift import DVR class ContentTypeQueryAPITest: XCTestCase { diff --git a/Tests/ContentTypeQueryTest.swift b/Tests/ContentTypeQueryTest.swift index 5b6da6b1..e9081886 100644 --- a/Tests/ContentTypeQueryTest.swift +++ b/Tests/ContentTypeQueryTest.swift @@ -6,7 +6,7 @@ // import XCTest -@testable import Contentstack +@testable import ContentstackSwift class ContentTypeQueryTest: XCTestCase { let testStringValue = "TESTVALUE" let testIntValue = 100 diff --git a/Tests/ContentTypeTest.swift b/Tests/ContentTypeTest.swift index 1a0c092b..d3a4f1a7 100644 --- a/Tests/ContentTypeTest.swift +++ b/Tests/ContentTypeTest.swift @@ -6,7 +6,7 @@ // import XCTest -@testable import Contentstack +@testable import ContentstackSwift final class ContentTypeTests: XCTestCase { let uid = "testUID" diff --git a/Tests/ContentstackConfigTest.swift b/Tests/ContentstackConfigTest.swift index 54c859eb..ca88f31f 100644 --- a/Tests/ContentstackConfigTest.swift +++ b/Tests/ContentstackConfigTest.swift @@ -6,7 +6,7 @@ // import XCTest -@testable import Contentstack +@testable import ContentstackSwift class ContentstackConfigTest: XCTestCase { func testUserAgent() { diff --git a/Tests/ContentstackTest.swift b/Tests/ContentstackTest.swift index cad82273..406e0f51 100644 --- a/Tests/ContentstackTest.swift +++ b/Tests/ContentstackTest.swift @@ -6,7 +6,7 @@ // import XCTest -@testable import Contentstack +@testable import ContentstackSwift import DVR private var _stackSharedInstance: Stack? diff --git a/Tests/ContentstackTests.swift b/Tests/ContentstackTests.swift index 4a1b29a3..32d8307d 100644 --- a/Tests/ContentstackTests.swift +++ b/Tests/ContentstackTests.swift @@ -1,5 +1,5 @@ import XCTest -@testable import Contentstack +@testable import ContentstackSwift final class ContentstackTests: XCTestCase { diff --git a/Tests/DateTest.swift b/Tests/DateTest.swift index 2f6e7129..dfa74c36 100644 --- a/Tests/DateTest.swift +++ b/Tests/DateTest.swift @@ -6,7 +6,7 @@ // import XCTest -@testable import Contentstack +@testable import ContentstackSwift class DateTest: XCTestCase { func testDateFormatter_withMultipleDateFormat() { diff --git a/Tests/EntryAPITest.swift b/Tests/EntryAPITest.swift index 8fa9b970..d7711fb2 100644 --- a/Tests/EntryAPITest.swift +++ b/Tests/EntryAPITest.swift @@ -6,7 +6,7 @@ // import XCTest -@testable import Contentstack +@testable import ContentstackSwift import DVR class EntryAPITest: XCTestCase { diff --git "a/Tests/EntryQueriable\020\020Test.swift" "b/Tests/EntryQueriable\020\020Test.swift" index fcaa6ab3..912574ad 100644 --- "a/Tests/EntryQueriable\020\020Test.swift" +++ "b/Tests/EntryQueriable\020\020Test.swift" @@ -6,7 +6,7 @@ // import XCTest -@testable import Contentstack +@testable import ContentstackSwift class EntryQueriableTest: XCTestCase { let refUID = "reference_uid" diff --git a/Tests/EntryTest.swift b/Tests/EntryTest.swift index c67805e1..aec4d3b2 100644 --- a/Tests/EntryTest.swift +++ b/Tests/EntryTest.swift @@ -6,7 +6,7 @@ // import XCTest -@testable import Contentstack +@testable import ContentstackSwift class EntryTest: XCTestCase { func testEntry_EndPoint() { diff --git a/Tests/ImageTransformEquatableTest.swift b/Tests/ImageTransformEquatableTest.swift index d3e3908a..f4f195d4 100644 --- a/Tests/ImageTransformEquatableTest.swift +++ b/Tests/ImageTransformEquatableTest.swift @@ -6,7 +6,7 @@ // import XCTest -@testable import Contentstack +@testable import ContentstackSwift class ImageTransformEquatableTest: XCTestCase { let urlString = "https://images.contentstack.io/v3/assets/uid_136download" diff --git a/Tests/ImageTransformTest.swift b/Tests/ImageTransformTest.swift index 63b91dbe..b66b4117 100644 --- a/Tests/ImageTransformTest.swift +++ b/Tests/ImageTransformTest.swift @@ -6,7 +6,7 @@ // import XCTest -@testable import Contentstack +@testable import ContentstackSwift #if os(iOS) || os(tvOS) || os(watchOS) import UIKit #endif diff --git a/Tests/ImageTransformTestAdditional.swift b/Tests/ImageTransformTestAdditional.swift index 073c5ff7..ba020333 100644 --- a/Tests/ImageTransformTestAdditional.swift +++ b/Tests/ImageTransformTestAdditional.swift @@ -6,7 +6,7 @@ // import XCTest -@testable import Contentstack +@testable import ContentstackSwift #if os(iOS) || os(tvOS) || os(watchOS) import UIKit #endif diff --git a/Tests/Product.swift b/Tests/Product.swift index 8fe17c5a..a010a382 100644 --- a/Tests/Product.swift +++ b/Tests/Product.swift @@ -6,7 +6,7 @@ // import Foundation -import Contentstack +import ContentstackSwift class Product: EntryDecodable { public enum FieldKeys: String, CodingKey { diff --git a/Tests/QueryEntryType.swift b/Tests/QueryEntryType.swift index bed5ad14..4cc2adbd 100644 --- a/Tests/QueryEntryType.swift +++ b/Tests/QueryEntryType.swift @@ -6,7 +6,7 @@ // import XCTest -@testable import Contentstack +@testable import ContentstackSwift class QueryEntryType: XCTestCase { diff --git a/Tests/QueryOnAPITest.swift b/Tests/QueryOnAPITest.swift index d5d9b39b..4be35ab1 100644 --- a/Tests/QueryOnAPITest.swift +++ b/Tests/QueryOnAPITest.swift @@ -6,7 +6,7 @@ // import XCTest -@testable import Contentstack +@testable import ContentstackSwift import DVR class QueryOnAPITest: XCTestCase { diff --git a/Tests/QueryTest.swift b/Tests/QueryTest.swift index 12620983..d0695839 100644 --- a/Tests/QueryTest.swift +++ b/Tests/QueryTest.swift @@ -6,7 +6,7 @@ // import XCTest -@testable import Contentstack +@testable import ContentstackSwift class QueryTest: XCTestCase { let testStringValue = "TESTVALUE" diff --git a/Tests/Session.swift b/Tests/Session.swift index 9a6ccdd7..fc90d806 100644 --- a/Tests/Session.swift +++ b/Tests/Session.swift @@ -6,7 +6,7 @@ // import Foundation -import Contentstack +import ContentstackSwift class Session: EntryDecodable { public enum FieldKeys: String, CodingKey { case title, uid, locale, type, room, speakers, track diff --git a/Tests/StackCacheAPITest.swift b/Tests/StackCacheAPITest.swift index 20d7604d..0b7f491b 100644 --- a/Tests/StackCacheAPITest.swift +++ b/Tests/StackCacheAPITest.swift @@ -6,7 +6,7 @@ // import XCTest -@testable import Contentstack +@testable import ContentstackSwift import DVR #if (os(iOS) || os(tvOS) || os(watchOS)) && API_TEST class StackCacheAPITest: XCTestCase { diff --git a/Tests/StackTest.swift b/Tests/StackTest.swift index 5e436f46..7d9eef7e 100644 --- a/Tests/StackTest.swift +++ b/Tests/StackTest.swift @@ -6,7 +6,7 @@ // import XCTest -@testable import Contentstack +@testable import ContentstackSwift final class StackTests: XCTestCase { let uid = "testUID" diff --git a/Tests/SutBuilder.swift b/Tests/SutBuilder.swift index f3b0e832..223c4fce 100644 --- a/Tests/SutBuilder.swift +++ b/Tests/SutBuilder.swift @@ -6,7 +6,7 @@ // import Foundation -import Contentstack +import ContentstackSwift func makeEntrySut(contentTypeuid: String? = nil, entryUid: String? = nil) -> Entry { let stack = Contentstack.stack(apiKey: "api_key", diff --git a/Tests/SyncAPITest.swift b/Tests/SyncAPITest.swift index a5e2e2dc..4d4e49bc 100644 --- a/Tests/SyncAPITest.swift +++ b/Tests/SyncAPITest.swift @@ -6,7 +6,7 @@ // import XCTest -@testable import Contentstack +@testable import ContentstackSwift import DVR class SyncAPITest: XCTestCase { diff --git a/Tests/SyncTest.swift b/Tests/SyncTest.swift index 1b5fb5b7..5ca810d0 100644 --- a/Tests/SyncTest.swift +++ b/Tests/SyncTest.swift @@ -6,7 +6,7 @@ // import XCTest -@testable import Contentstack +@testable import ContentstackSwift class SyncTest: XCTestCase { let paginationToken = "uid_138" let syncToken = "uid_138" diff --git a/Tests/TaxonomyTest.swift b/Tests/TaxonomyTest.swift index 90e15678..f9551166 100644 --- a/Tests/TaxonomyTest.swift +++ b/Tests/TaxonomyTest.swift @@ -6,7 +6,7 @@ // import XCTest -@testable import Contentstack +@testable import ContentstackSwift import DVR class TaxonomyTest: XCTestCase { diff --git a/Tests/UtilsTest.swift b/Tests/UtilsTest.swift index 2d35ad48..ae4c44ae 100644 --- a/Tests/UtilsTest.swift +++ b/Tests/UtilsTest.swift @@ -6,7 +6,7 @@ // import XCTest -@testable import Contentstack +@testable import ContentstackSwift class UtilsTest: XCTestCase { let urlString = "https://images.contentstack.io/v3/assets/uid_136download" diff --git a/Tests/XCTestCase+Extension.swift b/Tests/XCTestCase+Extension.swift index f9865cec..8ec948c9 100644 --- a/Tests/XCTestCase+Extension.swift +++ b/Tests/XCTestCase+Extension.swift @@ -7,7 +7,7 @@ import Foundation import XCTest -@testable import Contentstack +@testable import ContentstackSwift extension XCTestCase { func expectFatalError(expectedMessage: String, testcase: @escaping () -> Void) { let expectation = self.expectation(description: "expectingFatalError") From a369ca6b964bceedec2bc22aaa66d67313eb937e Mon Sep 17 00:00:00 2001 From: reeshika-h Date: Wed, 30 Apr 2025 18:08:22 +0530 Subject: [PATCH 2/8] Remove deprecated workspace and scheme files from Contentstack project - Deleted the contents.xcworkspacedata file from Contentstack.xcodeproj. - Removed IDEWorkspaceChecks.plist and WorkspaceSettings.xcsettings from xcshareddata. - Eliminated all xcscheme files related to iOS, macOS, tvOS, and watchOS tests. - Created new workspace and scheme files for ContentstackSwift project. --- .github/workflows/ci.yml | 4 +- .../ContentstackTests_Info.plist | 25 - .../Contentstack_Info.plist | 25 - Contentstack.xcodeproj/project.pbxproj | 2625 ----------------- .../contents.xcworkspacedata | 7 - .../xcshareddata/WorkspaceSettings.xcsettings | 8 - .../xcschemes/Contentstack iOS Tests.xcscheme | 59 - .../xcshareddata/IDEWorkspaceChecks.plist | 8 - .../contents.xcworkspacedata | 13 + .../xcshareddata/IDEWorkspaceChecks.plist | 0 .../xcshareddata/WorkspaceSettings.xcsettings | 0 .../xcschemes/Contentstack iOS.xcscheme | 0 .../Contentstack macOS Tests.xcscheme | 0 .../xcschemes/Contentstack macOS.xcscheme | 0 .../xcschemes/Contentstack tvOS.xcscheme | 0 .../xcschemes/Contentstack watchOS.xcscheme | 0 16 files changed, 15 insertions(+), 2759 deletions(-) delete mode 100644 Contentstack.xcodeproj/ContentstackTests_Info.plist delete mode 100644 Contentstack.xcodeproj/Contentstack_Info.plist delete mode 100644 Contentstack.xcodeproj/project.pbxproj delete mode 100644 Contentstack.xcodeproj/project.xcworkspace/contents.xcworkspacedata delete mode 100644 Contentstack.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings delete mode 100644 Contentstack.xcodeproj/xcshareddata/xcschemes/Contentstack iOS Tests.xcscheme delete mode 100644 Contentstack.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist create mode 100644 ContentstackSwift.xcworkspace/contents.xcworkspacedata rename {Contentstack.xcodeproj/project.xcworkspace => ContentstackSwift.xcworkspace}/xcshareddata/IDEWorkspaceChecks.plist (100%) rename {Contentstack.xcworkspace => ContentstackSwift.xcworkspace}/xcshareddata/WorkspaceSettings.xcsettings (100%) rename {Contentstack.xcworkspace => ContentstackSwift.xcworkspace}/xcshareddata/xcschemes/Contentstack iOS.xcscheme (100%) rename {Contentstack.xcworkspace => ContentstackSwift.xcworkspace}/xcshareddata/xcschemes/Contentstack macOS Tests.xcscheme (100%) rename {Contentstack.xcworkspace => ContentstackSwift.xcworkspace}/xcshareddata/xcschemes/Contentstack macOS.xcscheme (100%) rename {Contentstack.xcworkspace => ContentstackSwift.xcworkspace}/xcshareddata/xcschemes/Contentstack tvOS.xcscheme (100%) rename {Contentstack.xcworkspace => ContentstackSwift.xcworkspace}/xcshareddata/xcschemes/Contentstack watchOS.xcscheme (100%) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 60ed4786..faab5faa 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -46,7 +46,7 @@ jobs: - name: Build and run tests run: | xcodebuild test \ - -workspace Contentstack.xcworkspace \ + -workspace ContentstackSwift.xcworkspace \ -scheme "Contentstack macOS Tests" \ -destination 'platform=macOS,arch=arm64' \ ONLY_ACTIVE_ARCH=NO \ @@ -90,7 +90,7 @@ jobs: - name: Build and run tests run: | xcodebuild test \ - -workspace Contentstack.xcworkspace \ + -workspace ContentstackSwift.xcworkspace \ -scheme "Contentstack iOS Tests" \ -destination 'platform=iOS Simulator,name=iPhone 15,OS=17.2' \ -sdk iphonesimulator \ diff --git a/Contentstack.xcodeproj/ContentstackTests_Info.plist b/Contentstack.xcodeproj/ContentstackTests_Info.plist deleted file mode 100644 index 7c23420d..00000000 --- a/Contentstack.xcodeproj/ContentstackTests_Info.plist +++ /dev/null @@ -1,25 +0,0 @@ - - - - CFBundleDevelopmentRegion - en - CFBundleExecutable - $(EXECUTABLE_NAME) - CFBundleIdentifier - $(PRODUCT_BUNDLE_IDENTIFIER) - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - $(PRODUCT_NAME) - CFBundlePackageType - BNDL - CFBundleShortVersionString - 1.0 - CFBundleSignature - ???? - CFBundleVersion - $(CURRENT_PROJECT_VERSION) - NSPrincipalClass - - - diff --git a/Contentstack.xcodeproj/Contentstack_Info.plist b/Contentstack.xcodeproj/Contentstack_Info.plist deleted file mode 100644 index 57ada9f9..00000000 --- a/Contentstack.xcodeproj/Contentstack_Info.plist +++ /dev/null @@ -1,25 +0,0 @@ - - - - CFBundleDevelopmentRegion - en - CFBundleExecutable - $(EXECUTABLE_NAME) - CFBundleIdentifier - $(PRODUCT_BUNDLE_IDENTIFIER) - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - $(PRODUCT_NAME) - CFBundlePackageType - FMWK - CFBundleShortVersionString - 1.0 - CFBundleSignature - ???? - CFBundleVersion - $(CURRENT_PROJECT_VERSION) - NSPrincipalClass - - - diff --git a/Contentstack.xcodeproj/project.pbxproj b/Contentstack.xcodeproj/project.pbxproj deleted file mode 100644 index d0959aae..00000000 --- a/Contentstack.xcodeproj/project.pbxproj +++ /dev/null @@ -1,2625 +0,0 @@ -// !$*UTF8*$! -{ - archiveVersion = 1; - classes = { - }; - objectVersion = 54; - objects = { - -/* Begin PBXBuildFile section */ - 0F0246662431F37300F72181 /* ImageTransform.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F0246652431F37300F72181 /* ImageTransform.swift */; }; - 0F0246672431F37300F72181 /* ImageTransform.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F0246652431F37300F72181 /* ImageTransform.swift */; }; - 0F0246682431F37300F72181 /* ImageTransform.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F0246652431F37300F72181 /* ImageTransform.swift */; }; - 0F0246692431F37300F72181 /* ImageTransform.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F0246652431F37300F72181 /* ImageTransform.swift */; }; - 0F02466B243201B500F72181 /* ImageTransformTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F02466A243201B500F72181 /* ImageTransformTest.swift */; }; - 0F02466C243201B500F72181 /* ImageTransformTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F02466A243201B500F72181 /* ImageTransformTest.swift */; }; - 0F02466D243201B500F72181 /* ImageTransformTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F02466A243201B500F72181 /* ImageTransformTest.swift */; }; - 0F02466F243210E200F72181 /* ImageParameter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F02466E243210E200F72181 /* ImageParameter.swift */; }; - 0F024670243210E200F72181 /* ImageParameter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F02466E243210E200F72181 /* ImageParameter.swift */; }; - 0F024671243210E200F72181 /* ImageParameter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F02466E243210E200F72181 /* ImageParameter.swift */; }; - 0F024672243210E200F72181 /* ImageParameter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F02466E243210E200F72181 /* ImageParameter.swift */; }; - 0F024674243217D800F72181 /* ImageTransformError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F024673243217D800F72181 /* ImageTransformError.swift */; }; - 0F024675243217D800F72181 /* ImageTransformError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F024673243217D800F72181 /* ImageTransformError.swift */; }; - 0F024676243217D800F72181 /* ImageTransformError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F024673243217D800F72181 /* ImageTransformError.swift */; }; - 0F024677243217D800F72181 /* ImageTransformError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F024673243217D800F72181 /* ImageTransformError.swift */; }; - 0F096B14243610470094F042 /* ImageTransformTestAdditional.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F096B13243610470094F042 /* ImageTransformTestAdditional.swift */; }; - 0F096B15243610470094F042 /* ImageTransformTestAdditional.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F096B13243610470094F042 /* ImageTransformTestAdditional.swift */; }; - 0F096B16243610470094F042 /* ImageTransformTestAdditional.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F096B13243610470094F042 /* ImageTransformTestAdditional.swift */; }; - 0F1DCC7A243D9BD400EED404 /* SyncTest.json in Resources */ = {isa = PBXBuildFile; fileRef = 0F1DCC77243D9BBF00EED404 /* SyncTest.json */; }; - 0F1DCC7B243D9BD400EED404 /* SyncTest.json in Resources */ = {isa = PBXBuildFile; fileRef = 0F1DCC77243D9BBF00EED404 /* SyncTest.json */; }; - 0F1DCC80243DCF2500EED404 /* EntryModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F1DCC7F243DCF2500EED404 /* EntryModel.swift */; }; - 0F1DCC81243DCF2500EED404 /* EntryModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F1DCC7F243DCF2500EED404 /* EntryModel.swift */; }; - 0F1DCC82243DCF2500EED404 /* EntryModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F1DCC7F243DCF2500EED404 /* EntryModel.swift */; }; - 0F1DCC83243DCF2500EED404 /* EntryModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F1DCC7F243DCF2500EED404 /* EntryModel.swift */; }; - 0F1DCC85243DD01900EED404 /* AssetModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F1DCC84243DD01900EED404 /* AssetModel.swift */; }; - 0F1DCC86243DD01900EED404 /* AssetModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F1DCC84243DD01900EED404 /* AssetModel.swift */; }; - 0F1DCC87243DD01900EED404 /* AssetModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F1DCC84243DD01900EED404 /* AssetModel.swift */; }; - 0F1DCC88243DD01900EED404 /* AssetModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F1DCC84243DD01900EED404 /* AssetModel.swift */; }; - 0F1DCC8A243DD20E00EED404 /* ContentTypeModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F1DCC89243DD20E00EED404 /* ContentTypeModel.swift */; }; - 0F1DCC8B243DD20E00EED404 /* ContentTypeModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F1DCC89243DD20E00EED404 /* ContentTypeModel.swift */; }; - 0F1DCC8C243DD20E00EED404 /* ContentTypeModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F1DCC89243DD20E00EED404 /* ContentTypeModel.swift */; }; - 0F1DCC8D243DD20E00EED404 /* ContentTypeModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F1DCC89243DD20E00EED404 /* ContentTypeModel.swift */; }; - 0F244F9E244062B4003C3F26 /* ContentType.json in Resources */ = {isa = PBXBuildFile; fileRef = 0F244F9C244062B4003C3F26 /* ContentType.json */; }; - 0F244F9F244062B4003C3F26 /* ContentType.json in Resources */ = {isa = PBXBuildFile; fileRef = 0F244F9C244062B4003C3F26 /* ContentType.json */; }; - 0F244FA224406A2D003C3F26 /* SyncStack.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F244FA124406A2D003C3F26 /* SyncStack.swift */; }; - 0F244FA324406A2D003C3F26 /* SyncStack.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F244FA124406A2D003C3F26 /* SyncStack.swift */; }; - 0F244FA424406A2D003C3F26 /* SyncStack.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F244FA124406A2D003C3F26 /* SyncStack.swift */; }; - 0F244FA524406A2D003C3F26 /* SyncStack.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F244FA124406A2D003C3F26 /* SyncStack.swift */; }; - 0F244FA724406A4A003C3F26 /* EntryQueriableTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F244FA624406A4A003C3F26 /* EntryQueriableTest.swift */; }; - 0F244FA824406A4A003C3F26 /* EntryQueriableTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F244FA624406A4A003C3F26 /* EntryQueriableTest.swift */; }; - 0F244FA924406A4A003C3F26 /* EntryQueriableTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F244FA624406A4A003C3F26 /* EntryQueriableTest.swift */; }; - 0F2DB7E72451D353007B9815 /* ImageOperations.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F2DB7E62451D353007B9815 /* ImageOperations.swift */; }; - 0F2DB7E82451D353007B9815 /* ImageOperations.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F2DB7E62451D353007B9815 /* ImageOperations.swift */; }; - 0F2DB7E92451D353007B9815 /* ImageOperations.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F2DB7E62451D353007B9815 /* ImageOperations.swift */; }; - 0F2DB7EA2451D353007B9815 /* ImageOperations.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F2DB7E62451D353007B9815 /* ImageOperations.swift */; }; - 0F359991257BE29B00B3DB89 /* Asset.json in Resources */ = {isa = PBXBuildFile; fileRef = 0FFBB4462446F9A4000D2795 /* Asset.json */; }; - 0F359992257BE2A700B3DB89 /* ContentType.json in Resources */ = {isa = PBXBuildFile; fileRef = 0F244F9C244062B4003C3F26 /* ContentType.json */; }; - 0F359993257BE2D100B3DB89 /* Entry.json in Resources */ = {isa = PBXBuildFile; fileRef = 0F796C512449EA8700EA04D5 /* Entry.json */; }; - 0F359994257BE2EE00B3DB89 /* QueryOn.json in Resources */ = {isa = PBXBuildFile; fileRef = 0F50EA15244ED7F500E5D705 /* QueryOn.json */; }; - 0F359995257BE30A00B3DB89 /* SyncTest.json in Resources */ = {isa = PBXBuildFile; fileRef = 0F1DCC77243D9BBF00EED404 /* SyncTest.json */; }; - 0F38D7E0242C7C9E00232D7F /* Product.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F38D7DF242C7C9E00232D7F /* Product.swift */; }; - 0F38D7E1242C7C9E00232D7F /* Product.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F38D7DF242C7C9E00232D7F /* Product.swift */; }; - 0F38D7E2242C7C9E00232D7F /* Product.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F38D7DF242C7C9E00232D7F /* Product.swift */; }; - 0F38D7E4242C831300232D7F /* AssetTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F38D7E3242C831300232D7F /* AssetTest.swift */; }; - 0F38D7E5242C831A00232D7F /* AssetTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F38D7E3242C831300232D7F /* AssetTest.swift */; }; - 0F38D7E6242C831B00232D7F /* AssetTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F38D7E3242C831300232D7F /* AssetTest.swift */; }; - 0F463113243B044F001CE1FA /* SyncTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F463112243B044F001CE1FA /* SyncTest.swift */; }; - 0F463114243B044F001CE1FA /* SyncTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F463112243B044F001CE1FA /* SyncTest.swift */; }; - 0F463115243B044F001CE1FA /* SyncTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F463112243B044F001CE1FA /* SyncTest.swift */; }; - 0F4A245C24224D3100159C24 /* ContentstackResponse.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4A245B24224D3100159C24 /* ContentstackResponse.swift */; }; - 0F4A245D24224D3100159C24 /* ContentstackResponse.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4A245B24224D3100159C24 /* ContentstackResponse.swift */; }; - 0F4A245E24224D3100159C24 /* ContentstackResponse.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4A245B24224D3100159C24 /* ContentstackResponse.swift */; }; - 0F4A245F24224D3100159C24 /* ContentstackResponse.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4A245B24224D3100159C24 /* ContentstackResponse.swift */; }; - 0F4A75D4241BAC4300E3A024 /* Contentstack.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0F4A75CB241BAC4300E3A024 /* Contentstack.framework */; }; - 0F4A75F4241BAE6C00E3A024 /* Contentstack.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0F4A75EB241BAE6C00E3A024 /* Contentstack.framework */; }; - 0F4A7610241BAFE000E3A024 /* Contentstack.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0F4A7607241BAFE000E3A024 /* Contentstack.framework */; }; - 0F4A762C241BB0D200E3A024 /* Contentstack.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4A762B241BB0D200E3A024 /* Contentstack.swift */; }; - 0F4A762D241BB0D200E3A024 /* Contentstack.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4A762B241BB0D200E3A024 /* Contentstack.swift */; }; - 0F4A762E241BB0D200E3A024 /* Contentstack.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4A762B241BB0D200E3A024 /* Contentstack.swift */; }; - 0F4A762F241BB0D200E3A024 /* Contentstack.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4A762B241BB0D200E3A024 /* Contentstack.swift */; }; - 0F4A7646241BB3CB00E3A024 /* ContentstackTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4A7641241BB3C600E3A024 /* ContentstackTests.swift */; }; - 0F4A7647241BB3CC00E3A024 /* ContentstackTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4A7641241BB3C600E3A024 /* ContentstackTests.swift */; }; - 0F4A7648241BB3CE00E3A024 /* ContentstackTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4A7641241BB3C600E3A024 /* ContentstackTests.swift */; }; - 0F4C0A7C243C4579006604B7 /* Error.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4C0A7B243C4579006604B7 /* Error.swift */; }; - 0F4C0A7D243C4584006604B7 /* Error.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4C0A7B243C4579006604B7 /* Error.swift */; }; - 0F4C0A7E243C4585006604B7 /* Error.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4C0A7B243C4579006604B7 /* Error.swift */; }; - 0F4C0A7F243C4586006604B7 /* Error.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4C0A7B243C4579006604B7 /* Error.swift */; }; - 0F4C0A81243C470F006604B7 /* ContentstackLogger.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4C0A80243C470F006604B7 /* ContentstackLogger.swift */; }; - 0F4C0A82243C470F006604B7 /* ContentstackLogger.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4C0A80243C470F006604B7 /* ContentstackLogger.swift */; }; - 0F4C0A83243C470F006604B7 /* ContentstackLogger.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4C0A80243C470F006604B7 /* ContentstackLogger.swift */; }; - 0F4C0A84243C470F006604B7 /* ContentstackLogger.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4C0A80243C470F006604B7 /* ContentstackLogger.swift */; }; - 0F4C0A87243C6990006604B7 /* config.json in Resources */ = {isa = PBXBuildFile; fileRef = 0F4C0A86243C6990006604B7 /* config.json */; }; - 0F4C0A88243C6990006604B7 /* config.json in Resources */ = {isa = PBXBuildFile; fileRef = 0F4C0A86243C6990006604B7 /* config.json */; }; - 0F4C0A89243C6990006604B7 /* config.json in Resources */ = {isa = PBXBuildFile; fileRef = 0F4C0A86243C6990006604B7 /* config.json */; }; - 0F4FBCA02420B0E4007B8CAE /* DateTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4FBC9F2420B0E4007B8CAE /* DateTest.swift */; }; - 0F4FBCA12420B0E4007B8CAE /* DateTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4FBC9F2420B0E4007B8CAE /* DateTest.swift */; }; - 0F4FBCA22420B0E4007B8CAE /* DateTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4FBC9F2420B0E4007B8CAE /* DateTest.swift */; }; - 0F4FBCA42420B5F4007B8CAE /* Utils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4FBCA32420B5F4007B8CAE /* Utils.swift */; }; - 0F4FBCA52420B5F4007B8CAE /* Utils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4FBCA32420B5F4007B8CAE /* Utils.swift */; }; - 0F4FBCA62420B5F4007B8CAE /* Utils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4FBCA32420B5F4007B8CAE /* Utils.swift */; }; - 0F4FBCA72420B5F4007B8CAE /* Utils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4FBCA32420B5F4007B8CAE /* Utils.swift */; }; - 0F4FBCA92420B615007B8CAE /* UtilsTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4FBCA82420B615007B8CAE /* UtilsTest.swift */; }; - 0F4FBCAA2420B615007B8CAE /* UtilsTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4FBCA82420B615007B8CAE /* UtilsTest.swift */; }; - 0F4FBCAB2420B615007B8CAE /* UtilsTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4FBCA82420B615007B8CAE /* UtilsTest.swift */; }; - 0F4FBCAD2420CD5F007B8CAE /* Query.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4FBCAC2420CD5F007B8CAE /* Query.swift */; }; - 0F4FBCAE2420CD5F007B8CAE /* Query.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4FBCAC2420CD5F007B8CAE /* Query.swift */; }; - 0F4FBCAF2420CD5F007B8CAE /* Query.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4FBCAC2420CD5F007B8CAE /* Query.swift */; }; - 0F4FBCB02420CD5F007B8CAE /* Query.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4FBCAC2420CD5F007B8CAE /* Query.swift */; }; - 0F4FBCB32420D2F1007B8CAE /* QueryOperation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4FBCB22420D2F1007B8CAE /* QueryOperation.swift */; }; - 0F4FBCB42420D2F1007B8CAE /* QueryOperation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4FBCB22420D2F1007B8CAE /* QueryOperation.swift */; }; - 0F4FBCB52420D2F1007B8CAE /* QueryOperation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4FBCB22420D2F1007B8CAE /* QueryOperation.swift */; }; - 0F4FBCB62420D2F1007B8CAE /* QueryOperation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4FBCB22420D2F1007B8CAE /* QueryOperation.swift */; }; - 0F4FBCB82420F344007B8CAE /* QueryParameter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4FBCB72420F344007B8CAE /* QueryParameter.swift */; }; - 0F4FBCB92420F344007B8CAE /* QueryParameter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4FBCB72420F344007B8CAE /* QueryParameter.swift */; }; - 0F4FBCBA2420F344007B8CAE /* QueryParameter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4FBCB72420F344007B8CAE /* QueryParameter.swift */; }; - 0F4FBCBB2420F344007B8CAE /* QueryParameter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4FBCB72420F344007B8CAE /* QueryParameter.swift */; }; - 0F50EA0E244EC3DD00E5D705 /* Session.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F50EA0D244EC3DD00E5D705 /* Session.swift */; }; - 0F50EA0F244EC3DD00E5D705 /* Session.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F50EA0D244EC3DD00E5D705 /* Session.swift */; }; - 0F50EA10244EC3DD00E5D705 /* Session.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F50EA0D244EC3DD00E5D705 /* Session.swift */; }; - 0F50EA17244ED7F500E5D705 /* QueryOn.json in Resources */ = {isa = PBXBuildFile; fileRef = 0F50EA15244ED7F500E5D705 /* QueryOn.json */; }; - 0F50EA18244ED7F500E5D705 /* QueryOn.json in Resources */ = {isa = PBXBuildFile; fileRef = 0F50EA15244ED7F500E5D705 /* QueryOn.json */; }; - 0F50EA1D244ED88C00E5D705 /* StackCacheAPITest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F50EA1C244ED88C00E5D705 /* StackCacheAPITest.swift */; }; - 0F50EA1E244ED88C00E5D705 /* StackCacheAPITest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F50EA1C244ED88C00E5D705 /* StackCacheAPITest.swift */; }; - 0F50EA1F244ED88C00E5D705 /* StackCacheAPITest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F50EA1C244ED88C00E5D705 /* StackCacheAPITest.swift */; }; - 0F5794C2266A37120082815C /* Paragraph.Json in Resources */ = {isa = PBXBuildFile; fileRef = 0F5794C1266A37120082815C /* Paragraph.Json */; }; - 0F5794C3266A37120082815C /* Paragraph.Json in Resources */ = {isa = PBXBuildFile; fileRef = 0F5794C1266A37120082815C /* Paragraph.Json */; }; - 0F5794C4266A37120082815C /* Paragraph.Json in Resources */ = {isa = PBXBuildFile; fileRef = 0F5794C1266A37120082815C /* Paragraph.Json */; }; - 0F60CA2F2428949C00ED67E6 /* EntryTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F60CA2E2428949C00ED67E6 /* EntryTest.swift */; }; - 0F60CA302428949C00ED67E6 /* EntryTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F60CA2E2428949C00ED67E6 /* EntryTest.swift */; }; - 0F60CA312428949C00ED67E6 /* EntryTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F60CA2E2428949C00ED67E6 /* EntryTest.swift */; }; - 0F60CA332428D02600ED67E6 /* QueryEntryType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F60CA322428D02600ED67E6 /* QueryEntryType.swift */; }; - 0F60CA342428D02600ED67E6 /* QueryEntryType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F60CA322428D02600ED67E6 /* QueryEntryType.swift */; }; - 0F60CA352428D02600ED67E6 /* QueryEntryType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F60CA322428D02600ED67E6 /* QueryEntryType.swift */; }; - 0F7138C52424A70C00B314B0 /* AssetQueryTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F7138C42424A70C00B314B0 /* AssetQueryTest.swift */; }; - 0F7138C62424A70C00B314B0 /* AssetQueryTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F7138C42424A70C00B314B0 /* AssetQueryTest.swift */; }; - 0F7138C72424A70C00B314B0 /* AssetQueryTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F7138C42424A70C00B314B0 /* AssetQueryTest.swift */; }; - 0F7138CD2424A94000B314B0 /* QueryTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F7138CC2424A94000B314B0 /* QueryTest.swift */; }; - 0F7138CE2424A94000B314B0 /* QueryTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F7138CC2424A94000B314B0 /* QueryTest.swift */; }; - 0F7138CF2424A94000B314B0 /* QueryTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F7138CC2424A94000B314B0 /* QueryTest.swift */; }; - 0F7138D12424E98D00B314B0 /* ParameterEncoding.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F7138D02424E98D00B314B0 /* ParameterEncoding.swift */; }; - 0F7138D22424E98D00B314B0 /* ParameterEncoding.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F7138D02424E98D00B314B0 /* ParameterEncoding.swift */; }; - 0F7138D32424E98D00B314B0 /* ParameterEncoding.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F7138D02424E98D00B314B0 /* ParameterEncoding.swift */; }; - 0F7138D42424E98D00B314B0 /* ParameterEncoding.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F7138D02424E98D00B314B0 /* ParameterEncoding.swift */; }; - 0F77CFB824373B8A00C57764 /* ImageTransformEquatableTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F77CFB724373B8A00C57764 /* ImageTransformEquatableTest.swift */; }; - 0F77CFB924373B8F00C57764 /* ImageTransformEquatableTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F77CFB724373B8A00C57764 /* ImageTransformEquatableTest.swift */; }; - 0F77CFBA24373B9000C57764 /* ImageTransformEquatableTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F77CFB724373B8A00C57764 /* ImageTransformEquatableTest.swift */; }; - 0F796C532449EA8700EA04D5 /* Entry.json in Resources */ = {isa = PBXBuildFile; fileRef = 0F796C512449EA8700EA04D5 /* Entry.json */; }; - 0F796C542449EA8700EA04D5 /* Entry.json in Resources */ = {isa = PBXBuildFile; fileRef = 0F796C512449EA8700EA04D5 /* Entry.json */; }; - 0FB4CAC924332C5200A385B1 /* ImageOperation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FB4CAC824332C5200A385B1 /* ImageOperation.swift */; }; - 0FB4CACA24332C5200A385B1 /* ImageOperation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FB4CAC824332C5200A385B1 /* ImageOperation.swift */; }; - 0FB4CACB24332C5200A385B1 /* ImageOperation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FB4CAC824332C5200A385B1 /* ImageOperation.swift */; }; - 0FB4CACC24332C5200A385B1 /* ImageOperation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FB4CAC824332C5200A385B1 /* ImageOperation.swift */; }; - 0FC52DBA2452EDE000B33614 /* EntryQuaryable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FC52DB92452EDE000B33614 /* EntryQuaryable.swift */; }; - 0FC52DBB2452EDE000B33614 /* EntryQuaryable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FC52DB92452EDE000B33614 /* EntryQuaryable.swift */; }; - 0FC52DBC2452EDE000B33614 /* EntryQuaryable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FC52DB92452EDE000B33614 /* EntryQuaryable.swift */; }; - 0FC52DBD2452EDE000B33614 /* EntryQuaryable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FC52DB92452EDE000B33614 /* EntryQuaryable.swift */; }; - 0FD39D40242352F800E34826 /* QueryableRange.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FD39D3F242352F800E34826 /* QueryableRange.swift */; }; - 0FD39D41242352F800E34826 /* QueryableRange.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FD39D3F242352F800E34826 /* QueryableRange.swift */; }; - 0FD39D42242352F800E34826 /* QueryableRange.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FD39D3F242352F800E34826 /* QueryableRange.swift */; }; - 0FD39D43242352F800E34826 /* QueryableRange.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FD39D3F242352F800E34826 /* QueryableRange.swift */; }; - 0FD39D45242356B100E34826 /* QueryProtocols.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FD39D44242356B100E34826 /* QueryProtocols.swift */; }; - 0FD39D46242356B100E34826 /* QueryProtocols.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FD39D44242356B100E34826 /* QueryProtocols.swift */; }; - 0FD39D47242356B100E34826 /* QueryProtocols.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FD39D44242356B100E34826 /* QueryProtocols.swift */; }; - 0FD39D48242356B100E34826 /* QueryProtocols.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FD39D44242356B100E34826 /* QueryProtocols.swift */; }; - 0FD39D4A24237A0400E34826 /* ContentTypeQueryTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FD39D4924237A0400E34826 /* ContentTypeQueryTest.swift */; }; - 0FD39D4B24237A0400E34826 /* ContentTypeQueryTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FD39D4924237A0400E34826 /* ContentTypeQueryTest.swift */; }; - 0FD39D4C24237A0400E34826 /* ContentTypeQueryTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FD39D4924237A0400E34826 /* ContentTypeQueryTest.swift */; }; - 0FFA5D4A241F4DED003B3AF5 /* ContentstackConfigTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D49241F4DED003B3AF5 /* ContentstackConfigTest.swift */; }; - 0FFA5D4E241F4FAC003B3AF5 /* Contentstack.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FFA5D4B241F4FAC003B3AF5 /* Contentstack.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 0FFA5D4F241F4FAC003B3AF5 /* Contentstack.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FFA5D4B241F4FAC003B3AF5 /* Contentstack.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 0FFA5D50241F4FAC003B3AF5 /* Contentstack.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FFA5D4B241F4FAC003B3AF5 /* Contentstack.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 0FFA5D55241F4FC3003B3AF5 /* Contentstack.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FFA5D4B241F4FAC003B3AF5 /* Contentstack.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 0FFA5D57241F5085003B3AF5 /* ContentstackConfig.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D56241F5085003B3AF5 /* ContentstackConfig.swift */; }; - 0FFA5D58241F5085003B3AF5 /* ContentstackConfig.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D56241F5085003B3AF5 /* ContentstackConfig.swift */; }; - 0FFA5D59241F5085003B3AF5 /* ContentstackConfig.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D56241F5085003B3AF5 /* ContentstackConfig.swift */; }; - 0FFA5D5A241F5085003B3AF5 /* ContentstackConfig.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D56241F5085003B3AF5 /* ContentstackConfig.swift */; }; - 0FFA5D5C241F5134003B3AF5 /* Stack.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D5B241F5134003B3AF5 /* Stack.swift */; }; - 0FFA5D5D241F5134003B3AF5 /* Stack.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D5B241F5134003B3AF5 /* Stack.swift */; }; - 0FFA5D5E241F5134003B3AF5 /* Stack.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D5B241F5134003B3AF5 /* Stack.swift */; }; - 0FFA5D5F241F5134003B3AF5 /* Stack.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D5B241F5134003B3AF5 /* Stack.swift */; }; - 0FFA5D63241F5575003B3AF5 /* CSDefinitions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D61241F5575003B3AF5 /* CSDefinitions.swift */; }; - 0FFA5D64241F5575003B3AF5 /* CSDefinitions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D61241F5575003B3AF5 /* CSDefinitions.swift */; }; - 0FFA5D65241F5575003B3AF5 /* CSDefinitions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D61241F5575003B3AF5 /* CSDefinitions.swift */; }; - 0FFA5D66241F5575003B3AF5 /* CSDefinitions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D61241F5575003B3AF5 /* CSDefinitions.swift */; }; - 0FFA5D67241F5575003B3AF5 /* CSURLCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D62241F5575003B3AF5 /* CSURLCache.swift */; }; - 0FFA5D68241F5575003B3AF5 /* CSURLCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D62241F5575003B3AF5 /* CSURLCache.swift */; }; - 0FFA5D69241F5575003B3AF5 /* CSURLCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D62241F5575003B3AF5 /* CSURLCache.swift */; }; - 0FFA5D6A241F5575003B3AF5 /* CSURLCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D62241F5575003B3AF5 /* CSURLCache.swift */; }; - 0FFA5D70241F6BFA003B3AF5 /* Decodable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D6E241F6BF9003B3AF5 /* Decodable.swift */; }; - 0FFA5D71241F6BFA003B3AF5 /* Decodable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D6E241F6BF9003B3AF5 /* Decodable.swift */; }; - 0FFA5D72241F6BFA003B3AF5 /* Decodable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D6E241F6BF9003B3AF5 /* Decodable.swift */; }; - 0FFA5D73241F6BFA003B3AF5 /* Decodable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D6E241F6BF9003B3AF5 /* Decodable.swift */; }; - 0FFA5D74241F6BFA003B3AF5 /* Date.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D6F241F6BFA003B3AF5 /* Date.swift */; }; - 0FFA5D75241F6BFA003B3AF5 /* Date.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D6F241F6BFA003B3AF5 /* Date.swift */; }; - 0FFA5D76241F6BFA003B3AF5 /* Date.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D6F241F6BFA003B3AF5 /* Date.swift */; }; - 0FFA5D77241F6BFA003B3AF5 /* Date.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D6F241F6BFA003B3AF5 /* Date.swift */; }; - 0FFA5D7A241F7033003B3AF5 /* ContentType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D79241F7033003B3AF5 /* ContentType.swift */; }; - 0FFA5D7B241F7033003B3AF5 /* ContentType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D79241F7033003B3AF5 /* ContentType.swift */; }; - 0FFA5D7C241F7033003B3AF5 /* ContentType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D79241F7033003B3AF5 /* ContentType.swift */; }; - 0FFA5D7D241F7033003B3AF5 /* ContentType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D79241F7033003B3AF5 /* ContentType.swift */; }; - 0FFA5D7F241F7060003B3AF5 /* SystemFields.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D7E241F7060003B3AF5 /* SystemFields.swift */; }; - 0FFA5D80241F7060003B3AF5 /* SystemFields.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D7E241F7060003B3AF5 /* SystemFields.swift */; }; - 0FFA5D81241F7060003B3AF5 /* SystemFields.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D7E241F7060003B3AF5 /* SystemFields.swift */; }; - 0FFA5D82241F7060003B3AF5 /* SystemFields.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D7E241F7060003B3AF5 /* SystemFields.swift */; }; - 0FFA5D84241F808F003B3AF5 /* Asset.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D83241F808F003B3AF5 /* Asset.swift */; }; - 0FFA5D85241F808F003B3AF5 /* Asset.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D83241F808F003B3AF5 /* Asset.swift */; }; - 0FFA5D86241F808F003B3AF5 /* Asset.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D83241F808F003B3AF5 /* Asset.swift */; }; - 0FFA5D87241F808F003B3AF5 /* Asset.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D83241F808F003B3AF5 /* Asset.swift */; }; - 0FFA5D8D241F8122003B3AF5 /* StackTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D88241F8113003B3AF5 /* StackTest.swift */; }; - 0FFA5D8E241F8122003B3AF5 /* StackTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D88241F8113003B3AF5 /* StackTest.swift */; }; - 0FFA5D8F241F8123003B3AF5 /* StackTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D88241F8113003B3AF5 /* StackTest.swift */; }; - 0FFA5D90241F8126003B3AF5 /* ContentstackConfigTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D49241F4DED003B3AF5 /* ContentstackConfigTest.swift */; }; - 0FFA5D91241F8127003B3AF5 /* ContentstackConfigTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D49241F4DED003B3AF5 /* ContentstackConfigTest.swift */; }; - 0FFA5D93241F8214003B3AF5 /* EndPoint.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D92241F8214003B3AF5 /* EndPoint.swift */; }; - 0FFA5D94241F8214003B3AF5 /* EndPoint.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D92241F8214003B3AF5 /* EndPoint.swift */; }; - 0FFA5D95241F8214003B3AF5 /* EndPoint.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D92241F8214003B3AF5 /* EndPoint.swift */; }; - 0FFA5D96241F8214003B3AF5 /* EndPoint.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D92241F8214003B3AF5 /* EndPoint.swift */; }; - 0FFA5D98241F8EB2003B3AF5 /* Entry.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D97241F8EB2003B3AF5 /* Entry.swift */; }; - 0FFA5D99241F8EB2003B3AF5 /* Entry.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D97241F8EB2003B3AF5 /* Entry.swift */; }; - 0FFA5D9A241F8EB2003B3AF5 /* Entry.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D97241F8EB2003B3AF5 /* Entry.swift */; }; - 0FFA5D9B241F8EB2003B3AF5 /* Entry.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D97241F8EB2003B3AF5 /* Entry.swift */; }; - 0FFA5D9F241F8FFE003B3AF5 /* ContentTypeTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D9E241F8FFE003B3AF5 /* ContentTypeTest.swift */; }; - 0FFA5DA0241F8FFE003B3AF5 /* ContentTypeTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D9E241F8FFE003B3AF5 /* ContentTypeTest.swift */; }; - 0FFA5DA1241F8FFE003B3AF5 /* ContentTypeTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5D9E241F8FFE003B3AF5 /* ContentTypeTest.swift */; }; - 0FFA5DA3241F90BF003B3AF5 /* SutBuilder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5DA2241F90BF003B3AF5 /* SutBuilder.swift */; }; - 0FFA5DA4241F90BF003B3AF5 /* SutBuilder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5DA2241F90BF003B3AF5 /* SutBuilder.swift */; }; - 0FFA5DA5241F90BF003B3AF5 /* SutBuilder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5DA2241F90BF003B3AF5 /* SutBuilder.swift */; }; - 0FFA5DB4241F99F9003B3AF5 /* FatalError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5DB3241F99F9003B3AF5 /* FatalError.swift */; }; - 0FFA5DB6241F99F9003B3AF5 /* FatalError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5DB3241F99F9003B3AF5 /* FatalError.swift */; }; - 0FFA5DB8241F99F9003B3AF5 /* FatalError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5DB3241F99F9003B3AF5 /* FatalError.swift */; }; - 0FFA5DBA241F99F9003B3AF5 /* FatalError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5DB3241F99F9003B3AF5 /* FatalError.swift */; }; - 0FFA5DBC241F9A6C003B3AF5 /* XCTestCase+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5DBB241F9A6C003B3AF5 /* XCTestCase+Extension.swift */; }; - 0FFA5DBD241F9A6C003B3AF5 /* XCTestCase+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5DBB241F9A6C003B3AF5 /* XCTestCase+Extension.swift */; }; - 0FFA5DBE241F9A6C003B3AF5 /* XCTestCase+Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFA5DBB241F9A6C003B3AF5 /* XCTestCase+Extension.swift */; }; - 0FFBB4482446F9A4000D2795 /* Asset.json in Resources */ = {isa = PBXBuildFile; fileRef = 0FFBB4462446F9A4000D2795 /* Asset.json */; }; - 0FFBB4492446F9A4000D2795 /* Asset.json in Resources */ = {isa = PBXBuildFile; fileRef = 0FFBB4462446F9A4000D2795 /* Asset.json */; }; - 0FFBB44C24470C43000D2795 /* ContentStackLogTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFBB44B24470C43000D2795 /* ContentStackLogTest.swift */; }; - 0FFBB44D24470C43000D2795 /* ContentStackLogTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFBB44B24470C43000D2795 /* ContentStackLogTest.swift */; }; - 0FFBB44E24470C43000D2795 /* ContentStackLogTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FFBB44B24470C43000D2795 /* ContentStackLogTest.swift */; }; - 470253932C0C612A009BDF8B /* TaxonomyModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 470253922C0C612A009BDF8B /* TaxonomyModel.swift */; }; - 470253942C0C612A009BDF8B /* TaxonomyModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 470253922C0C612A009BDF8B /* TaxonomyModel.swift */; }; - 470253952C0C612A009BDF8B /* TaxonomyModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 470253922C0C612A009BDF8B /* TaxonomyModel.swift */; }; - 470253962C0C612A009BDF8B /* TaxonomyModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 470253922C0C612A009BDF8B /* TaxonomyModel.swift */; }; - 470657542B5E785C00BBFF88 /* ContentTypeQueryAPITest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 470657532B5E785C00BBFF88 /* ContentTypeQueryAPITest.swift */; }; - 470657552B5E785C00BBFF88 /* ContentTypeQueryAPITest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 470657532B5E785C00BBFF88 /* ContentTypeQueryAPITest.swift */; }; - 470657562B5E785C00BBFF88 /* ContentTypeQueryAPITest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 470657532B5E785C00BBFF88 /* ContentTypeQueryAPITest.swift */; }; - 470657582B5E788400BBFF88 /* EntryAPITest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 470657572B5E788400BBFF88 /* EntryAPITest.swift */; }; - 470657592B5E788400BBFF88 /* EntryAPITest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 470657572B5E788400BBFF88 /* EntryAPITest.swift */; }; - 4706575A2B5E788400BBFF88 /* EntryAPITest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 470657572B5E788400BBFF88 /* EntryAPITest.swift */; }; - 4706575C2B5E78B300BBFF88 /* AssetQueryAPITest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4706575B2B5E78B300BBFF88 /* AssetQueryAPITest.swift */; }; - 4706575D2B5E78B300BBFF88 /* AssetQueryAPITest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4706575B2B5E78B300BBFF88 /* AssetQueryAPITest.swift */; }; - 4706575E2B5E78B300BBFF88 /* AssetQueryAPITest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4706575B2B5E78B300BBFF88 /* AssetQueryAPITest.swift */; }; - 470657602B5E797300BBFF88 /* ContentstackTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4706575F2B5E797300BBFF88 /* ContentstackTest.swift */; }; - 470657612B5E797300BBFF88 /* ContentstackTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4706575F2B5E797300BBFF88 /* ContentstackTest.swift */; }; - 470657622B5E797300BBFF88 /* ContentstackTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4706575F2B5E797300BBFF88 /* ContentstackTest.swift */; }; - 47AAE0902B60420E0098655A /* SyncAPITest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 47AAE08F2B60420E0098655A /* SyncAPITest.swift */; }; - 47AAE0912B60420E0098655A /* SyncAPITest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 47AAE08F2B60420E0098655A /* SyncAPITest.swift */; }; - 47AAE0922B60420E0098655A /* SyncAPITest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 47AAE08F2B60420E0098655A /* SyncAPITest.swift */; }; - 47B09C292CA9530100B8AB41 /* ContentstackUtils in Frameworks */ = {isa = PBXBuildFile; productRef = 47B09C282CA9530100B8AB41 /* ContentstackUtils */; }; - 47B4DC622C232A8200370CFC /* TaxonomyTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 47B4DC612C232A8200370CFC /* TaxonomyTest.swift */; }; - 47B4DC632C232A8200370CFC /* TaxonomyTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 47B4DC612C232A8200370CFC /* TaxonomyTest.swift */; }; - 47B4DC642C232A8200370CFC /* TaxonomyTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 47B4DC612C232A8200370CFC /* TaxonomyTest.swift */; }; - 47C6EFC22C0B5B9400F0D5CF /* Taxonomy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 47C6EFC12C0B5B9400F0D5CF /* Taxonomy.swift */; }; - 47C6EFC32C0B5B9400F0D5CF /* Taxonomy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 47C6EFC12C0B5B9400F0D5CF /* Taxonomy.swift */; }; - 47C6EFC42C0B5B9400F0D5CF /* Taxonomy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 47C6EFC12C0B5B9400F0D5CF /* Taxonomy.swift */; }; - 47C6EFC52C0B5B9400F0D5CF /* Taxonomy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 47C6EFC12C0B5B9400F0D5CF /* Taxonomy.swift */; }; - 47D561512C9EF97D00DC085D /* ContentstackUtils in Frameworks */ = {isa = PBXBuildFile; productRef = 47D561502C9EF97D00DC085D /* ContentstackUtils */; }; - 47D561572C9EFA5900DC085D /* DVR in Frameworks */ = {isa = PBXBuildFile; productRef = 47D561562C9EFA5900DC085D /* DVR */; }; - 6750778E2D3E256A0076A066 /* DVR in Frameworks */ = {isa = PBXBuildFile; productRef = 6750778D2D3E256A0076A066 /* DVR */; }; -/* End PBXBuildFile section */ - -/* Begin PBXContainerItemProxy section */ - 0F4A75F5241BAE6C00E3A024 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = OBJ_1 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0F4A75EA241BAE6C00E3A024; - remoteInfo = "Contentstack macOS"; - }; - 0F4A7611241BAFE000E3A024 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = OBJ_1 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0F4A7606241BAFE000E3A024; - remoteInfo = "Contentstack tvOS"; - }; - 0F4A764C241BB42100E3A024 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = OBJ_1 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0F4A75CA241BAC4300E3A024; - remoteInfo = "Contentstack iOS"; - }; -/* End PBXContainerItemProxy section */ - -/* Begin PBXFileReference section */ - 0F0246652431F37300F72181 /* ImageTransform.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ImageTransform.swift; sourceTree = ""; }; - 0F02466A243201B500F72181 /* ImageTransformTest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ImageTransformTest.swift; sourceTree = ""; }; - 0F02466E243210E200F72181 /* ImageParameter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ImageParameter.swift; sourceTree = ""; }; - 0F024673243217D800F72181 /* ImageTransformError.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ImageTransformError.swift; sourceTree = ""; }; - 0F096B13243610470094F042 /* ImageTransformTestAdditional.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ImageTransformTestAdditional.swift; sourceTree = ""; }; - 0F1DCC6E243D980A00EED404 /* DVR.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = DVR.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 0F1DCC70243D980A00EED404 /* OHHTTPStubs.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = OHHTTPStubs.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 0F1DCC72243D991100EED404 /* DVR.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = DVR.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 0F1DCC74243D991100EED404 /* OHHTTPStubs.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = OHHTTPStubs.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 0F1DCC77243D9BBF00EED404 /* SyncTest.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = SyncTest.json; sourceTree = ""; }; - 0F1DCC7F243DCF2500EED404 /* EntryModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EntryModel.swift; sourceTree = ""; }; - 0F1DCC84243DD01900EED404 /* AssetModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AssetModel.swift; sourceTree = ""; }; - 0F1DCC89243DD20E00EED404 /* ContentTypeModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContentTypeModel.swift; sourceTree = ""; }; - 0F244F9C244062B4003C3F26 /* ContentType.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = ContentType.json; sourceTree = ""; }; - 0F244FA124406A2D003C3F26 /* SyncStack.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SyncStack.swift; sourceTree = ""; }; - 0F244FA624406A4A003C3F26 /* EntryQueriableTest.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "EntryQueriable\U0010\U0010Test.swift"; sourceTree = ""; }; - 0F2DB7E62451D353007B9815 /* ImageOperations.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ImageOperations.swift; sourceTree = ""; }; - 0F38D7DF242C7C9E00232D7F /* Product.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Product.swift; sourceTree = ""; }; - 0F38D7E3242C831300232D7F /* AssetTest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AssetTest.swift; sourceTree = ""; }; - 0F463112243B044F001CE1FA /* SyncTest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SyncTest.swift; sourceTree = ""; }; - 0F4A245B24224D3100159C24 /* ContentstackResponse.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContentstackResponse.swift; sourceTree = ""; }; - 0F4A75CB241BAC4300E3A024 /* Contentstack.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Contentstack.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 0F4A75D3241BAC4300E3A024 /* Contentstack iOS Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "Contentstack iOS Tests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; }; - 0F4A75EB241BAE6C00E3A024 /* Contentstack.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Contentstack.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 0F4A75F3241BAE6C00E3A024 /* Contentstack macOS Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "Contentstack macOS Tests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; }; - 0F4A7607241BAFE000E3A024 /* Contentstack.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Contentstack.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 0F4A760F241BAFE000E3A024 /* Contentstack tvOS Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "Contentstack tvOS Tests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; }; - 0F4A7623241BB0A300E3A024 /* Contentstack.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Contentstack.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 0F4A762B241BB0D200E3A024 /* Contentstack.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Contentstack.swift; sourceTree = ""; }; - 0F4A763C241BB38C00E3A024 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 0F4A7641241BB3C600E3A024 /* ContentstackTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ContentstackTests.swift; sourceTree = ""; }; - 0F4C0A7B243C4579006604B7 /* Error.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Error.swift; sourceTree = ""; }; - 0F4C0A80243C470F006604B7 /* ContentstackLogger.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContentstackLogger.swift; sourceTree = ""; }; - 0F4C0A86243C6990006604B7 /* config.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = config.json; sourceTree = ""; }; - 0F4FBC9A2420A17F007B8CAE /* Config.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Config.xcconfig; sourceTree = ""; }; - 0F4FBC9F2420B0E4007B8CAE /* DateTest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DateTest.swift; sourceTree = ""; }; - 0F4FBCA32420B5F4007B8CAE /* Utils.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Utils.swift; sourceTree = ""; }; - 0F4FBCA82420B615007B8CAE /* UtilsTest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UtilsTest.swift; sourceTree = ""; }; - 0F4FBCAC2420CD5F007B8CAE /* Query.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Query.swift; sourceTree = ""; }; - 0F4FBCB22420D2F1007B8CAE /* QueryOperation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = QueryOperation.swift; sourceTree = ""; }; - 0F4FBCB72420F344007B8CAE /* QueryParameter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = QueryParameter.swift; sourceTree = ""; }; - 0F50EA0D244EC3DD00E5D705 /* Session.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Session.swift; sourceTree = ""; }; - 0F50EA15244ED7F500E5D705 /* QueryOn.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = QueryOn.json; sourceTree = ""; }; - 0F50EA1C244ED88C00E5D705 /* StackCacheAPITest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StackCacheAPITest.swift; sourceTree = ""; }; - 0F5794C1266A37120082815C /* Paragraph.Json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = Paragraph.Json; sourceTree = ""; }; - 0F60CA2E2428949C00ED67E6 /* EntryTest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EntryTest.swift; sourceTree = ""; }; - 0F60CA322428D02600ED67E6 /* QueryEntryType.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = QueryEntryType.swift; sourceTree = ""; }; - 0F6B6CE424501328007AB3C1 /* swiftlint.sh */ = {isa = PBXFileReference; lastKnownFileType = text.script.sh; path = swiftlint.sh; sourceTree = ""; }; - 0F6B6CE524501328007AB3C1 /* run-test-cases.sh */ = {isa = PBXFileReference; lastKnownFileType = text.script.sh; path = "run-test-cases.sh"; sourceTree = ""; }; - 0F6B6CE624501328007AB3C1 /* reference-docs.sh */ = {isa = PBXFileReference; lastKnownFileType = text.script.sh; path = "reference-docs.sh"; sourceTree = ""; }; - 0F6B6CE724508154007AB3C1 /* DVR.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = DVR.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 0F6B6CE924508154007AB3C1 /* OHHTTPStubs.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = OHHTTPStubs.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 0F6B6CEB24508165007AB3C1 /* DVR.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = DVR.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 0F6B6CED24508165007AB3C1 /* OHHTTPStubs.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = OHHTTPStubs.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 0F7138C42424A70C00B314B0 /* AssetQueryTest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AssetQueryTest.swift; sourceTree = ""; }; - 0F7138CC2424A94000B314B0 /* QueryTest.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = QueryTest.swift; sourceTree = ""; }; - 0F7138D02424E98D00B314B0 /* ParameterEncoding.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ParameterEncoding.swift; sourceTree = ""; }; - 0F77CFB724373B8A00C57764 /* ImageTransformEquatableTest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ImageTransformEquatableTest.swift; sourceTree = ""; }; - 0F796C512449EA8700EA04D5 /* Entry.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = Entry.json; sourceTree = ""; }; - 0FB4CAC824332C5200A385B1 /* ImageOperation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ImageOperation.swift; sourceTree = ""; }; - 0FC52DB92452EDE000B33614 /* EntryQuaryable.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EntryQuaryable.swift; sourceTree = ""; }; - 0FD39D3F242352F800E34826 /* QueryableRange.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = QueryableRange.swift; sourceTree = ""; }; - 0FD39D44242356B100E34826 /* QueryProtocols.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = QueryProtocols.swift; sourceTree = ""; }; - 0FD39D4924237A0400E34826 /* ContentTypeQueryTest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContentTypeQueryTest.swift; sourceTree = ""; }; - 0FE1DC1B2457F8B600944056 /* ContentstackSwift.podspec */ = {isa = PBXFileReference; lastKnownFileType = text; path = ContentstackSwift.podspec; sourceTree = ""; }; - 0FFA5D49241F4DED003B3AF5 /* ContentstackConfigTest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContentstackConfigTest.swift; sourceTree = ""; }; - 0FFA5D4B241F4FAC003B3AF5 /* Contentstack.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Contentstack.h; sourceTree = ""; }; - 0FFA5D4C241F4FAC003B3AF5 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = "../Supporting Files/Info.plist"; sourceTree = ""; }; - 0FFA5D56241F5085003B3AF5 /* ContentstackConfig.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ContentstackConfig.swift; sourceTree = ""; }; - 0FFA5D5B241F5134003B3AF5 /* Stack.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Stack.swift; sourceTree = ""; }; - 0FFA5D61241F5575003B3AF5 /* CSDefinitions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CSDefinitions.swift; sourceTree = ""; }; - 0FFA5D62241F5575003B3AF5 /* CSURLCache.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CSURLCache.swift; sourceTree = ""; }; - 0FFA5D6E241F6BF9003B3AF5 /* Decodable.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Decodable.swift; sourceTree = ""; }; - 0FFA5D6F241F6BFA003B3AF5 /* Date.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Date.swift; sourceTree = ""; }; - 0FFA5D79241F7033003B3AF5 /* ContentType.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContentType.swift; sourceTree = ""; }; - 0FFA5D7E241F7060003B3AF5 /* SystemFields.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SystemFields.swift; sourceTree = ""; }; - 0FFA5D83241F808F003B3AF5 /* Asset.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Asset.swift; sourceTree = ""; }; - 0FFA5D88241F8113003B3AF5 /* StackTest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StackTest.swift; sourceTree = ""; }; - 0FFA5D92241F8214003B3AF5 /* EndPoint.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = EndPoint.swift; sourceTree = ""; }; - 0FFA5D97241F8EB2003B3AF5 /* Entry.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Entry.swift; sourceTree = ""; }; - 0FFA5D9E241F8FFE003B3AF5 /* ContentTypeTest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContentTypeTest.swift; sourceTree = ""; }; - 0FFA5DA2241F90BF003B3AF5 /* SutBuilder.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SutBuilder.swift; sourceTree = ""; }; - 0FFA5DB3241F99F9003B3AF5 /* FatalError.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FatalError.swift; sourceTree = ""; }; - 0FFA5DBB241F9A6C003B3AF5 /* XCTestCase+Extension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "XCTestCase+Extension.swift"; sourceTree = ""; }; - 0FFB22B3261C98E50056AEE0 /* .env */ = {isa = PBXFileReference; lastKnownFileType = text; path = .env; sourceTree = ""; }; - 0FFBB4462446F9A4000D2795 /* Asset.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = Asset.json; sourceTree = ""; }; - 0FFBB44B24470C43000D2795 /* ContentStackLogTest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContentStackLogTest.swift; sourceTree = ""; }; - 470253922C0C612A009BDF8B /* TaxonomyModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TaxonomyModel.swift; sourceTree = ""; }; - 470657532B5E785C00BBFF88 /* ContentTypeQueryAPITest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContentTypeQueryAPITest.swift; sourceTree = ""; }; - 470657572B5E788400BBFF88 /* EntryAPITest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EntryAPITest.swift; sourceTree = ""; }; - 4706575B2B5E78B300BBFF88 /* AssetQueryAPITest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AssetQueryAPITest.swift; sourceTree = ""; }; - 4706575F2B5E797300BBFF88 /* ContentstackTest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContentstackTest.swift; sourceTree = ""; }; - 470657632B5E7F5400BBFF88 /* DVR.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = DVR.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 47161AC42B5D744E00AD615B /* DVR.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = DVR.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 47161ACB2B5D788E00AD615B /* DVR.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = DVR.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 47AAE08F2B60420E0098655A /* SyncAPITest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SyncAPITest.swift; sourceTree = ""; }; - 47AEE8D92C9ED4C9007884A7 /* DVR.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = DVR.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 47AEE8E72C9EDF3E007884A7 /* DVR.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = DVR.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 47B09C242CA952E400B8AB41 /* DVR.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = DVR.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 47B4DC612C232A8200370CFC /* TaxonomyTest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TaxonomyTest.swift; sourceTree = ""; }; - 47C6EFC12C0B5B9400F0D5CF /* Taxonomy.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Taxonomy.swift; sourceTree = ""; }; - OBJ_17 /* LICENSE */ = {isa = PBXFileReference; lastKnownFileType = text; path = LICENSE; sourceTree = ""; }; - OBJ_18 /* README.md */ = {isa = PBXFileReference; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = ""; }; - OBJ_6 /* Package.swift */ = {isa = PBXFileReference; explicitFileType = sourcecode.swift; path = Package.swift; sourceTree = ""; }; -/* End PBXFileReference section */ - -/* Begin PBXFrameworksBuildPhase section */ - 0F4A75C8241BAC4300E3A024 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 47D561512C9EF97D00DC085D /* ContentstackUtils in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 0F4A75D0241BAC4300E3A024 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 0F4A75D4241BAC4300E3A024 /* Contentstack.framework in Frameworks */, - 47D561572C9EFA5900DC085D /* DVR in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 0F4A75E8241BAE6C00E3A024 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 47B09C292CA9530100B8AB41 /* ContentstackUtils in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 0F4A75F0241BAE6C00E3A024 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 6750778E2D3E256A0076A066 /* DVR in Frameworks */, - 0F4A75F4241BAE6C00E3A024 /* Contentstack.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 0F4A7604241BAFE000E3A024 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 0F4A760C241BAFE000E3A024 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 0F4A7610241BAFE000E3A024 /* Contentstack.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 0F4A7620241BB0A300E3A024 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXFrameworksBuildPhase section */ - -/* Begin PBXGroup section */ - 0F0246642431F34400F72181 /* ImageTransform */ = { - isa = PBXGroup; - children = ( - 0F0246652431F37300F72181 /* ImageTransform.swift */, - 0F02466E243210E200F72181 /* ImageParameter.swift */, - 0F024673243217D800F72181 /* ImageTransformError.swift */, - 0FB4CAC824332C5200A385B1 /* ImageOperation.swift */, - 0F2DB7E62451D353007B9815 /* ImageOperations.swift */, - ); - name = ImageTransform; - sourceTree = ""; - }; - 0F096B122435BF930094F042 /* Models */ = { - isa = PBXGroup; - children = ( - 0F244FA124406A2D003C3F26 /* SyncStack.swift */, - 0FFA5D7E241F7060003B3AF5 /* SystemFields.swift */, - 0F4A245B24224D3100159C24 /* ContentstackResponse.swift */, - 0F1DCC7F243DCF2500EED404 /* EntryModel.swift */, - 0F1DCC84243DD01900EED404 /* AssetModel.swift */, - 0F1DCC89243DD20E00EED404 /* ContentTypeModel.swift */, - 470253922C0C612A009BDF8B /* TaxonomyModel.swift */, - ); - name = Models; - sourceTree = ""; - }; - 0F1DCC6D243D980900EED404 /* Frameworks */ = { - isa = PBXGroup; - children = ( - 47B09C242CA952E400B8AB41 /* DVR.framework */, - 47AEE8E72C9EDF3E007884A7 /* DVR.framework */, - 47AEE8D92C9ED4C9007884A7 /* DVR.framework */, - 470657632B5E7F5400BBFF88 /* DVR.framework */, - 47161ACB2B5D788E00AD615B /* DVR.framework */, - 47161AC42B5D744E00AD615B /* DVR.framework */, - 0F6B6CEB24508165007AB3C1 /* DVR.framework */, - 0F6B6CED24508165007AB3C1 /* OHHTTPStubs.framework */, - 0F6B6CE724508154007AB3C1 /* DVR.framework */, - 0F6B6CE924508154007AB3C1 /* OHHTTPStubs.framework */, - 0F1DCC72243D991100EED404 /* DVR.framework */, - 0F1DCC74243D991100EED404 /* OHHTTPStubs.framework */, - 0F1DCC6E243D980A00EED404 /* DVR.framework */, - 0F1DCC70243D980A00EED404 /* OHHTTPStubs.framework */, - ); - name = Frameworks; - sourceTree = ""; - }; - 0F1DCC76243D9B9A00EED404 /* DVRRecording */ = { - isa = PBXGroup; - children = ( - 0F796C512449EA8700EA04D5 /* Entry.json */, - 0F50EA15244ED7F500E5D705 /* QueryOn.json */, - 0FFBB4462446F9A4000D2795 /* Asset.json */, - 0F244F9C244062B4003C3F26 /* ContentType.json */, - 0F1DCC77243D9BBF00EED404 /* SyncTest.json */, - 0F5794C1266A37120082815C /* Paragraph.Json */, - ); - name = DVRRecording; - path = DVRRecordings; - sourceTree = ""; - }; - 0F38D7DE242C7C8300232D7F /* Models */ = { - isa = PBXGroup; - children = ( - 0F38D7DF242C7C9E00232D7F /* Product.swift */, - 0F50EA0D244EC3DD00E5D705 /* Session.swift */, - ); - name = Models; - sourceTree = ""; - }; - 0F4A7630241BB11200E3A024 /* Supporting Files */ = { - isa = PBXGroup; - children = ( - 0FFA5D4B241F4FAC003B3AF5 /* Contentstack.h */, - 0FFA5D4C241F4FAC003B3AF5 /* Info.plist */, - ); - name = "Supporting Files"; - sourceTree = ""; - }; - 0F4A763B241BB36100E3A024 /* Supporting Files */ = { - isa = PBXGroup; - children = ( - 0F4A763C241BB38C00E3A024 /* Info.plist */, - ); - name = "Supporting Files"; - sourceTree = ""; - }; - 0F4C0A7A243C4524006604B7 /* ContentstackError */ = { - isa = PBXGroup; - children = ( - 0F4C0A7B243C4579006604B7 /* Error.swift */, - ); - name = ContentstackError; - sourceTree = ""; - }; - 0F4C0A85243C6781006604B7 /* Cofig */ = { - isa = PBXGroup; - children = ( - 0F4C0A86243C6990006604B7 /* config.json */, - ); - name = Cofig; - sourceTree = ""; - }; - 0F4FBCB12420D2CA007B8CAE /* Query */ = { - isa = PBXGroup; - children = ( - 0F4FBCAC2420CD5F007B8CAE /* Query.swift */, - 0FD39D44242356B100E34826 /* QueryProtocols.swift */, - 0F4FBCB22420D2F1007B8CAE /* QueryOperation.swift */, - 0F4FBCB72420F344007B8CAE /* QueryParameter.swift */, - 0FD39D3F242352F800E34826 /* QueryableRange.swift */, - 0FC52DB92452EDE000B33614 /* EntryQuaryable.swift */, - ); - name = Query; - sourceTree = ""; - }; - 0F6B6CE224501328007AB3C1 /* Scripts */ = { - isa = PBXGroup; - children = ( - 0F6B6CE324501328007AB3C1 /* BuildPhases */, - 0F6B6CE524501328007AB3C1 /* run-test-cases.sh */, - 0F6B6CE624501328007AB3C1 /* reference-docs.sh */, - ); - path = Scripts; - sourceTree = ""; - }; - 0F6B6CE324501328007AB3C1 /* BuildPhases */ = { - isa = PBXGroup; - children = ( - 0F6B6CE424501328007AB3C1 /* swiftlint.sh */, - ); - path = BuildPhases; - sourceTree = ""; - }; - 0FFA5D60241F5561003B3AF5 /* Utilities */ = { - isa = PBXGroup; - children = ( - 0FFA5D6F241F6BFA003B3AF5 /* Date.swift */, - 0F4FBCA32420B5F4007B8CAE /* Utils.swift */, - 0FFA5D92241F8214003B3AF5 /* EndPoint.swift */, - 0FFA5DB3241F99F9003B3AF5 /* FatalError.swift */, - 0FFA5D6E241F6BF9003B3AF5 /* Decodable.swift */, - 0FFA5D62241F5575003B3AF5 /* CSURLCache.swift */, - 0FFA5D61241F5575003B3AF5 /* CSDefinitions.swift */, - 0F7138D02424E98D00B314B0 /* ParameterEncoding.swift */, - 0F4C0A80243C470F006604B7 /* ContentstackLogger.swift */, - ); - name = Utilities; - sourceTree = ""; - }; - 0FFA5D9C241F8F81003B3AF5 /* UnitTests */ = { - isa = PBXGroup; - children = ( - 0F244FA624406A4A003C3F26 /* EntryQueriableTest.swift */, - 0FFA5D49241F4DED003B3AF5 /* ContentstackConfigTest.swift */, - 0FFA5D88241F8113003B3AF5 /* StackTest.swift */, - 0F4A7641241BB3C600E3A024 /* ContentstackTests.swift */, - 0FFA5D9E241F8FFE003B3AF5 /* ContentTypeTest.swift */, - 0F4FBC9F2420B0E4007B8CAE /* DateTest.swift */, - 0F4FBCA82420B615007B8CAE /* UtilsTest.swift */, - 0FD39D4924237A0400E34826 /* ContentTypeQueryTest.swift */, - 0F7138C42424A70C00B314B0 /* AssetQueryTest.swift */, - 0F7138CC2424A94000B314B0 /* QueryTest.swift */, - 0F60CA2E2428949C00ED67E6 /* EntryTest.swift */, - 0F60CA322428D02600ED67E6 /* QueryEntryType.swift */, - 0F38D7E3242C831300232D7F /* AssetTest.swift */, - 0F02466A243201B500F72181 /* ImageTransformTest.swift */, - 0F096B13243610470094F042 /* ImageTransformTestAdditional.swift */, - 0F77CFB724373B8A00C57764 /* ImageTransformEquatableTest.swift */, - 0F463112243B044F001CE1FA /* SyncTest.swift */, - 0FFBB44B24470C43000D2795 /* ContentStackLogTest.swift */, - ); - name = UnitTests; - sourceTree = ""; - }; - 0FFA5D9D241F8F9B003B3AF5 /* APITests */ = { - isa = PBXGroup; - children = ( - 0F50EA1C244ED88C00E5D705 /* StackCacheAPITest.swift */, - 470657532B5E785C00BBFF88 /* ContentTypeQueryAPITest.swift */, - 470657572B5E788400BBFF88 /* EntryAPITest.swift */, - 4706575B2B5E78B300BBFF88 /* AssetQueryAPITest.swift */, - 4706575F2B5E797300BBFF88 /* ContentstackTest.swift */, - 47AAE08F2B60420E0098655A /* SyncAPITest.swift */, - 47B4DC612C232A8200370CFC /* TaxonomyTest.swift */, - ); - name = APITests; - sourceTree = ""; - }; - 0FFA5DA6241F9403003B3AF5 /* Utilities */ = { - isa = PBXGroup; - children = ( - 0FFA5DBB241F9A6C003B3AF5 /* XCTestCase+Extension.swift */, - ); - name = Utilities; - sourceTree = ""; - }; - OBJ_10 /* Tests */ = { - isa = PBXGroup; - children = ( - 0F1DCC76243D9B9A00EED404 /* DVRRecording */, - 0F4C0A85243C6781006604B7 /* Cofig */, - 0F38D7DE242C7C8300232D7F /* Models */, - 0FFA5DA6241F9403003B3AF5 /* Utilities */, - 0FFA5D9D241F8F9B003B3AF5 /* APITests */, - 0FFA5D9C241F8F81003B3AF5 /* UnitTests */, - 0F4A763B241BB36100E3A024 /* Supporting Files */, - 0FFA5DA2241F90BF003B3AF5 /* SutBuilder.swift */, - ); - path = Tests; - sourceTree = SOURCE_ROOT; - }; - OBJ_14 /* Products */ = { - isa = PBXGroup; - children = ( - 0F4A75CB241BAC4300E3A024 /* Contentstack.framework */, - 0F4A75D3241BAC4300E3A024 /* Contentstack iOS Tests.xctest */, - 0F4A75EB241BAE6C00E3A024 /* Contentstack.framework */, - 0F4A75F3241BAE6C00E3A024 /* Contentstack macOS Tests.xctest */, - 0F4A7607241BAFE000E3A024 /* Contentstack.framework */, - 0F4A760F241BAFE000E3A024 /* Contentstack tvOS Tests.xctest */, - 0F4A7623241BB0A300E3A024 /* Contentstack.framework */, - ); - name = Products; - sourceTree = BUILT_PRODUCTS_DIR; - }; - OBJ_5 = { - isa = PBXGroup; - children = ( - 0FFB22B3261C98E50056AEE0 /* .env */, - 0FE1DC1B2457F8B600944056 /* ContentstackSwift.podspec */, - 0F6B6CE224501328007AB3C1 /* Scripts */, - 0F4FBC9A2420A17F007B8CAE /* Config.xcconfig */, - OBJ_6 /* Package.swift */, - OBJ_7 /* Sources */, - OBJ_10 /* Tests */, - OBJ_14 /* Products */, - OBJ_17 /* LICENSE */, - OBJ_18 /* README.md */, - 0F1DCC6D243D980900EED404 /* Frameworks */, - ); - sourceTree = ""; - }; - OBJ_7 /* Sources */ = { - isa = PBXGroup; - children = ( - 0F4C0A7A243C4524006604B7 /* ContentstackError */, - 0F096B122435BF930094F042 /* Models */, - 0F0246642431F34400F72181 /* ImageTransform */, - 0F4A7630241BB11200E3A024 /* Supporting Files */, - 0F4FBCB12420D2CA007B8CAE /* Query */, - 0FFA5D60241F5561003B3AF5 /* Utilities */, - 0FFA5D5B241F5134003B3AF5 /* Stack.swift */, - 0FFA5D83241F808F003B3AF5 /* Asset.swift */, - 0FFA5D97241F8EB2003B3AF5 /* Entry.swift */, - 0FFA5D79241F7033003B3AF5 /* ContentType.swift */, - 0F4A762B241BB0D200E3A024 /* Contentstack.swift */, - 0FFA5D56241F5085003B3AF5 /* ContentstackConfig.swift */, - 47C6EFC12C0B5B9400F0D5CF /* Taxonomy.swift */, - ); - path = Sources; - sourceTree = SOURCE_ROOT; - }; -/* End PBXGroup section */ - -/* Begin PBXHeadersBuildPhase section */ - 0F4A75C6241BAC4300E3A024 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 0FFA5D55241F4FC3003B3AF5 /* Contentstack.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 0F4A75E6241BAE6C00E3A024 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 0FFA5D4E241F4FAC003B3AF5 /* Contentstack.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 0F4A7602241BAFE000E3A024 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 0FFA5D4F241F4FAC003B3AF5 /* Contentstack.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 0F4A761E241BB0A300E3A024 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 0FFA5D50241F4FAC003B3AF5 /* Contentstack.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXHeadersBuildPhase section */ - -/* Begin PBXNativeTarget section */ - 0F4A75CA241BAC4300E3A024 /* Contentstack iOS */ = { - isa = PBXNativeTarget; - buildConfigurationList = 0F4A75E0241BAC4300E3A024 /* Build configuration list for PBXNativeTarget "Contentstack iOS" */; - buildPhases = ( - 0F4A75C6241BAC4300E3A024 /* Headers */, - 0F4A75C7241BAC4300E3A024 /* Sources */, - 0F4A75C8241BAC4300E3A024 /* Frameworks */, - 0F4A75C9241BAC4300E3A024 /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = "Contentstack iOS"; - packageProductDependencies = ( - 47D561502C9EF97D00DC085D /* ContentstackUtils */, - ); - productName = "Contentstack iOS"; - productReference = 0F4A75CB241BAC4300E3A024 /* Contentstack.framework */; - productType = "com.apple.product-type.framework"; - }; - 0F4A75D2241BAC4300E3A024 /* Contentstack iOS Tests */ = { - isa = PBXNativeTarget; - buildConfigurationList = 0F4A75E1241BAC4300E3A024 /* Build configuration list for PBXNativeTarget "Contentstack iOS Tests" */; - buildPhases = ( - 0F4A75CF241BAC4300E3A024 /* Sources */, - 0F4A75D0241BAC4300E3A024 /* Frameworks */, - 0F4A75D1241BAC4300E3A024 /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - 0F4A764D241BB42100E3A024 /* PBXTargetDependency */, - ); - name = "Contentstack iOS Tests"; - packageProductDependencies = ( - 47D561562C9EFA5900DC085D /* DVR */, - ); - productName = "Contentstack iOSTests"; - productReference = 0F4A75D3241BAC4300E3A024 /* Contentstack iOS Tests.xctest */; - productType = "com.apple.product-type.bundle.unit-test"; - }; - 0F4A75EA241BAE6C00E3A024 /* Contentstack macOS */ = { - isa = PBXNativeTarget; - buildConfigurationList = 0F4A75FC241BAE6C00E3A024 /* Build configuration list for PBXNativeTarget "Contentstack macOS" */; - buildPhases = ( - 0F4A75E6241BAE6C00E3A024 /* Headers */, - 0F4A75E7241BAE6C00E3A024 /* Sources */, - 0F4A75E8241BAE6C00E3A024 /* Frameworks */, - 0F4A75E9241BAE6C00E3A024 /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = "Contentstack macOS"; - packageProductDependencies = ( - 47B09C282CA9530100B8AB41 /* ContentstackUtils */, - ); - productName = "Contentstack macOS"; - productReference = 0F4A75EB241BAE6C00E3A024 /* Contentstack.framework */; - productType = "com.apple.product-type.framework"; - }; - 0F4A75F2241BAE6C00E3A024 /* Contentstack macOS Tests */ = { - isa = PBXNativeTarget; - buildConfigurationList = 0F4A75FF241BAE6C00E3A024 /* Build configuration list for PBXNativeTarget "Contentstack macOS Tests" */; - buildPhases = ( - 0F4A75EF241BAE6C00E3A024 /* Sources */, - 0F4A75F0241BAE6C00E3A024 /* Frameworks */, - 0F4A75F1241BAE6C00E3A024 /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - 0F4A75F6241BAE6C00E3A024 /* PBXTargetDependency */, - ); - name = "Contentstack macOS Tests"; - productName = "Contentstack macOSTests"; - productReference = 0F4A75F3241BAE6C00E3A024 /* Contentstack macOS Tests.xctest */; - productType = "com.apple.product-type.bundle.unit-test"; - }; - 0F4A7606241BAFE000E3A024 /* Contentstack tvOS */ = { - isa = PBXNativeTarget; - buildConfigurationList = 0F4A7618241BAFE000E3A024 /* Build configuration list for PBXNativeTarget "Contentstack tvOS" */; - buildPhases = ( - 0F4A7602241BAFE000E3A024 /* Headers */, - 0F4A7603241BAFE000E3A024 /* Sources */, - 0F4A7604241BAFE000E3A024 /* Frameworks */, - 0F4A7605241BAFE000E3A024 /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = "Contentstack tvOS"; - packageProductDependencies = ( - ); - productName = "Contentstack tvOS"; - productReference = 0F4A7607241BAFE000E3A024 /* Contentstack.framework */; - productType = "com.apple.product-type.framework"; - }; - 0F4A760E241BAFE000E3A024 /* Contentstack tvOS Tests */ = { - isa = PBXNativeTarget; - buildConfigurationList = 0F4A761B241BAFE000E3A024 /* Build configuration list for PBXNativeTarget "Contentstack tvOS Tests" */; - buildPhases = ( - 0F4A760B241BAFE000E3A024 /* Sources */, - 0F4A760C241BAFE000E3A024 /* Frameworks */, - 0F4A760D241BAFE000E3A024 /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - 0F4A7612241BAFE000E3A024 /* PBXTargetDependency */, - ); - name = "Contentstack tvOS Tests"; - productName = "Contentstack tvOSTests"; - productReference = 0F4A760F241BAFE000E3A024 /* Contentstack tvOS Tests.xctest */; - productType = "com.apple.product-type.bundle.unit-test"; - }; - 0F4A7622241BB0A300E3A024 /* Contentstack watchOS */ = { - isa = PBXNativeTarget; - buildConfigurationList = 0F4A7628241BB0A300E3A024 /* Build configuration list for PBXNativeTarget "Contentstack watchOS" */; - buildPhases = ( - 0F4A761E241BB0A300E3A024 /* Headers */, - 0F4A761F241BB0A300E3A024 /* Sources */, - 0F4A7620241BB0A300E3A024 /* Frameworks */, - 0F4A7621241BB0A300E3A024 /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = "Contentstack watchOS"; - packageProductDependencies = ( - ); - productName = "Contentstack watchOS"; - productReference = 0F4A7623241BB0A300E3A024 /* Contentstack.framework */; - productType = "com.apple.product-type.framework"; - }; -/* End PBXNativeTarget section */ - -/* Begin PBXProject section */ - OBJ_1 /* Project object */ = { - isa = PBXProject; - attributes = { - BuildIndependentTargetsInParallel = YES; - LastSwiftMigration = 9999; - LastSwiftUpdateCheck = 1100; - LastUpgradeCheck = 1620; - TargetAttributes = { - 0F4A75CA241BAC4300E3A024 = { - CreatedOnToolsVersion = 11.0; - LastSwiftMigration = 1100; - ProvisioningStyle = Automatic; - }; - 0F4A75D2241BAC4300E3A024 = { - CreatedOnToolsVersion = 11.0; - ProvisioningStyle = Automatic; - }; - 0F4A75EA241BAE6C00E3A024 = { - CreatedOnToolsVersion = 11.0; - LastSwiftMigration = 1100; - ProvisioningStyle = Automatic; - }; - 0F4A75F2241BAE6C00E3A024 = { - CreatedOnToolsVersion = 11.0; - ProvisioningStyle = Automatic; - }; - 0F4A7606241BAFE000E3A024 = { - CreatedOnToolsVersion = 11.0; - LastSwiftMigration = 1100; - ProvisioningStyle = Automatic; - }; - 0F4A760E241BAFE000E3A024 = { - CreatedOnToolsVersion = 11.0; - ProvisioningStyle = Automatic; - }; - 0F4A7622241BB0A300E3A024 = { - CreatedOnToolsVersion = 11.0; - LastSwiftMigration = 1100; - ProvisioningStyle = Automatic; - }; - }; - }; - buildConfigurationList = OBJ_2 /* Build configuration list for PBXProject "Contentstack" */; - compatibilityVersion = "Xcode 3.2"; - developmentRegion = en; - hasScannedForEncodings = 0; - knownRegions = ( - en, - ); - mainGroup = OBJ_5; - packageReferences = ( - 47D5614F2C9EF96D00DC085D /* XCRemoteSwiftPackageReference "contentstack-utils-swift" */, - 47D561532C9EFA1400DC085D /* XCRemoteSwiftPackageReference "contentstack-swift-dvr" */, - ); - productRefGroup = OBJ_14 /* Products */; - projectDirPath = ""; - projectRoot = ""; - targets = ( - 0F4A75CA241BAC4300E3A024 /* Contentstack iOS */, - 0F4A75D2241BAC4300E3A024 /* Contentstack iOS Tests */, - 0F4A75EA241BAE6C00E3A024 /* Contentstack macOS */, - 0F4A75F2241BAE6C00E3A024 /* Contentstack macOS Tests */, - 0F4A7606241BAFE000E3A024 /* Contentstack tvOS */, - 0F4A760E241BAFE000E3A024 /* Contentstack tvOS Tests */, - 0F4A7622241BB0A300E3A024 /* Contentstack watchOS */, - ); - }; -/* End PBXProject section */ - -/* Begin PBXResourcesBuildPhase section */ - 0F4A75C9241BAC4300E3A024 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 0F4A75D1241BAC4300E3A024 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 0F359995257BE30A00B3DB89 /* SyncTest.json in Resources */, - 0F359993257BE2D100B3DB89 /* Entry.json in Resources */, - 0F359994257BE2EE00B3DB89 /* QueryOn.json in Resources */, - 0F359991257BE29B00B3DB89 /* Asset.json in Resources */, - 0F359992257BE2A700B3DB89 /* ContentType.json in Resources */, - 0F4C0A87243C6990006604B7 /* config.json in Resources */, - 0F5794C2266A37120082815C /* Paragraph.Json in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 0F4A75E9241BAE6C00E3A024 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 0F4A75F1241BAE6C00E3A024 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 0F1DCC7A243D9BD400EED404 /* SyncTest.json in Resources */, - 0F244F9E244062B4003C3F26 /* ContentType.json in Resources */, - 0FFBB4482446F9A4000D2795 /* Asset.json in Resources */, - 0F50EA17244ED7F500E5D705 /* QueryOn.json in Resources */, - 0F796C532449EA8700EA04D5 /* Entry.json in Resources */, - 0F4C0A88243C6990006604B7 /* config.json in Resources */, - 0F5794C3266A37120082815C /* Paragraph.Json in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 0F4A7605241BAFE000E3A024 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 0F4A760D241BAFE000E3A024 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 0F1DCC7B243D9BD400EED404 /* SyncTest.json in Resources */, - 0F244F9F244062B4003C3F26 /* ContentType.json in Resources */, - 0FFBB4492446F9A4000D2795 /* Asset.json in Resources */, - 0F50EA18244ED7F500E5D705 /* QueryOn.json in Resources */, - 0F796C542449EA8700EA04D5 /* Entry.json in Resources */, - 0F4C0A89243C6990006604B7 /* config.json in Resources */, - 0F5794C4266A37120082815C /* Paragraph.Json in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 0F4A7621241BB0A300E3A024 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXResourcesBuildPhase section */ - -/* Begin PBXSourcesBuildPhase section */ - 0F4A75C7241BAC4300E3A024 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 0F7138D12424E98D00B314B0 /* ParameterEncoding.swift in Sources */, - 0FFA5D98241F8EB2003B3AF5 /* Entry.swift in Sources */, - 0F02466F243210E200F72181 /* ImageParameter.swift in Sources */, - 0FFA5D63241F5575003B3AF5 /* CSDefinitions.swift in Sources */, - 47C6EFC22C0B5B9400F0D5CF /* Taxonomy.swift in Sources */, - 0FFA5D7A241F7033003B3AF5 /* ContentType.swift in Sources */, - 0F0246662431F37300F72181 /* ImageTransform.swift in Sources */, - 0F4FBCA42420B5F4007B8CAE /* Utils.swift in Sources */, - 0F4C0A7C243C4579006604B7 /* Error.swift in Sources */, - 0F4C0A81243C470F006604B7 /* ContentstackLogger.swift in Sources */, - 0FFA5D84241F808F003B3AF5 /* Asset.swift in Sources */, - 0FFA5D57241F5085003B3AF5 /* ContentstackConfig.swift in Sources */, - 0F4FBCB32420D2F1007B8CAE /* QueryOperation.swift in Sources */, - 0FB4CAC924332C5200A385B1 /* ImageOperation.swift in Sources */, - 0F4A245C24224D3100159C24 /* ContentstackResponse.swift in Sources */, - 0FFA5D93241F8214003B3AF5 /* EndPoint.swift in Sources */, - 0FFA5DB4241F99F9003B3AF5 /* FatalError.swift in Sources */, - 0F024674243217D800F72181 /* ImageTransformError.swift in Sources */, - 0FFA5D74241F6BFA003B3AF5 /* Date.swift in Sources */, - 0FFA5D5C241F5134003B3AF5 /* Stack.swift in Sources */, - 0F4FBCB82420F344007B8CAE /* QueryParameter.swift in Sources */, - 0F1DCC8A243DD20E00EED404 /* ContentTypeModel.swift in Sources */, - 0F1DCC80243DCF2500EED404 /* EntryModel.swift in Sources */, - 0F4FBCAD2420CD5F007B8CAE /* Query.swift in Sources */, - 0F2DB7E72451D353007B9815 /* ImageOperations.swift in Sources */, - 0FFA5D7F241F7060003B3AF5 /* SystemFields.swift in Sources */, - 0F244FA224406A2D003C3F26 /* SyncStack.swift in Sources */, - 0FFA5D70241F6BFA003B3AF5 /* Decodable.swift in Sources */, - 470253932C0C612A009BDF8B /* TaxonomyModel.swift in Sources */, - 0FD39D40242352F800E34826 /* QueryableRange.swift in Sources */, - 0FFA5D67241F5575003B3AF5 /* CSURLCache.swift in Sources */, - 0FC52DBA2452EDE000B33614 /* EntryQuaryable.swift in Sources */, - 0F4A762C241BB0D200E3A024 /* Contentstack.swift in Sources */, - 0F1DCC85243DD01900EED404 /* AssetModel.swift in Sources */, - 0FD39D45242356B100E34826 /* QueryProtocols.swift in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 0F4A75CF241BAC4300E3A024 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 0F60CA332428D02600ED67E6 /* QueryEntryType.swift in Sources */, - 4706575C2B5E78B300BBFF88 /* AssetQueryAPITest.swift in Sources */, - 0F60CA2F2428949C00ED67E6 /* EntryTest.swift in Sources */, - 0F244FA724406A4A003C3F26 /* EntryQueriableTest.swift in Sources */, - 0F463113243B044F001CE1FA /* SyncTest.swift in Sources */, - 0FFA5DBC241F9A6C003B3AF5 /* XCTestCase+Extension.swift in Sources */, - 0F4FBCA02420B0E4007B8CAE /* DateTest.swift in Sources */, - 0FFA5D4A241F4DED003B3AF5 /* ContentstackConfigTest.swift in Sources */, - 47B4DC622C232A8200370CFC /* TaxonomyTest.swift in Sources */, - 0F50EA1D244ED88C00E5D705 /* StackCacheAPITest.swift in Sources */, - 470657582B5E788400BBFF88 /* EntryAPITest.swift in Sources */, - 0F096B14243610470094F042 /* ImageTransformTestAdditional.swift in Sources */, - 0FD39D4A24237A0400E34826 /* ContentTypeQueryTest.swift in Sources */, - 0FFBB44C24470C43000D2795 /* ContentStackLogTest.swift in Sources */, - 0F77CFB824373B8A00C57764 /* ImageTransformEquatableTest.swift in Sources */, - 0F02466B243201B500F72181 /* ImageTransformTest.swift in Sources */, - 47AAE0902B60420E0098655A /* SyncAPITest.swift in Sources */, - 470657542B5E785C00BBFF88 /* ContentTypeQueryAPITest.swift in Sources */, - 470657602B5E797300BBFF88 /* ContentstackTest.swift in Sources */, - 0F4FBCA92420B615007B8CAE /* UtilsTest.swift in Sources */, - 0F7138CD2424A94000B314B0 /* QueryTest.swift in Sources */, - 0F50EA0E244EC3DD00E5D705 /* Session.swift in Sources */, - 0FFA5D9F241F8FFE003B3AF5 /* ContentTypeTest.swift in Sources */, - 0F4A7646241BB3CB00E3A024 /* ContentstackTests.swift in Sources */, - 0F7138C52424A70C00B314B0 /* AssetQueryTest.swift in Sources */, - 0FFA5D8F241F8123003B3AF5 /* StackTest.swift in Sources */, - 0FFA5DA3241F90BF003B3AF5 /* SutBuilder.swift in Sources */, - 0F38D7E0242C7C9E00232D7F /* Product.swift in Sources */, - 0F38D7E4242C831300232D7F /* AssetTest.swift in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 0F4A75E7241BAE6C00E3A024 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 0F7138D22424E98D00B314B0 /* ParameterEncoding.swift in Sources */, - 0FFA5D99241F8EB2003B3AF5 /* Entry.swift in Sources */, - 0F024670243210E200F72181 /* ImageParameter.swift in Sources */, - 0FFA5D64241F5575003B3AF5 /* CSDefinitions.swift in Sources */, - 47C6EFC32C0B5B9400F0D5CF /* Taxonomy.swift in Sources */, - 0FFA5D7B241F7033003B3AF5 /* ContentType.swift in Sources */, - 0F0246672431F37300F72181 /* ImageTransform.swift in Sources */, - 0F4FBCA52420B5F4007B8CAE /* Utils.swift in Sources */, - 0F4C0A7D243C4584006604B7 /* Error.swift in Sources */, - 0F4C0A82243C470F006604B7 /* ContentstackLogger.swift in Sources */, - 0FFA5D85241F808F003B3AF5 /* Asset.swift in Sources */, - 0FFA5D58241F5085003B3AF5 /* ContentstackConfig.swift in Sources */, - 0F4FBCB42420D2F1007B8CAE /* QueryOperation.swift in Sources */, - 0FB4CACA24332C5200A385B1 /* ImageOperation.swift in Sources */, - 0F4A245D24224D3100159C24 /* ContentstackResponse.swift in Sources */, - 0FFA5D94241F8214003B3AF5 /* EndPoint.swift in Sources */, - 0FFA5DB6241F99F9003B3AF5 /* FatalError.swift in Sources */, - 0F024675243217D800F72181 /* ImageTransformError.swift in Sources */, - 0FFA5D75241F6BFA003B3AF5 /* Date.swift in Sources */, - 0FFA5D5D241F5134003B3AF5 /* Stack.swift in Sources */, - 0F4FBCB92420F344007B8CAE /* QueryParameter.swift in Sources */, - 0F1DCC8B243DD20E00EED404 /* ContentTypeModel.swift in Sources */, - 0F1DCC81243DCF2500EED404 /* EntryModel.swift in Sources */, - 0F4FBCAE2420CD5F007B8CAE /* Query.swift in Sources */, - 0F2DB7E82451D353007B9815 /* ImageOperations.swift in Sources */, - 0FFA5D80241F7060003B3AF5 /* SystemFields.swift in Sources */, - 0F244FA324406A2D003C3F26 /* SyncStack.swift in Sources */, - 0FFA5D71241F6BFA003B3AF5 /* Decodable.swift in Sources */, - 470253942C0C612A009BDF8B /* TaxonomyModel.swift in Sources */, - 0FD39D41242352F800E34826 /* QueryableRange.swift in Sources */, - 0FFA5D68241F5575003B3AF5 /* CSURLCache.swift in Sources */, - 0FC52DBB2452EDE000B33614 /* EntryQuaryable.swift in Sources */, - 0F4A762D241BB0D200E3A024 /* Contentstack.swift in Sources */, - 0F1DCC86243DD01900EED404 /* AssetModel.swift in Sources */, - 0FD39D46242356B100E34826 /* QueryProtocols.swift in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 0F4A75EF241BAE6C00E3A024 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 0F60CA342428D02600ED67E6 /* QueryEntryType.swift in Sources */, - 470657552B5E785C00BBFF88 /* ContentTypeQueryAPITest.swift in Sources */, - 0F60CA302428949C00ED67E6 /* EntryTest.swift in Sources */, - 0F244FA824406A4A003C3F26 /* EntryQueriableTest.swift in Sources */, - 0F463114243B044F001CE1FA /* SyncTest.swift in Sources */, - 47AAE0912B60420E0098655A /* SyncAPITest.swift in Sources */, - 0FFA5DBD241F9A6C003B3AF5 /* XCTestCase+Extension.swift in Sources */, - 0F4FBCA12420B0E4007B8CAE /* DateTest.swift in Sources */, - 47B4DC632C232A8200370CFC /* TaxonomyTest.swift in Sources */, - 0FFA5D90241F8126003B3AF5 /* ContentstackConfigTest.swift in Sources */, - 0F50EA1E244ED88C00E5D705 /* StackCacheAPITest.swift in Sources */, - 0F096B15243610470094F042 /* ImageTransformTestAdditional.swift in Sources */, - 0FD39D4B24237A0400E34826 /* ContentTypeQueryTest.swift in Sources */, - 0FFBB44D24470C43000D2795 /* ContentStackLogTest.swift in Sources */, - 4706575D2B5E78B300BBFF88 /* AssetQueryAPITest.swift in Sources */, - 0F77CFB924373B8F00C57764 /* ImageTransformEquatableTest.swift in Sources */, - 0F02466C243201B500F72181 /* ImageTransformTest.swift in Sources */, - 0F4FBCAA2420B615007B8CAE /* UtilsTest.swift in Sources */, - 470657592B5E788400BBFF88 /* EntryAPITest.swift in Sources */, - 0F50EA0F244EC3DD00E5D705 /* Session.swift in Sources */, - 0F7138CE2424A94000B314B0 /* QueryTest.swift in Sources */, - 0FFA5DA0241F8FFE003B3AF5 /* ContentTypeTest.swift in Sources */, - 0FFA5D8E241F8122003B3AF5 /* StackTest.swift in Sources */, - 470657612B5E797300BBFF88 /* ContentstackTest.swift in Sources */, - 0F7138C62424A70C00B314B0 /* AssetQueryTest.swift in Sources */, - 0F4A7647241BB3CC00E3A024 /* ContentstackTests.swift in Sources */, - 0FFA5DA4241F90BF003B3AF5 /* SutBuilder.swift in Sources */, - 0F38D7E1242C7C9E00232D7F /* Product.swift in Sources */, - 0F38D7E5242C831A00232D7F /* AssetTest.swift in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 0F4A7603241BAFE000E3A024 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 0F7138D32424E98D00B314B0 /* ParameterEncoding.swift in Sources */, - 0FFA5D9A241F8EB2003B3AF5 /* Entry.swift in Sources */, - 0F024671243210E200F72181 /* ImageParameter.swift in Sources */, - 0FFA5D65241F5575003B3AF5 /* CSDefinitions.swift in Sources */, - 47C6EFC42C0B5B9400F0D5CF /* Taxonomy.swift in Sources */, - 0FFA5D7C241F7033003B3AF5 /* ContentType.swift in Sources */, - 0F0246682431F37300F72181 /* ImageTransform.swift in Sources */, - 0F4FBCA62420B5F4007B8CAE /* Utils.swift in Sources */, - 0F4C0A7E243C4585006604B7 /* Error.swift in Sources */, - 0F4C0A83243C470F006604B7 /* ContentstackLogger.swift in Sources */, - 0FFA5D86241F808F003B3AF5 /* Asset.swift in Sources */, - 0FFA5D59241F5085003B3AF5 /* ContentstackConfig.swift in Sources */, - 0F4FBCB52420D2F1007B8CAE /* QueryOperation.swift in Sources */, - 0FB4CACB24332C5200A385B1 /* ImageOperation.swift in Sources */, - 0F4A245E24224D3100159C24 /* ContentstackResponse.swift in Sources */, - 0FFA5D95241F8214003B3AF5 /* EndPoint.swift in Sources */, - 0FFA5DB8241F99F9003B3AF5 /* FatalError.swift in Sources */, - 0F024676243217D800F72181 /* ImageTransformError.swift in Sources */, - 0FFA5D76241F6BFA003B3AF5 /* Date.swift in Sources */, - 0FFA5D5E241F5134003B3AF5 /* Stack.swift in Sources */, - 0F4FBCBA2420F344007B8CAE /* QueryParameter.swift in Sources */, - 0F1DCC8C243DD20E00EED404 /* ContentTypeModel.swift in Sources */, - 0F1DCC82243DCF2500EED404 /* EntryModel.swift in Sources */, - 0F4FBCAF2420CD5F007B8CAE /* Query.swift in Sources */, - 0F2DB7E92451D353007B9815 /* ImageOperations.swift in Sources */, - 0FFA5D81241F7060003B3AF5 /* SystemFields.swift in Sources */, - 0F244FA424406A2D003C3F26 /* SyncStack.swift in Sources */, - 0FFA5D72241F6BFA003B3AF5 /* Decodable.swift in Sources */, - 470253952C0C612A009BDF8B /* TaxonomyModel.swift in Sources */, - 0FD39D42242352F800E34826 /* QueryableRange.swift in Sources */, - 0FFA5D69241F5575003B3AF5 /* CSURLCache.swift in Sources */, - 0FC52DBC2452EDE000B33614 /* EntryQuaryable.swift in Sources */, - 0F4A762E241BB0D200E3A024 /* Contentstack.swift in Sources */, - 0F1DCC87243DD01900EED404 /* AssetModel.swift in Sources */, - 0FD39D47242356B100E34826 /* QueryProtocols.swift in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 0F4A760B241BAFE000E3A024 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 0F60CA352428D02600ED67E6 /* QueryEntryType.swift in Sources */, - 470657562B5E785C00BBFF88 /* ContentTypeQueryAPITest.swift in Sources */, - 0F60CA312428949C00ED67E6 /* EntryTest.swift in Sources */, - 0F244FA924406A4A003C3F26 /* EntryQueriableTest.swift in Sources */, - 0F463115243B044F001CE1FA /* SyncTest.swift in Sources */, - 47AAE0922B60420E0098655A /* SyncAPITest.swift in Sources */, - 0FFA5DBE241F9A6C003B3AF5 /* XCTestCase+Extension.swift in Sources */, - 0F4FBCA22420B0E4007B8CAE /* DateTest.swift in Sources */, - 47B4DC642C232A8200370CFC /* TaxonomyTest.swift in Sources */, - 0FFA5D91241F8127003B3AF5 /* ContentstackConfigTest.swift in Sources */, - 0F50EA1F244ED88C00E5D705 /* StackCacheAPITest.swift in Sources */, - 0F096B16243610470094F042 /* ImageTransformTestAdditional.swift in Sources */, - 0FD39D4C24237A0400E34826 /* ContentTypeQueryTest.swift in Sources */, - 0FFBB44E24470C43000D2795 /* ContentStackLogTest.swift in Sources */, - 4706575E2B5E78B300BBFF88 /* AssetQueryAPITest.swift in Sources */, - 0F77CFBA24373B9000C57764 /* ImageTransformEquatableTest.swift in Sources */, - 0F02466D243201B500F72181 /* ImageTransformTest.swift in Sources */, - 0F4FBCAB2420B615007B8CAE /* UtilsTest.swift in Sources */, - 4706575A2B5E788400BBFF88 /* EntryAPITest.swift in Sources */, - 0F50EA10244EC3DD00E5D705 /* Session.swift in Sources */, - 0F7138CF2424A94000B314B0 /* QueryTest.swift in Sources */, - 0FFA5DA1241F8FFE003B3AF5 /* ContentTypeTest.swift in Sources */, - 0FFA5D8D241F8122003B3AF5 /* StackTest.swift in Sources */, - 470657622B5E797300BBFF88 /* ContentstackTest.swift in Sources */, - 0F7138C72424A70C00B314B0 /* AssetQueryTest.swift in Sources */, - 0F4A7648241BB3CE00E3A024 /* ContentstackTests.swift in Sources */, - 0FFA5DA5241F90BF003B3AF5 /* SutBuilder.swift in Sources */, - 0F38D7E2242C7C9E00232D7F /* Product.swift in Sources */, - 0F38D7E6242C831B00232D7F /* AssetTest.swift in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 0F4A761F241BB0A300E3A024 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 0F7138D42424E98D00B314B0 /* ParameterEncoding.swift in Sources */, - 0FFA5D9B241F8EB2003B3AF5 /* Entry.swift in Sources */, - 0F024672243210E200F72181 /* ImageParameter.swift in Sources */, - 0FFA5D66241F5575003B3AF5 /* CSDefinitions.swift in Sources */, - 47C6EFC52C0B5B9400F0D5CF /* Taxonomy.swift in Sources */, - 0FFA5D7D241F7033003B3AF5 /* ContentType.swift in Sources */, - 0F0246692431F37300F72181 /* ImageTransform.swift in Sources */, - 0F4FBCA72420B5F4007B8CAE /* Utils.swift in Sources */, - 0F4C0A7F243C4586006604B7 /* Error.swift in Sources */, - 0F4C0A84243C470F006604B7 /* ContentstackLogger.swift in Sources */, - 0FFA5D87241F808F003B3AF5 /* Asset.swift in Sources */, - 0FFA5D5A241F5085003B3AF5 /* ContentstackConfig.swift in Sources */, - 0F4FBCB62420D2F1007B8CAE /* QueryOperation.swift in Sources */, - 0FB4CACC24332C5200A385B1 /* ImageOperation.swift in Sources */, - 0F4A245F24224D3100159C24 /* ContentstackResponse.swift in Sources */, - 0FFA5D96241F8214003B3AF5 /* EndPoint.swift in Sources */, - 0FFA5DBA241F99F9003B3AF5 /* FatalError.swift in Sources */, - 0F024677243217D800F72181 /* ImageTransformError.swift in Sources */, - 0FFA5D77241F6BFA003B3AF5 /* Date.swift in Sources */, - 0FFA5D5F241F5134003B3AF5 /* Stack.swift in Sources */, - 0F4FBCBB2420F344007B8CAE /* QueryParameter.swift in Sources */, - 0F1DCC8D243DD20E00EED404 /* ContentTypeModel.swift in Sources */, - 0F1DCC83243DCF2500EED404 /* EntryModel.swift in Sources */, - 0F4FBCB02420CD5F007B8CAE /* Query.swift in Sources */, - 0F2DB7EA2451D353007B9815 /* ImageOperations.swift in Sources */, - 0FFA5D82241F7060003B3AF5 /* SystemFields.swift in Sources */, - 0F244FA524406A2D003C3F26 /* SyncStack.swift in Sources */, - 0FFA5D73241F6BFA003B3AF5 /* Decodable.swift in Sources */, - 470253962C0C612A009BDF8B /* TaxonomyModel.swift in Sources */, - 0FD39D43242352F800E34826 /* QueryableRange.swift in Sources */, - 0FFA5D6A241F5575003B3AF5 /* CSURLCache.swift in Sources */, - 0FC52DBD2452EDE000B33614 /* EntryQuaryable.swift in Sources */, - 0F4A762F241BB0D200E3A024 /* Contentstack.swift in Sources */, - 0F1DCC88243DD01900EED404 /* AssetModel.swift in Sources */, - 0FD39D48242356B100E34826 /* QueryProtocols.swift in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXSourcesBuildPhase section */ - -/* Begin PBXTargetDependency section */ - 0F4A75F6241BAE6C00E3A024 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 0F4A75EA241BAE6C00E3A024 /* Contentstack macOS */; - targetProxy = 0F4A75F5241BAE6C00E3A024 /* PBXContainerItemProxy */; - }; - 0F4A7612241BAFE000E3A024 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 0F4A7606241BAFE000E3A024 /* Contentstack tvOS */; - targetProxy = 0F4A7611241BAFE000E3A024 /* PBXContainerItemProxy */; - }; - 0F4A764D241BB42100E3A024 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 0F4A75CA241BAC4300E3A024 /* Contentstack iOS */; - targetProxy = 0F4A764C241BB42100E3A024 /* PBXContainerItemProxy */; - }; -/* End PBXTargetDependency section */ - -/* Begin XCBuildConfiguration section */ - 0F4A75DC241BAC4300E3A024 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 0F4FBC9A2420A17F007B8CAE /* Config.xcconfig */; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_ANALYZER_NONNULL = YES; - CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_WEAK = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_COMMA = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_DOCUMENTATION_COMMENTS = YES; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_STRICT_PROTOTYPES = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - CODE_SIGN_IDENTITY = ""; - CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DEVELOPMENT_TEAM = SMAKUMV86W; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_MODULE_VERIFIER = YES; - ENABLE_STRICT_OBJC_MSGSEND = YES; - ENABLE_TESTABILITY = YES; - GCC_C_LANGUAGE_STANDARD = gnu11; - GCC_DYNAMIC_NO_PIC = NO; - GCC_NO_COMMON_BLOCKS = YES; - GCC_PREPROCESSOR_DEFINITIONS = ( - "DEBUG=1", - "$(inherited)", - ); - 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; - INFOPLIST_FILE = "Supporting Files/Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MARKETING_VERSION = 1.2.5; - MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++14"; - MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; - MTL_FAST_MATH = YES; - PRODUCT_BUNDLE_IDENTIFIER = com.contentstack.Contentstack; - PRODUCT_NAME = Contentstack; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = "iphonesimulator iphoneos"; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; - SWIFT_OPTIMIZATION_LEVEL = "-Onone"; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - TVOS_DEPLOYMENT_TARGET = 12.0; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - WATCHOS_DEPLOYMENT_TARGET = 2.0; - }; - name = Debug; - }; - 0F4A75DD241BAC4300E3A024 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 0F4FBC9A2420A17F007B8CAE /* Config.xcconfig */; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_ANALYZER_NONNULL = YES; - CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_WEAK = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_COMMA = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_DOCUMENTATION_COMMENTS = YES; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_STRICT_PROTOTYPES = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - CODE_SIGN_IDENTITY = ""; - CODE_SIGN_STYLE = Automatic; - COPY_PHASE_STRIP = NO; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DEVELOPMENT_TEAM = SMAKUMV86W; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_MODULE_VERIFIER = YES; - ENABLE_NS_ASSERTIONS = NO; - ENABLE_STRICT_OBJC_MSGSEND = YES; - ENABLE_TESTABILITY = YES; - GCC_C_LANGUAGE_STANDARD = gnu11; - 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; - INFOPLIST_FILE = "Supporting Files/Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MARKETING_VERSION = 1.2.5; - MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++14"; - MTL_ENABLE_DEBUG_INFO = NO; - MTL_FAST_MATH = YES; - PRODUCT_BUNDLE_IDENTIFIER = com.contentstack.Contentstack; - PRODUCT_NAME = Contentstack; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = "iphonesimulator iphoneos"; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - TVOS_DEPLOYMENT_TARGET = 12.0; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - WATCHOS_DEPLOYMENT_TARGET = 2.0; - }; - name = Release; - }; - 0F4A75DE241BAC4300E3A024 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 0F4FBC9A2420A17F007B8CAE /* Config.xcconfig */; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - "ARCHS[sdk=*]" = "$(ARCHS_STANDARD)"; - CLANG_ANALYZER_NONNULL = YES; - CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_WEAK = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_COMMA = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_DOCUMENTATION_COMMENTS = YES; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_STRICT_PROTOTYPES = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - "CODE_SIGN_IDENTITY[sdk=macosx*]" = "-"; - CODE_SIGN_STYLE = Automatic; - DEVELOPMENT_TEAM = SMAKUMV86W; - ENABLE_STRICT_OBJC_MSGSEND = YES; - ENABLE_TESTABILITY = YES; - GCC_C_LANGUAGE_STANDARD = gnu11; - GCC_DYNAMIC_NO_PIC = NO; - GCC_NO_COMMON_BLOCKS = YES; - GCC_PREPROCESSOR_DEFINITIONS = ( - "DEBUG=1", - "$(inherited)", - ); - 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; - INFOPLIST_FILE = Tests/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; - MTL_FAST_MATH = YES; - PRODUCT_BUNDLE_IDENTIFIER = "com.contentstack.Contentstack-iOSTests"; - PRODUCT_NAME = "$(TARGET_NAME)"; - SDKROOT = iphoneos; - SUPPORTED_PLATFORMS = "iphonesimulator iphoneos"; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 0F4A75DF241BAC4300E3A024 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 0F4FBC9A2420A17F007B8CAE /* Config.xcconfig */; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_ANALYZER_NONNULL = YES; - CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_WEAK = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_COMMA = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_DOCUMENTATION_COMMENTS = YES; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_STRICT_PROTOTYPES = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - "CODE_SIGN_IDENTITY[sdk=macosx*]" = "-"; - CODE_SIGN_STYLE = Automatic; - COPY_PHASE_STRIP = NO; - DEVELOPMENT_TEAM = SMAKUMV86W; - ENABLE_NS_ASSERTIONS = NO; - ENABLE_STRICT_OBJC_MSGSEND = YES; - ENABLE_TESTABILITY = YES; - "EXCLUDED_ARCHS[sdk=*]" = arm64; - GCC_C_LANGUAGE_STANDARD = gnu11; - 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; - INFOPLIST_FILE = Tests/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MTL_ENABLE_DEBUG_INFO = NO; - MTL_FAST_MATH = YES; - PRODUCT_BUNDLE_IDENTIFIER = "com.contentstack.Contentstack-iOSTests"; - PRODUCT_NAME = "$(TARGET_NAME)"; - SDKROOT = iphoneos; - SUPPORTED_PLATFORMS = "iphonesimulator iphoneos"; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 0F4A75FD241BAE6C00E3A024 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 0F4FBC9A2420A17F007B8CAE /* Config.xcconfig */; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_ANALYZER_NONNULL = YES; - CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_WEAK = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_COMMA = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_DOCUMENTATION_COMMENTS = YES; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_STRICT_PROTOTYPES = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - CODE_SIGN_STYLE = Automatic; - COMBINE_HIDPI_IMAGES = YES; - CURRENT_PROJECT_VERSION = 1; - DEAD_CODE_STRIPPING = YES; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_MODULE_VERIFIER = YES; - ENABLE_STRICT_OBJC_MSGSEND = YES; - ENABLE_TESTABILITY = YES; - GCC_C_LANGUAGE_STANDARD = gnu11; - GCC_DYNAMIC_NO_PIC = NO; - GCC_NO_COMMON_BLOCKS = YES; - GCC_PREPROCESSOR_DEFINITIONS = ( - "DEBUG=1", - "$(inherited)", - ); - 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; - INFOPLIST_FILE = "Supporting Files/Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/../Frameworks", - "@loader_path/Frameworks", - ); - MACOSX_DEPLOYMENT_TARGET = 13.0; - MARKETING_VERSION = 1.2.5; - MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++14"; - MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; - MTL_FAST_MATH = YES; - PRODUCT_BUNDLE_IDENTIFIER = com.contentstack.Contentstack; - PRODUCT_NAME = Contentstack; - SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = macosx; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; - SWIFT_OPTIMIZATION_LEVEL = "-Onone"; - SWIFT_VERSION = 5.0; - TVOS_DEPLOYMENT_TARGET = 12.0; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - WATCHOS_DEPLOYMENT_TARGET = 2.0; - }; - name = Debug; - }; - 0F4A75FE241BAE6C00E3A024 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 0F4FBC9A2420A17F007B8CAE /* Config.xcconfig */; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_ANALYZER_NONNULL = YES; - CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_WEAK = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_COMMA = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_DOCUMENTATION_COMMENTS = YES; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_STRICT_PROTOTYPES = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - CODE_SIGN_STYLE = Automatic; - COMBINE_HIDPI_IMAGES = YES; - COPY_PHASE_STRIP = NO; - CURRENT_PROJECT_VERSION = 1; - DEAD_CODE_STRIPPING = YES; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_MODULE_VERIFIER = YES; - ENABLE_NS_ASSERTIONS = NO; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_C_LANGUAGE_STANDARD = gnu11; - 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; - INFOPLIST_FILE = "Supporting Files/Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/../Frameworks", - "@loader_path/Frameworks", - ); - MACOSX_DEPLOYMENT_TARGET = 13.0; - MARKETING_VERSION = 1.2.5; - MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++14"; - MTL_ENABLE_DEBUG_INFO = NO; - MTL_FAST_MATH = YES; - PRODUCT_BUNDLE_IDENTIFIER = com.contentstack.Contentstack; - PRODUCT_NAME = Contentstack; - SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = macosx; - SWIFT_VERSION = 5.0; - TVOS_DEPLOYMENT_TARGET = 12.0; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - WATCHOS_DEPLOYMENT_TARGET = 2.0; - }; - name = Release; - }; - 0F4A7600241BAE6C00E3A024 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_ANALYZER_NONNULL = YES; - CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_WEAK = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_COMMA = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_DOCUMENTATION_COMMENTS = YES; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_STRICT_PROTOTYPES = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - CODE_SIGN_STYLE = Automatic; - COMBINE_HIDPI_IMAGES = YES; - DEAD_CODE_STRIPPING = YES; - ENABLE_STRICT_OBJC_MSGSEND = YES; - ENABLE_TESTABILITY = YES; - GCC_C_LANGUAGE_STANDARD = gnu11; - GCC_DYNAMIC_NO_PIC = NO; - GCC_NO_COMMON_BLOCKS = YES; - GCC_PREPROCESSOR_DEFINITIONS = ( - "DEBUG=1", - "$(inherited)", - ); - 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; - INFOPLIST_FILE = Tests/Info.plist; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/../Frameworks", - "@loader_path/../Frameworks", - ); - MACOSX_DEPLOYMENT_TARGET = 13.0; - MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; - MTL_FAST_MATH = YES; - PRODUCT_BUNDLE_IDENTIFIER = "com.contentstack.Contentstack-macOSTests"; - PRODUCT_NAME = "$(TARGET_NAME)"; - SUPPORTED_PLATFORMS = macosx; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; - SWIFT_VERSION = 5.0; - }; - name = Debug; - }; - 0F4A7601241BAE6C00E3A024 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_ANALYZER_NONNULL = YES; - CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_WEAK = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_COMMA = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_DOCUMENTATION_COMMENTS = YES; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_STRICT_PROTOTYPES = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - CODE_SIGN_STYLE = Automatic; - COMBINE_HIDPI_IMAGES = YES; - COPY_PHASE_STRIP = NO; - DEAD_CODE_STRIPPING = YES; - ENABLE_NS_ASSERTIONS = NO; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_C_LANGUAGE_STANDARD = gnu11; - 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; - INFOPLIST_FILE = Tests/Info.plist; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/../Frameworks", - "@loader_path/../Frameworks", - ); - MACOSX_DEPLOYMENT_TARGET = 13.0; - MTL_ENABLE_DEBUG_INFO = NO; - MTL_FAST_MATH = YES; - PRODUCT_BUNDLE_IDENTIFIER = "com.contentstack.Contentstack-macOSTests"; - PRODUCT_NAME = "$(TARGET_NAME)"; - SUPPORTED_PLATFORMS = macosx; - SWIFT_VERSION = 5.0; - }; - name = Release; - }; - 0F4A7619241BAFE000E3A024 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_ANALYZER_NONNULL = YES; - CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_WEAK = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_COMMA = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_DOCUMENTATION_COMMENTS = YES; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_STRICT_PROTOTYPES = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - CODE_SIGN_IDENTITY = ""; - CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_MODULE_VERIFIER = YES; - ENABLE_STRICT_OBJC_MSGSEND = YES; - ENABLE_TESTABILITY = YES; - GCC_C_LANGUAGE_STANDARD = gnu11; - GCC_DYNAMIC_NO_PIC = NO; - GCC_NO_COMMON_BLOCKS = YES; - GCC_PREPROCESSOR_DEFINITIONS = ( - "DEBUG=1", - "$(inherited)", - ); - 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; - INFOPLIST_FILE = "Supporting Files/Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MARKETING_VERSION = 1.2.5; - MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++14"; - MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; - MTL_FAST_MATH = YES; - PRODUCT_BUNDLE_IDENTIFIER = "com.contentstack.Contentstack-tvOS"; - PRODUCT_NAME = Contentstack; - SDKROOT = appletvos; - SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = "appletvsimulator appletvos"; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; - SWIFT_OPTIMIZATION_LEVEL = "-Onone"; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = 3; - TVOS_DEPLOYMENT_TARGET = 13.0; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - WATCHOS_DEPLOYMENT_TARGET = 2.0; - }; - name = Debug; - }; - 0F4A761A241BAFE000E3A024 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_ANALYZER_NONNULL = YES; - CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_WEAK = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_COMMA = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_DOCUMENTATION_COMMENTS = YES; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_STRICT_PROTOTYPES = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - CODE_SIGN_IDENTITY = ""; - CODE_SIGN_STYLE = Automatic; - COPY_PHASE_STRIP = NO; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_MODULE_VERIFIER = YES; - ENABLE_NS_ASSERTIONS = NO; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_C_LANGUAGE_STANDARD = gnu11; - 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; - INFOPLIST_FILE = "Supporting Files/Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MARKETING_VERSION = 1.2.5; - MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++14"; - MTL_ENABLE_DEBUG_INFO = NO; - MTL_FAST_MATH = YES; - PRODUCT_BUNDLE_IDENTIFIER = "com.contentstack.Contentstack-tvOS"; - PRODUCT_NAME = Contentstack; - SDKROOT = appletvos; - SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = "appletvsimulator appletvos"; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = 3; - TVOS_DEPLOYMENT_TARGET = 13.0; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - WATCHOS_DEPLOYMENT_TARGET = 2.0; - }; - name = Release; - }; - 0F4A761C241BAFE000E3A024 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_ANALYZER_NONNULL = YES; - CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_WEAK = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_COMMA = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_DOCUMENTATION_COMMENTS = YES; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_STRICT_PROTOTYPES = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - CODE_SIGN_STYLE = Automatic; - ENABLE_STRICT_OBJC_MSGSEND = YES; - ENABLE_TESTABILITY = YES; - GCC_C_LANGUAGE_STANDARD = gnu11; - GCC_DYNAMIC_NO_PIC = NO; - GCC_NO_COMMON_BLOCKS = YES; - GCC_PREPROCESSOR_DEFINITIONS = ( - "DEBUG=1", - "$(inherited)", - ); - 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; - INFOPLIST_FILE = Tests/Info.plist; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; - MTL_FAST_MATH = YES; - PRODUCT_BUNDLE_IDENTIFIER = "com.contentstack.Contentstack-tvOSTests"; - PRODUCT_NAME = "$(TARGET_NAME)"; - SDKROOT = appletvos; - SUPPORTED_PLATFORMS = "appletvsimulator appletvos"; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = 3; - TVOS_DEPLOYMENT_TARGET = 13.0; - }; - name = Debug; - }; - 0F4A761D241BAFE000E3A024 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_ANALYZER_NONNULL = YES; - CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_WEAK = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_COMMA = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_DOCUMENTATION_COMMENTS = YES; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_STRICT_PROTOTYPES = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - CODE_SIGN_STYLE = Automatic; - COPY_PHASE_STRIP = NO; - ENABLE_NS_ASSERTIONS = NO; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_C_LANGUAGE_STANDARD = gnu11; - 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; - INFOPLIST_FILE = Tests/Info.plist; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MTL_ENABLE_DEBUG_INFO = NO; - MTL_FAST_MATH = YES; - PRODUCT_BUNDLE_IDENTIFIER = "com.contentstack.Contentstack-tvOSTests"; - PRODUCT_NAME = "$(TARGET_NAME)"; - SDKROOT = appletvos; - SUPPORTED_PLATFORMS = "appletvsimulator appletvos"; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = 3; - TVOS_DEPLOYMENT_TARGET = 13.0; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 0F4A7629241BB0A300E3A024 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 0F4FBC9A2420A17F007B8CAE /* Config.xcconfig */; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - APPLICATION_EXTENSION_API_ONLY = YES; - CLANG_ANALYZER_NONNULL = YES; - CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_WEAK = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_COMMA = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_DOCUMENTATION_COMMENTS = YES; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_STRICT_PROTOTYPES = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - CODE_SIGN_IDENTITY = ""; - CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_MODULE_VERIFIER = YES; - ENABLE_STRICT_OBJC_MSGSEND = YES; - ENABLE_TESTABILITY = YES; - GCC_C_LANGUAGE_STANDARD = gnu11; - GCC_DYNAMIC_NO_PIC = NO; - GCC_NO_COMMON_BLOCKS = YES; - GCC_PREPROCESSOR_DEFINITIONS = ( - "DEBUG=1", - "$(inherited)", - ); - 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; - INFOPLIST_FILE = "Supporting Files/Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MARKETING_VERSION = 1.2.5; - MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++14"; - MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; - MTL_FAST_MATH = YES; - PRODUCT_BUNDLE_IDENTIFIER = "com.contentstack.Contentstack-watchOS"; - PRODUCT_NAME = Contentstack; - SDKROOT = watchos; - SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = "watchsimulator watchos"; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; - SWIFT_OPTIMIZATION_LEVEL = "-Onone"; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = 4; - TVOS_DEPLOYMENT_TARGET = 12.0; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - WATCHOS_DEPLOYMENT_TARGET = 6.0; - }; - name = Debug; - }; - 0F4A762A241BB0A300E3A024 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 0F4FBC9A2420A17F007B8CAE /* Config.xcconfig */; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - APPLICATION_EXTENSION_API_ONLY = YES; - CLANG_ANALYZER_NONNULL = YES; - CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_WEAK = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_COMMA = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_DOCUMENTATION_COMMENTS = YES; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_STRICT_PROTOTYPES = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - CODE_SIGN_IDENTITY = ""; - CODE_SIGN_STYLE = Automatic; - COPY_PHASE_STRIP = NO; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_MODULE_VERIFIER = YES; - ENABLE_NS_ASSERTIONS = NO; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_C_LANGUAGE_STANDARD = gnu11; - 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; - INFOPLIST_FILE = "Supporting Files/Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MARKETING_VERSION = 1.2.5; - MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++14"; - MTL_ENABLE_DEBUG_INFO = NO; - MTL_FAST_MATH = YES; - PRODUCT_BUNDLE_IDENTIFIER = "com.contentstack.Contentstack-watchOS"; - PRODUCT_NAME = Contentstack; - SDKROOT = watchos; - SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = "watchsimulator watchos"; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = 4; - TVOS_DEPLOYMENT_TARGET = 12.0; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - WATCHOS_DEPLOYMENT_TARGET = 6.0; - }; - name = Release; - }; - OBJ_3 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 0F4FBC9A2420A17F007B8CAE /* Config.xcconfig */; - buildSettings = { - ARCHS = "$(ARCHS_STANDARD)"; - "ARCHS[sdk=*]" = "$(ARCHS_STANDARD)"; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_COMMA = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_STRICT_PROTOTYPES = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - COMBINE_HIDPI_IMAGES = YES; - COPY_PHASE_STRIP = NO; - DEAD_CODE_STRIPPING = YES; - DEBUG_INFORMATION_FORMAT = dwarf; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_NS_ASSERTIONS = YES; - ENABLE_STRICT_OBJC_MSGSEND = YES; - ENABLE_TESTABILITY = YES; - ENABLE_USER_SCRIPT_SANDBOXING = YES; - "EXCLUDED_ARCHS[sdk=*]" = ""; - GCC_NO_COMMON_BLOCKS = YES; - GCC_OPTIMIZATION_LEVEL = 0; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "SWIFT_PACKAGE=1", - "DEBUG=1", - ); - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - MACOSX_DEPLOYMENT_TARGET = 13.0; - ONLY_ACTIVE_ARCH = YES; - OTHER_SWIFT_FLAGS = "$(inherited) -DXcode"; - PRODUCT_NAME = "$(TARGET_NAME)"; - SDKROOT = macosx; - SUPPORTED_PLATFORMS = "macosx iphoneos iphonesimulator appletvos appletvsimulator watchos watchsimulator"; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) SWIFT_PACKAGE DEBUG"; - SWIFT_OPTIMIZATION_LEVEL = "-Onone"; - TVOS_DEPLOYMENT_TARGET = 13.0; - USE_HEADERMAP = NO; - WATCHOS_DEPLOYMENT_TARGET = 6.0; - }; - name = Debug; - }; - OBJ_4 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 0F4FBC9A2420A17F007B8CAE /* Config.xcconfig */; - buildSettings = { - ARCHS = "$(ARCHS_STANDARD)"; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_COMMA = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_STRICT_PROTOTYPES = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - COMBINE_HIDPI_IMAGES = YES; - COPY_PHASE_STRIP = YES; - DEAD_CODE_STRIPPING = YES; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_STRICT_OBJC_MSGSEND = YES; - ENABLE_USER_SCRIPT_SANDBOXING = YES; - GCC_NO_COMMON_BLOCKS = YES; - GCC_OPTIMIZATION_LEVEL = s; - GCC_PREPROCESSOR_DEFINITIONS = ( - "$(inherited)", - "SWIFT_PACKAGE=1", - ); - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - MACOSX_DEPLOYMENT_TARGET = 13.0; - ONLY_ACTIVE_ARCH = YES; - OTHER_SWIFT_FLAGS = "$(inherited) -DXcode"; - PRODUCT_NAME = "$(TARGET_NAME)"; - SDKROOT = macosx; - SUPPORTED_PLATFORMS = "macosx iphoneos iphonesimulator appletvos appletvsimulator watchos watchsimulator"; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) SWIFT_PACKAGE"; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; - TVOS_DEPLOYMENT_TARGET = 13.0; - USE_HEADERMAP = NO; - WATCHOS_DEPLOYMENT_TARGET = 6.0; - }; - name = Release; - }; -/* End XCBuildConfiguration section */ - -/* Begin XCConfigurationList section */ - 0F4A75E0241BAC4300E3A024 /* Build configuration list for PBXNativeTarget "Contentstack iOS" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 0F4A75DC241BAC4300E3A024 /* Debug */, - 0F4A75DD241BAC4300E3A024 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Debug; - }; - 0F4A75E1241BAC4300E3A024 /* Build configuration list for PBXNativeTarget "Contentstack iOS Tests" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 0F4A75DE241BAC4300E3A024 /* Debug */, - 0F4A75DF241BAC4300E3A024 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Debug; - }; - 0F4A75FC241BAE6C00E3A024 /* Build configuration list for PBXNativeTarget "Contentstack macOS" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 0F4A75FD241BAE6C00E3A024 /* Debug */, - 0F4A75FE241BAE6C00E3A024 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Debug; - }; - 0F4A75FF241BAE6C00E3A024 /* Build configuration list for PBXNativeTarget "Contentstack macOS Tests" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 0F4A7600241BAE6C00E3A024 /* Debug */, - 0F4A7601241BAE6C00E3A024 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Debug; - }; - 0F4A7618241BAFE000E3A024 /* Build configuration list for PBXNativeTarget "Contentstack tvOS" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 0F4A7619241BAFE000E3A024 /* Debug */, - 0F4A761A241BAFE000E3A024 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Debug; - }; - 0F4A761B241BAFE000E3A024 /* Build configuration list for PBXNativeTarget "Contentstack tvOS Tests" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 0F4A761C241BAFE000E3A024 /* Debug */, - 0F4A761D241BAFE000E3A024 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Debug; - }; - 0F4A7628241BB0A300E3A024 /* Build configuration list for PBXNativeTarget "Contentstack watchOS" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 0F4A7629241BB0A300E3A024 /* Debug */, - 0F4A762A241BB0A300E3A024 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Debug; - }; - OBJ_2 /* Build configuration list for PBXProject "Contentstack" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - OBJ_3 /* Debug */, - OBJ_4 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Debug; - }; -/* End XCConfigurationList section */ - -/* Begin XCRemoteSwiftPackageReference section */ - 47D5614F2C9EF96D00DC085D /* XCRemoteSwiftPackageReference "contentstack-utils-swift" */ = { - isa = XCRemoteSwiftPackageReference; - repositoryURL = "https://github.com/contentstack/contentstack-utils-swift"; - requirement = { - branch = master; - kind = branch; - }; - }; - 47D561532C9EFA1400DC085D /* XCRemoteSwiftPackageReference "contentstack-swift-dvr" */ = { - isa = XCRemoteSwiftPackageReference; - repositoryURL = "https://github.com/contentstack/contentstack-swift-dvr.git"; - requirement = { - branch = master; - kind = branch; - }; - }; -/* End XCRemoteSwiftPackageReference section */ - -/* Begin XCSwiftPackageProductDependency section */ - 47B09C282CA9530100B8AB41 /* ContentstackUtils */ = { - isa = XCSwiftPackageProductDependency; - package = 47D5614F2C9EF96D00DC085D /* XCRemoteSwiftPackageReference "contentstack-utils-swift" */; - productName = ContentstackUtils; - }; - 47D561502C9EF97D00DC085D /* ContentstackUtils */ = { - isa = XCSwiftPackageProductDependency; - package = 47D5614F2C9EF96D00DC085D /* XCRemoteSwiftPackageReference "contentstack-utils-swift" */; - productName = ContentstackUtils; - }; - 47D561562C9EFA5900DC085D /* DVR */ = { - isa = XCSwiftPackageProductDependency; - package = 47D561532C9EFA1400DC085D /* XCRemoteSwiftPackageReference "contentstack-swift-dvr" */; - productName = DVR; - }; - 6750778D2D3E256A0076A066 /* DVR */ = { - isa = XCSwiftPackageProductDependency; - package = 47D561532C9EFA1400DC085D /* XCRemoteSwiftPackageReference "contentstack-swift-dvr" */; - productName = DVR; - }; -/* End XCSwiftPackageProductDependency section */ - }; - rootObject = OBJ_1 /* Project object */; -} diff --git a/Contentstack.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/Contentstack.xcodeproj/project.xcworkspace/contents.xcworkspacedata deleted file mode 100644 index 919434a6..00000000 --- a/Contentstack.xcodeproj/project.xcworkspace/contents.xcworkspacedata +++ /dev/null @@ -1,7 +0,0 @@ - - - - - diff --git a/Contentstack.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/Contentstack.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings deleted file mode 100644 index a72dc2b4..00000000 --- a/Contentstack.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings +++ /dev/null @@ -1,8 +0,0 @@ - - - - - IDEWorkspaceSharedSettings_AutocreateContextsIfNeeded - - - \ No newline at end of file diff --git a/Contentstack.xcodeproj/xcshareddata/xcschemes/Contentstack iOS Tests.xcscheme b/Contentstack.xcodeproj/xcshareddata/xcschemes/Contentstack iOS Tests.xcscheme deleted file mode 100644 index 77a5e57d..00000000 --- a/Contentstack.xcodeproj/xcshareddata/xcschemes/Contentstack iOS Tests.xcscheme +++ /dev/null @@ -1,59 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Contentstack.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/Contentstack.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist deleted file mode 100644 index 18d98100..00000000 --- a/Contentstack.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +++ /dev/null @@ -1,8 +0,0 @@ - - - - - IDEDidComputeMac32BitWarning - - - diff --git a/ContentstackSwift.xcworkspace/contents.xcworkspacedata b/ContentstackSwift.xcworkspace/contents.xcworkspacedata new file mode 100644 index 00000000..bba964bc --- /dev/null +++ b/ContentstackSwift.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,13 @@ + + + + + + + + + diff --git a/Contentstack.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/ContentstackSwift.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist similarity index 100% rename from Contentstack.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist rename to ContentstackSwift.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist diff --git a/Contentstack.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/ContentstackSwift.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings similarity index 100% rename from Contentstack.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings rename to ContentstackSwift.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings diff --git a/Contentstack.xcworkspace/xcshareddata/xcschemes/Contentstack iOS.xcscheme b/ContentstackSwift.xcworkspace/xcshareddata/xcschemes/Contentstack iOS.xcscheme similarity index 100% rename from Contentstack.xcworkspace/xcshareddata/xcschemes/Contentstack iOS.xcscheme rename to ContentstackSwift.xcworkspace/xcshareddata/xcschemes/Contentstack iOS.xcscheme diff --git a/Contentstack.xcworkspace/xcshareddata/xcschemes/Contentstack macOS Tests.xcscheme b/ContentstackSwift.xcworkspace/xcshareddata/xcschemes/Contentstack macOS Tests.xcscheme similarity index 100% rename from Contentstack.xcworkspace/xcshareddata/xcschemes/Contentstack macOS Tests.xcscheme rename to ContentstackSwift.xcworkspace/xcshareddata/xcschemes/Contentstack macOS Tests.xcscheme diff --git a/Contentstack.xcworkspace/xcshareddata/xcschemes/Contentstack macOS.xcscheme b/ContentstackSwift.xcworkspace/xcshareddata/xcschemes/Contentstack macOS.xcscheme similarity index 100% rename from Contentstack.xcworkspace/xcshareddata/xcschemes/Contentstack macOS.xcscheme rename to ContentstackSwift.xcworkspace/xcshareddata/xcschemes/Contentstack macOS.xcscheme diff --git a/Contentstack.xcworkspace/xcshareddata/xcschemes/Contentstack tvOS.xcscheme b/ContentstackSwift.xcworkspace/xcshareddata/xcschemes/Contentstack tvOS.xcscheme similarity index 100% rename from Contentstack.xcworkspace/xcshareddata/xcschemes/Contentstack tvOS.xcscheme rename to ContentstackSwift.xcworkspace/xcshareddata/xcschemes/Contentstack tvOS.xcscheme diff --git a/Contentstack.xcworkspace/xcshareddata/xcschemes/Contentstack watchOS.xcscheme b/ContentstackSwift.xcworkspace/xcshareddata/xcschemes/Contentstack watchOS.xcscheme similarity index 100% rename from Contentstack.xcworkspace/xcshareddata/xcschemes/Contentstack watchOS.xcscheme rename to ContentstackSwift.xcworkspace/xcshareddata/xcschemes/Contentstack watchOS.xcscheme From f886005104e75fe1c3f1fb15b85b06d55af6d7e2 Mon Sep 17 00:00:00 2001 From: reeshika-h Date: Tue, 6 May 2025 11:18:38 +0530 Subject: [PATCH 3/8] Update CI workflow to use 'staging' branch and adjust iOS test destination --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index faab5faa..19d47578 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,9 +2,9 @@ name: "Contentstack CI" on: push: - branches: [ master, next ] + branches: [ master, staging ] pull_request: - branches: [ master, next ] + branches: [ master, staging ] jobs: macOS: @@ -92,7 +92,7 @@ jobs: xcodebuild test \ -workspace ContentstackSwift.xcworkspace \ -scheme "Contentstack iOS Tests" \ - -destination 'platform=iOS Simulator,name=iPhone 15,OS=17.2' \ + -destination 'platform=iOS Simulator,name=iPhone 16 Pro,OS=18.2' \ -sdk iphonesimulator \ ONLY_ACTIVE_ARCH=NO \ CODE_SIGNING_ALLOWED=NO \ No newline at end of file From 7953a1c7256697028d30b2d8245ceb4e77e92873 Mon Sep 17 00:00:00 2001 From: reeshika-h Date: Tue, 6 May 2025 11:27:26 +0530 Subject: [PATCH 4/8] Add dynamic iOS simulator selection to CI workflow --- .github/workflows/ci.yml | 23 ++++++++++++++++------- 1 file changed, 16 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 19d47578..9deee70e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -87,12 +87,21 @@ jobs: "environment": "${{ secrets.environment }}" }' > Tests/config.json + - name: Find available iOS simulator + id: find-simulator + run: | + # Find a booted or available iPhone simulator (e.g., iPhone 14) + DEVICE=$(xcrun simctl list devices available | grep -m1 'iPhone' | awk -F '[()]' '{print $2}') + RUNTIME=$(xcrun simctl list devices available | grep "$DEVICE" | awk -F '[()]' '{print $4}') + echo "device=$DEVICE" >> $GITHUB_OUTPUT + echo "runtime=$RUNTIME" >> $GITHUB_OUTPUT + - name: Build and run tests run: | - xcodebuild test \ - -workspace ContentstackSwift.xcworkspace \ - -scheme "Contentstack iOS Tests" \ - -destination 'platform=iOS Simulator,name=iPhone 16 Pro,OS=18.2' \ - -sdk iphonesimulator \ - ONLY_ACTIVE_ARCH=NO \ - CODE_SIGNING_ALLOWED=NO \ No newline at end of file + xcodebuild test \ + -workspace ContentstackSwift.xcworkspace \ + -scheme "Contentstack iOS Tests" \ + -destination "id=${{ steps.find-simulator.outputs.device }}" \ + -sdk iphonesimulator \ + ONLY_ACTIVE_ARCH=NO \ + CODE_SIGNING_ALLOWED=NO From 1496eeafd7b6926be2301255510f84a4ddb7f648 Mon Sep 17 00:00:00 2001 From: reeshika-h Date: Tue, 6 May 2025 11:38:52 +0530 Subject: [PATCH 5/8] Update macOS test destination in CI workflow to remove architecture specification --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9deee70e..b3876d49 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -48,7 +48,7 @@ jobs: xcodebuild test \ -workspace ContentstackSwift.xcworkspace \ -scheme "Contentstack macOS Tests" \ - -destination 'platform=macOS,arch=arm64' \ + -destination 'platform=macOS' \ ONLY_ACTIVE_ARCH=NO \ CODE_SIGNING_ALLOWED=NO iOS: From f3f00b77b92caee47228b1b1120f704722fbaf57 Mon Sep 17 00:00:00 2001 From: reeshika-h Date: Tue, 6 May 2025 11:55:07 +0530 Subject: [PATCH 6/8] Fix CI workflow: update macOS and iOS test schemes and destinations --- .github/workflows/ci.yml | 17 ++++------------- 1 file changed, 4 insertions(+), 13 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b3876d49..8a4b32ca 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -47,8 +47,8 @@ jobs: run: | xcodebuild test \ -workspace ContentstackSwift.xcworkspace \ - -scheme "Contentstack macOS Tests" \ - -destination 'platform=macOS' \ + -scheme "ContentstackSwift macOS Tests" \ + -destination 'platform=macOS,arch=arm64' \ ONLY_ACTIVE_ARCH=NO \ CODE_SIGNING_ALLOWED=NO iOS: @@ -86,22 +86,13 @@ jobs: "delivery_token": "${{ secrets.delivery_token }}", "environment": "${{ secrets.environment }}" }' > Tests/config.json - - - name: Find available iOS simulator - id: find-simulator - run: | - # Find a booted or available iPhone simulator (e.g., iPhone 14) - DEVICE=$(xcrun simctl list devices available | grep -m1 'iPhone' | awk -F '[()]' '{print $2}') - RUNTIME=$(xcrun simctl list devices available | grep "$DEVICE" | awk -F '[()]' '{print $4}') - echo "device=$DEVICE" >> $GITHUB_OUTPUT - echo "runtime=$RUNTIME" >> $GITHUB_OUTPUT - name: Build and run tests run: | xcodebuild test \ -workspace ContentstackSwift.xcworkspace \ - -scheme "Contentstack iOS Tests" \ - -destination "id=${{ steps.find-simulator.outputs.device }}" \ + -scheme "ContentstackSwift iOS Tests" \ + -destination 'platform=iOS Simulator,name=iPhone 15,OS=17.5' \ -sdk iphonesimulator \ ONLY_ACTIVE_ARCH=NO \ CODE_SIGNING_ALLOWED=NO From e4c64e05ab2ddd35fe558a5b3cbbf5c460e5d799 Mon Sep 17 00:00:00 2001 From: reeshika-h Date: Wed, 7 May 2025 12:50:21 +0530 Subject: [PATCH 7/8] Update branch restriction messages in CI workflow to reference staging branch --- .github/workflows/check-branch.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/check-branch.yml b/.github/workflows/check-branch.yml index 1e2d24a5..8a3a32ab 100644 --- a/.github/workflows/check-branch.yml +++ b/.github/workflows/check-branch.yml @@ -8,13 +8,13 @@ jobs: runs-on: ubuntu-latest steps: - name: Comment PR - if: github.base_ref == 'master' && github.head_ref != 'next' + if: github.base_ref == 'master' && github.head_ref != 'staging' uses: thollander/actions-comment-pull-request@v2 with: message: | - We regret to inform you that you are currently not able to merge your changes into the master branch due to restrictions applied by our SRE team. To proceed with merging your changes, we kindly request that you create a pull request from the next branch. Our team will then review the changes and work with you to ensure a successful merge into the master branch. + We regret to inform you that you are currently not able to merge your changes into the master branch due to restrictions applied by our SRE team. To proceed with merging your changes, we kindly request that you create a pull request from the staging branch. Our team will then review the changes and work with you to ensure a successful merge into the master branch. - name: Check branch - if: github.base_ref == 'master' && github.head_ref != 'next' + if: github.base_ref == 'master' && github.head_ref != 'staging' run: | - echo "ERROR: We regret to inform you that you are currently not able to merge your changes into the master branch due to restrictions applied by our SRE team. To proceed with merging your changes, we kindly request that you create a pull request from the next branch. Our team will then review the changes and work with you to ensure a successful merge into the master branch." + echo "ERROR: We regret to inform you that you are currently not able to merge your changes into the master branch due to restrictions applied by our SRE team. To proceed with merging your changes, we kindly request that you create a pull request from the staging branch. Our team will then review the changes and work with you to ensure a successful merge into the master branch." exit 1 \ No newline at end of file From a51525ff1aedd592413891f1d76ba2377c42086b Mon Sep 17 00:00:00 2001 From: reeshika-h Date: Wed, 7 May 2025 18:39:48 +0530 Subject: [PATCH 8/8] Remove unused workspace configuration file from the project --- Contentstack.xcworkspace/contents.xcworkspacedata | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 Contentstack.xcworkspace/contents.xcworkspacedata diff --git a/Contentstack.xcworkspace/contents.xcworkspacedata b/Contentstack.xcworkspace/contents.xcworkspacedata deleted file mode 100644 index bba964bc..00000000 --- a/Contentstack.xcworkspace/contents.xcworkspacedata +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - -