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
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 60ed4786..8a4b32ca 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:
@@ -46,8 +46,8 @@ jobs:
- name: Build and run tests
run: |
xcodebuild test \
- -workspace Contentstack.xcworkspace \
- -scheme "Contentstack macOS Tests" \
+ -workspace ContentstackSwift.xcworkspace \
+ -scheme "ContentstackSwift macOS Tests" \
-destination 'platform=macOS,arch=arm64' \
ONLY_ACTIVE_ARCH=NO \
CODE_SIGNING_ALLOWED=NO
@@ -86,13 +86,13 @@ jobs:
"delivery_token": "${{ secrets.delivery_token }}",
"environment": "${{ secrets.environment }}"
}' > Tests/config.json
-
+
- name: Build and run tests
run: |
- xcodebuild test \
- -workspace Contentstack.xcworkspace \
- -scheme "Contentstack iOS Tests" \
- -destination 'platform=iOS Simulator,name=iPhone 15,OS=17.2' \
- -sdk iphonesimulator \
- ONLY_ACTIVE_ARCH=NO \
- CODE_SIGNING_ALLOWED=NO
\ No newline at end of file
+ xcodebuild test \
+ -workspace ContentstackSwift.xcworkspace \
+ -scheme "ContentstackSwift iOS Tests" \
+ -destination 'platform=iOS Simulator,name=iPhone 15,OS=17.5' \
+ -sdk iphonesimulator \
+ ONLY_ACTIVE_ARCH=NO \
+ CODE_SIGNING_ALLOWED=NO
diff --git a/.github/workflows/issues-jira.yml b/.github/workflows/issues-jira.yml
new file mode 100644
index 00000000..7bf04694
--- /dev/null
+++ b/.github/workflows/issues-jira.yml
@@ -0,0 +1,31 @@
+name: Create Jira Ticket for Github Issue
+
+on:
+ issues:
+ types: [opened]
+
+jobs:
+ issue-jira:
+ runs-on: ubuntu-latest
+ steps:
+
+ - name: Login to Jira
+ uses: atlassian/gajira-login@master
+ env:
+ JIRA_BASE_URL: ${{ secrets.JIRA_BASE_URL }}
+ JIRA_USER_EMAIL: ${{ secrets.JIRA_USER_EMAIL }}
+ JIRA_API_TOKEN: ${{ secrets.JIRA_API_TOKEN }}
+
+ - name: Create Jira Issue
+ id: create_jira
+ uses: atlassian/gajira-create@master
+ with:
+ project: ${{ secrets.JIRA_PROJECT }}
+ issuetype: ${{ secrets.JIRA_ISSUE_TYPE }}
+ summary: Github | Issue | ${{ github.event.repository.name }} | ${{ github.event.issue.title }}
+ description: |
+ *GitHub Issue:* ${{ github.event.issue.html_url }}
+
+ *Description:*
+ ${{ github.event.issue.body }}
+ fields: "${{ secrets.ISSUES_JIRA_FIELDS }}"
\ No newline at end of file
diff --git a/.github/workflows/jira.yml b/.github/workflows/jira.yml
deleted file mode 100644
index 250abc76..00000000
--- a/.github/workflows/jira.yml
+++ /dev/null
@@ -1,33 +0,0 @@
-name: Create JIRA ISSUE
-on:
- pull_request:
- types: [opened]
-jobs:
- security-jira:
- if: ${{ github.actor == 'dependabot[bot]' || github.actor == 'snyk-bot' || contains(github.event.pull_request.head.ref, 'snyk-fix-') || contains(github.event.pull_request.head.ref, 'snyk-upgrade-')}}
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v2
- - name: Login into JIRA
- uses: atlassian/gajira-login@master
- env:
- JIRA_BASE_URL: ${{ secrets.JIRA_BASE_URL }}
- JIRA_USER_EMAIL: ${{ secrets.JIRA_USER_EMAIL }}
- JIRA_API_TOKEN: ${{ secrets.JIRA_API_TOKEN }}
- - name: Create a JIRA Issue
- id: create
- uses: atlassian/gajira-create@master
- with:
- project: ${{ secrets.JIRA_PROJECT }}
- issuetype: ${{ secrets.JIRA_ISSUE_TYPE }}
- summary: |
- Snyk | Vulnerability | ${{ github.event.repository.name }} | ${{ github.event.pull_request.title }}
- description: |
- PR: ${{ github.event.pull_request.html_url }}
-
- fields: "${{ secrets.JIRA_FIELDS }}"
- - name: Transition issue
- uses: atlassian/gajira-transition@v3
- with:
- issue: ${{ steps.create.outputs.issue }}
- transition: ${{ secrets.JIRA_TRANSITION }}
diff --git a/.github/workflows/policy-scan.yml b/.github/workflows/policy-scan.yml
new file mode 100644
index 00000000..ff259231
--- /dev/null
+++ b/.github/workflows/policy-scan.yml
@@ -0,0 +1,46 @@
+name: Checks the security policy and configurations
+on:
+ pull_request:
+ types: [opened, synchronize, reopened]
+jobs:
+ security-policy:
+ if: github.event.repository.visibility == 'public'
+ runs-on: ubuntu-latest
+ defaults:
+ run:
+ shell: bash
+ steps:
+ - uses: actions/checkout@master
+ - name: Checks for SECURITY.md policy file
+ run: |
+ if ! [[ -f "SECURITY.md" || -f ".github/SECURITY.md" ]]; then exit 1; fi
+ security-license:
+ if: github.event.repository.visibility == 'public'
+ runs-on: ubuntu-latest
+ defaults:
+ run:
+ shell: bash
+ steps:
+ - uses: actions/checkout@master
+ - name: Checks for License file
+ run: |
+ expected_license_files=("LICENSE" "LICENSE.txt" "LICENSE.md" "License.txt")
+ license_file_found=false
+ current_year=$(date +"%Y")
+
+ for license_file in "${expected_license_files[@]}"; do
+ if [ -f "$license_file" ]; then
+ license_file_found=true
+ # check the license file for the current year, if not exists, exit with error
+ if ! grep -q "$current_year" "$license_file"; then
+ echo "License file $license_file does not contain the current year."
+ exit 2
+ fi
+ break
+ fi
+ done
+
+ if [ "$license_file_found" = false ]; then
+ echo "No license file found. Please add a license file to the repository."
+ exit 1
+ fi
\ No newline at end of file
diff --git a/.github/workflows/sast-scan.yml b/.github/workflows/sast-scan.yml
deleted file mode 100644
index 3b9521a5..00000000
--- a/.github/workflows/sast-scan.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-name: SAST Scan
-on:
- pull_request:
- types: [opened, synchronize, reopened]
-jobs:
- security-sast:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v2
- - name: Semgrep Scan
- run: docker run -v /var/run/docker.sock:/var/run/docker.sock -v "${PWD}:/src" returntocorp/semgrep semgrep scan --config auto
\ No newline at end of file
diff --git a/.github/workflows/secrets-scan.yml b/.github/workflows/secrets-scan.yml
new file mode 100644
index 00000000..049c02f4
--- /dev/null
+++ b/.github/workflows/secrets-scan.yml
@@ -0,0 +1,29 @@
+name: Secrets Scan
+on:
+ pull_request:
+ types: [opened, synchronize, reopened]
+jobs:
+ security-secrets:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v4
+ with:
+ fetch-depth: '2'
+ ref: '${{ github.event.pull_request.head.ref }}'
+ - run: |
+ git reset --soft HEAD~1
+ - name: Install Talisman
+ run: |
+ # Download Talisman
+ wget https://github.com/thoughtworks/talisman/releases/download/v1.37.0/talisman_linux_amd64 -O talisman
+
+ # Checksum verification
+ checksum=$(sha256sum ./talisman | awk '{print $1}')
+ if [ "$checksum" != "8e0ae8bb7b160bf10c4fa1448beb04a32a35e63505b3dddff74a092bccaaa7e4" ]; then exit 1; fi
+
+ # Make it executable
+ chmod +x talisman
+ - name: Run talisman
+ run: |
+ # Run Talisman with the pre-commit hook
+ ./talisman --githook pre-commit
\ No newline at end of file
diff --git a/.talismanrc b/.talismanrc
index bd1bc6ae..fc7f4865 100644
--- a/.talismanrc
+++ b/.talismanrc
@@ -1,4 +1,7 @@
fileignoreconfig:
+- filename: .github/workflows/secrets-scan.yml
+ ignore_detectors:
+ - filecontent
- filename: Contentstack.xcworkspace/xcshareddata/xcschemes/Contentstack macOS.xcscheme
checksum: 0f51b502dfb1608309256d8d7afa1395bb7cc7e1f7e7b46ea0843f86672c59b5
- filename: Contentstack.xcworkspace/xcshareddata/xcschemes/Contentstack iOS.xcscheme
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