Skip to content

Commit 8c81bdc

Browse files
committed
Merging dev into master
2 parents 76a0473 + 84223ca commit 8c81bdc

File tree

158 files changed

+6658
-15133
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

158 files changed

+6658
-15133
lines changed

.codecov.yml

Lines changed: 40 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,32 +6,71 @@ codecov:
66
coverage:
77
precision: 2
88
round: down
9-
range: "25...75"
9+
range: "60...80"
1010

1111
status:
12+
# Overall Libarary Requirements
1213
project:
1314
default: false # disable the default status that measures entire project
1415
SalesforceAnalytics:
16+
threshold: 0%
1517
paths:
1618
- "libs/SalesforceAnalytics/SalesforceAnalytics/"
1719
flags:
1820
- SalesforceAnalytics
1921
SalesforceSDKCommon:
22+
threshold: 0%
2023
paths:
2124
- "libs/SalesforceSDKCore/SalesforceSDKCommon/"
2225
flags:
2326
- SalesforceSDKCommon
2427
SalesforceSDKCore:
28+
threshold: 0%
2529
paths:
2630
- "libs/SalesforceSDKCore/SalesforceSDKCore/"
2731
flags:
2832
- SalesforceSDKCore
2933
SmartStore:
34+
threshold: 0%
3035
paths:
3136
- "libs/SmartStore/SmartStore/"
3237
flags:
3338
- SmartStore
3439
MobileSync:
40+
threshold: 0%
41+
paths:
42+
- "libs/MobileSync/MobileSync/"
43+
flags:
44+
- MobileSync
45+
46+
# Pull Request Requirements
47+
patch:
48+
SalesforceAnalytics:
49+
target: 80%
50+
paths:
51+
- "libs/SalesforceAnalytics/SalesforceAnalytics/"
52+
flags:
53+
- SalesforceAnalytics
54+
SalesforceSDKCommon:
55+
target: 80%
56+
paths:
57+
- "libs/SalesforceSDKCore/SalesforceSDKCommon/"
58+
flags:
59+
- SalesforceSDKCommon
60+
SalesforceSDKCore:
61+
target: 80%
62+
paths:
63+
- "libs/SalesforceSDKCore/SalesforceSDKCore/"
64+
flags:
65+
- SalesforceSDKCore
66+
SmartStore:
67+
target: 80%
68+
paths:
69+
- "libs/SmartStore/SmartStore/"
70+
flags:
71+
- SmartStore
72+
MobileSync:
73+
target: 80%
3574
paths:
3675
- "libs/MobileSync/MobileSync/"
3776
flags:

.github/DangerFiles/Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ GEM
6161
terminal-table (3.0.2)
6262
unicode-display_width (>= 1.1.1, < 3)
6363
unicode-display_width (2.6.0)
64-
uri (1.0.2)
64+
uri (1.0.3)
6565

6666
PLATFORMS
6767
ruby

.github/workflows/nightly.yaml

Lines changed: 25 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,38 @@ jobs:
1212
fail-fast: false
1313
matrix:
1414
lib: [SalesforceSDKCommon, SalesforceAnalytics, SalesforceSDKCore, SmartStore, MobileSync]
15-
ios: [^18, ^17]
16-
macos: [macos-15]
15+
ios: [^26, ^18, ^17]
1716
include:
17+
- ios: ^26
18+
xcode: ^26
1819
- ios: ^18
1920
xcode: ^16
2021
- ios: ^17
21-
xcode: ^15
22+
xcode: ^16
2223
uses: ./.github/workflows/reusable-workflow.yaml
2324
with:
2425
lib: ${{ matrix.lib }}
2526
ios: ${{ matrix.ios }}
2627
xcode: ${{ matrix.xcode }}
27-
macos: ${{ matrix.macos }}
28+
secrets: inherit
29+
30+
native-samples-nightly:
31+
strategy:
32+
fail-fast: false
33+
matrix:
34+
app: [RestAPIExplorer, MobileSyncExplorer]
35+
ios: [^26, ^18, ^17]
36+
include:
37+
- ios: ^26
38+
xcode: ^26
39+
- ios: ^18
40+
xcode: ^16
41+
- ios: ^17
42+
xcode: ^16
43+
uses: ./.github/workflows/reusable-workflow.yaml
44+
with:
45+
lib: ${{ matrix.app }}
46+
ios: ${{ matrix.ios }}
47+
xcode: ${{ matrix.xcode }}
48+
build_only: true
2849
secrets: inherit

.github/workflows/pr.yaml

Lines changed: 30 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66

77
jobs:
88
static-analysis:
9-
runs-on: macos-15
9+
runs-on: macos-26
1010
env:
1111
BUNDLE_GEMFILE: ${{ github.workspace }}/.github/DangerFiles/Gemfile
1212
steps:
@@ -55,7 +55,7 @@ jobs:
5555
run: bundle exec danger --dangerfile=.github/DangerFiles/StaticAnalysis.rb --danger_id=StaticAnalysis
5656

5757
test-orchestrator:
58-
runs-on: macos-15
58+
runs-on: macos-26
5959
env:
6060
BUNDLE_GEMFILE: ${{ github.workspace }}/.github/DangerFiles/Gemfile
6161
outputs:
@@ -102,8 +102,36 @@ jobs:
102102
fail-fast: false
103103
matrix:
104104
lib: ${{ fromJson(needs.test-orchestrator.outputs.libs) }}
105+
ios: [^26, ^18]
106+
include:
107+
- ios: ^26
108+
xcode: ^26
109+
- ios: ^18
110+
xcode: ^16
105111
uses: ./.github/workflows/reusable-workflow.yaml
106112
with:
107113
lib: ${{ matrix.lib }}
114+
ios: ${{ matrix.ios }}
115+
xcode: ${{ matrix.xcode }}
108116
is_pr: true
109117
secrets: inherit
118+
119+
native-samples-pr:
120+
strategy:
121+
fail-fast: false
122+
matrix:
123+
app: [RestAPIExplorer, MobileSyncExplorer]
124+
ios: [^26, ^18]
125+
include:
126+
- ios: ^26
127+
xcode: ^26
128+
- ios: ^18
129+
xcode: ^16
130+
uses: ./.github/workflows/reusable-workflow.yaml
131+
with:
132+
lib: ${{ matrix.app }}
133+
ios: ${{ matrix.ios }}
134+
xcode: ${{ matrix.xcode }}
135+
is_pr: true
136+
build_only: true
137+
secrets: inherit

.github/workflows/reusable-workflow.yaml

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,15 @@ on:
1313
required: false
1414
type: string
1515
macos:
16-
default: macos-15
16+
default: macos-26
1717
required: false
1818
type: string
1919
is_pr:
2020
type: boolean
2121
default: false
22+
build_only:
23+
type: boolean
24+
default: false
2225

2326
jobs:
2427
test-ios:
@@ -38,14 +41,18 @@ jobs:
3841
run: |
3942
./install.sh
4043
echo $TEST_CREDENTIALS > ./shared/test/test_credentials.json
44+
- name: Install iOS 17 runtime if needed
45+
if: ${{ inputs.ios == '^17' }}
46+
run: xcodes runtimes install "iOS 17.5"
4147
- uses: mxcl/xcodebuild@v3
4248
with:
4349
xcode: ${{ inputs.xcode }}
4450
platform: iOS
4551
platform-version: ${{ inputs.ios }}
4652
workspace: SalesforceMobileSDK.xcworkspace
4753
scheme: ${{ inputs.lib }}
48-
code-coverage: true
54+
action: ${{ inputs.build_only && 'build' || 'test' }}
55+
code-coverage: ${{ ! inputs.build_only }}
4956
verbosity: xcbeautify
5057
- uses: slidoapp/[email protected]
5158
with:
@@ -54,10 +61,11 @@ jobs:
5461
show-code-coverage: false
5562
upload-bundles: false
5663
show-passed-tests: false
57-
if: success() || failure()
64+
# xcresulttool currently fails for iOS 26
65+
if: ${{ ! inputs.build_only && (success() || failure()) && inputs.ios != '^26' }}
5866
- uses: codecov/codecov-action@v4
5967
with:
6068
flags: ${{ inputs.lib }}
6169
env:
6270
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
63-
if: success() || failure()
71+
if: ${{ ! inputs.build_only && (success() || failure()) }}

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ shared/test/test_credentials.json
88
/SalesforceMobileSDK.xcworkspace/xcshareddata/SalesforceMobileSDK.xccheckout
99
/SalesforceMobileSDK.xcworkspace/xcshareddata/SalesforceMobileSDK.xcscmblueprint
1010
/SalesforceMobileSDK.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
11+
/SalesforceMobileSDK.xcworkspace/xcshareddata/swiftpm/
12+
/SalesforceMobileSDK.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings
1113
/hybrid/SampleApps/ContactExplorer/build/
1214
/hybrid/SampleApps/VFConnector/build/
1315
/libs/SalesforceHybridSDK/build/
@@ -16,6 +18,7 @@ shared/test/test_credentials.json
1618
/libs/SalesforceAnalytics/build/
1719
/libs/SmartStore/build/
1820
/libs/MobileSync/build/
21+
/libs/SalesforceSDKCommon/build/
1922
/native/SampleApps/RestAPIExplorer/build/
2023
node_modules/
2124
.idea/
@@ -26,4 +29,4 @@ clangReport/
2629
test_output/
2730
.circleci/fastlane/README.md
2831
.circleci/fastlane/report.xml
29-
.build
32+
.build

.gitmodules

Lines changed: 0 additions & 3 deletions
This file was deleted.

CONTRIBUTING.md

Lines changed: 79 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
# Contributing Guide For Salesforce Mobile SDK
2+
3+
This page lists the operational governance model of this project, as well as the recommendations and requirements for how to best contribute to Salesforce Mobile SDK. We strive to obey these as best as possible. As always, thanks for contributing – we hope these guidelines make it easier and shed some light on our approach and processes.
4+
5+
# Governance Model
6+
7+
## Salesforce Sponsored
8+
9+
The intent and goal of open sourcing this project is to increase the contributor and user base. However, only Salesforce employees will be given `admin` rights and will be the final arbitrars of what contributions are accepted or not.
10+
11+
# Issues, requests & ideas
12+
13+
Use GitHub Issues page to submit issues, enhancement requests and discuss ideas.
14+
15+
### Bug Reports and Fixes
16+
- If you find a bug, please search for it in the [Issues](https://github.com/forcedotcom/SalesforceMobileSDK-iOS/issues), and if it isn't already tracked,
17+
[create a new issue](https://github.com/forcedotcom/SalesforceMobileSDK-iOS/issues/new). Fill out the "Bug Report" section of the issue template. Even if an Issue is closed, feel free to comment and add details, it will still
18+
be reviewed.
19+
- Issues that have already been identified as a bug (note: able to reproduce) will be labelled `bug`.
20+
- If you'd like to submit a fix for a bug, [send a Pull Request](#creating_a_pull_request) and mention the Issue number.
21+
- Include tests that isolate the bug and verifies that it was fixed.
22+
23+
### New Features
24+
- If you'd like to add new functionality to this project, describe the problem you want to solve in a [new Issue](https://github.com/forcedotcom/SalesforceMobileSDK-iOS/issues/new).
25+
- Issues that have been identified as a feature request will be labelled `enhancement`.
26+
- If you'd like to implement the new feature, please wait for feedback from the project
27+
maintainers before spending too much time writing the code. In some cases, `enhancement`s may
28+
not align well with the project objectives at the time.
29+
30+
### Tests, Documentation, Miscellaneous
31+
- If you'd like to improve the tests, you want to make the documentation clearer, you have an
32+
alternative implementation of something that may have advantages over the way its currently
33+
done, or you have any other change, we would be happy to hear about it!
34+
- If its a trivial change, go ahead and [send a Pull Request](#creating_a_pull_request) with the changes you have in mind.
35+
- If not, [open an Issue](https://github.com/forcedotcom/SalesforceMobileSDK-iOS/issues/new) to discuss the idea first.
36+
37+
# Contribution Checklist
38+
39+
- [x] Clean, simple, well styled code
40+
- [x] Commits should be atomic and messages must be descriptive. Related issues should be mentioned by Issue number.
41+
- [x] Comments
42+
- Module-level & function-level comments.
43+
- Comments on complex blocks of code or algorithms (include references to sources).
44+
- [x] Tests
45+
- The test suite, if provided, must be complete and pass
46+
- Increase code coverage, not versa.
47+
- [x] Dependencies
48+
- Minimize number of dependencies.
49+
- Prefer Apache 2.0, BSD3, MIT, ISC and MPL licenses.
50+
- [x] Reviews
51+
- Changes must be approved via peer code review
52+
53+
# Creating a Pull Request
54+
55+
1. **Ensure the bug/feature was not already reported** by searching on GitHub under Issues. If none exists, create a new issue so that other contributors can keep track of what you are trying to add/fix and offer suggestions (or let you know if there is already an effort in progress).
56+
3. **Clone** the forked repo to your machine.
57+
4. **Create** a new branch to contain your work (e.g. `git br fix-issue-11`)
58+
4. **Commit** changes to your own branch.
59+
5. **Push** your work back up to your fork. (e.g. `git push fix-issue-11`)
60+
6. **Submit** a Pull Request against the `dev` branch and refer to the issue(s) you are fixing. Try not to pollute your pull request with unintended changes. Keep it simple and small.
61+
7. **Sign** the Salesforce CLA (you will be prompted to do so when submitting the Pull Request)
62+
63+
> **NOTE**: Be sure to [sync your fork](https://help.github.com/articles/syncing-a-fork/) before making a pull request.
64+
65+
# Contributor License Agreement ("CLA")
66+
In order to accept your pull request, we need you to submit a CLA. You only need
67+
to do this once to work on any of Salesforce's open source projects.
68+
69+
Complete your CLA here: <https://cla.salesforce.com/sign-cla>
70+
71+
# Issues
72+
We use GitHub issues to track public bugs. Please ensure your description is
73+
clear and has sufficient instructions to be able to reproduce the issue.
74+
75+
# Code of Conduct
76+
Please follow our [Code of Conduct](CODE_OF_CONDUCT.md).
77+
78+
# License
79+
By contributing your code, you agree to license your contribution under the terms of our project [LICENSE](LICENSE.txt) and to sign the [Salesforce CLA](https://cla.salesforce.com/sign-cla)

MobileSync.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |s|
22

33
s.name = "MobileSync"
4-
s.version = "13.0.2"
4+
s.version = "13.1.0"
55
s.summary = "Salesforce Mobile SDK for iOS - MobileSync"
66
s.homepage = "https://github.com/forcedotcom/SalesforceMobileSDK-iOS"
77

@@ -21,7 +21,7 @@ Pod::Spec.new do |s|
2121

2222
mobilesync.dependency 'SmartStore', "~>#{s.version}"
2323
mobilesync.source_files = 'libs/MobileSync/MobileSync/Classes/**/*.{h,m,swift}', 'libs/MobileSync/MobileSync/MobileSync.h'
24-
mobilesync.public_header_files = 'libs/MobileSync/MobileSync/MobileSync.h', 'libs/MobileSync/MobileSync/Classes/Manager/MobileSyncSDKManager.h', 'libs/MobileSync/MobileSync/Classes/Target/SFAdvancedSyncUpTarget.h', 'libs/MobileSync/MobileSync/Classes/Target/SFBatchSyncUpTarget.h', 'libs/MobileSync/MobileSync/Classes/Util/SFChildrenInfo.h', 'libs/MobileSync/MobileSync/Classes/Model/SFLayout.h', 'libs/MobileSync/MobileSync/Classes/Target/SFLayoutSyncDownTarget.h', 'libs/MobileSync/MobileSync/Classes/Manager/SFLayoutSyncManager.h', 'libs/MobileSync/MobileSync/Classes/Model/SFMetadata.h', 'libs/MobileSync/MobileSync/Classes/Target/SFMetadataSyncDownTarget.h', 'libs/MobileSync/MobileSync/Classes/Manager/SFMetadataSyncManager.h', 'libs/MobileSync/MobileSync/Classes/Util/SFMobileSyncConstants.h', 'libs/MobileSync/MobileSync/Classes/Util/SFMobileSyncNetworkUtils.h', 'libs/MobileSync/MobileSync/Classes/Util/SFMobileSyncObjectUtils.h', 'libs/MobileSync/MobileSync/Classes/Model/SFMobileSyncPersistableObject.h', 'libs/MobileSync/MobileSync/Classes/Instrumentation/SFMobileSyncSyncManager+Instrumentation.h', 'libs/MobileSync/MobileSync/Classes/Manager/SFMobileSyncSyncManager.h', 'libs/MobileSync/MobileSync/Classes/Target/SFMruSyncDownTarget.h', 'libs/MobileSync/MobileSync/Classes/Model/SFObject.h', 'libs/MobileSync/MobileSync/Classes/Target/SFParentChildrenSyncDownTarget.h', 'libs/MobileSync/MobileSync/Classes/Util/SFParentChildrenSyncHelper.h', 'libs/MobileSync/MobileSync/Classes/Target/SFParentChildrenSyncUpTarget.h', 'libs/MobileSync/MobileSync/Classes/Util/SFParentInfo.h', 'libs/MobileSync/MobileSync/Classes/Target/SFRefreshSyncDownTarget.h', 'libs/MobileSync/MobileSync/Classes/Util/SFSDKMobileSyncLogger.h', 'libs/MobileSync/MobileSync/Classes/Config/SFSDKSyncsConfig.h', 'libs/MobileSync/MobileSync/Classes/Target/SFSoqlSyncDownTarget.h', 'libs/MobileSync/MobileSync/Classes/Target/SFSoslSyncDownTarget.h', 'libs/MobileSync/MobileSync/Classes/Target/SFSyncDownTarget.h', 'libs/MobileSync/MobileSync/Classes/Util/SFSyncOptions.h', 'libs/MobileSync/MobileSync/Classes/Util/SFSyncState.h', 'libs/MobileSync/MobileSync/Classes/Target/SFSyncTarget.h', 'libs/MobileSync/MobileSync/Classes/Target/SFSyncUpTarget.h'
24+
mobilesync.public_header_files = 'libs/MobileSync/MobileSync/Classes/Config/SFSDKSyncsConfig.h', 'libs/MobileSync/MobileSync/Classes/Instrumentation/SFMobileSyncSyncManager+Instrumentation.h', 'libs/MobileSync/MobileSync/Classes/Manager/MobileSyncSDKManager.h', 'libs/MobileSync/MobileSync/Classes/Manager/SFLayoutSyncManager.h', 'libs/MobileSync/MobileSync/Classes/Manager/SFMetadataSyncManager.h', 'libs/MobileSync/MobileSync/Classes/Manager/SFMobileSyncSyncManager.h', 'libs/MobileSync/MobileSync/Classes/Model/SFLayout.h', 'libs/MobileSync/MobileSync/Classes/Model/SFMetadata.h', 'libs/MobileSync/MobileSync/Classes/Model/SFMobileSyncPersistableObject.h', 'libs/MobileSync/MobileSync/Classes/Model/SFObject.h', 'libs/MobileSync/MobileSync/Classes/Target/SFAdvancedSyncUpTarget.h', 'libs/MobileSync/MobileSync/Classes/Target/SFBatchSyncUpTarget.h', 'libs/MobileSync/MobileSync/Classes/Target/SFLayoutSyncDownTarget.h', 'libs/MobileSync/MobileSync/Classes/Target/SFMetadataSyncDownTarget.h', 'libs/MobileSync/MobileSync/Classes/Target/SFMruSyncDownTarget.h', 'libs/MobileSync/MobileSync/Classes/Target/SFParentChildrenSyncDownTarget.h', 'libs/MobileSync/MobileSync/Classes/Target/SFParentChildrenSyncUpTarget.h', 'libs/MobileSync/MobileSync/Classes/Target/SFRefreshSyncDownTarget.h', 'libs/MobileSync/MobileSync/Classes/Target/SFSoqlSyncDownTarget.h', 'libs/MobileSync/MobileSync/Classes/Target/SFSoslSyncDownTarget.h', 'libs/MobileSync/MobileSync/Classes/Target/SFSyncDownTarget.h', 'libs/MobileSync/MobileSync/Classes/Target/SFSyncTarget.h', 'libs/MobileSync/MobileSync/Classes/Target/SFSyncUpTarget.h', 'libs/MobileSync/MobileSync/Classes/Util/SFChildrenInfo.h', 'libs/MobileSync/MobileSync/Classes/Util/SFMobileSyncConstants.h', 'libs/MobileSync/MobileSync/Classes/Util/SFMobileSyncNetworkUtils.h', 'libs/MobileSync/MobileSync/Classes/Util/SFMobileSyncObjectUtils.h', 'libs/MobileSync/MobileSync/Classes/Util/SFParentChildrenSyncHelper.h', 'libs/MobileSync/MobileSync/Classes/Util/SFParentInfo.h', 'libs/MobileSync/MobileSync/Classes/Util/SFSDKMobileSyncLogger.h', 'libs/MobileSync/MobileSync/Classes/Util/SFSyncOptions.h', 'libs/MobileSync/MobileSync/Classes/Util/SFSyncState.h', 'libs/MobileSync/MobileSync/MobileSync.h'
2525
mobilesync.prefix_header_contents = '#import "SFSDKMobileSyncLogger.h"'
2626
mobilesync.resource_bundles = { 'MobileSync' => [ 'libs/MobileSync/MobileSync/PrivacyInfo.xcprivacy' ] }
2727
mobilesync.requires_arc = true

SalesforceAnalytics.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |s|
22

33
s.name = "SalesforceAnalytics"
4-
s.version = "13.0.2"
4+
s.version = "13.1.0"
55
s.summary = "Salesforce Mobile SDK for iOS"
66
s.homepage = "https://github.com/forcedotcom/SalesforceMobileSDK-iOS"
77

@@ -23,7 +23,7 @@ Pod::Spec.new do |s|
2323

2424
sdkanalytics.dependency 'SalesforceSDKCommon', "~>#{s.version}"
2525
sdkanalytics.source_files = 'libs/SalesforceAnalytics/SalesforceAnalytics/Classes/**/*.{h,m}', 'libs/SalesforceAnalytics/SalesforceAnalytics/SalesforceAnalytics.h'
26-
sdkanalytics.public_header_files = 'libs/SalesforceAnalytics/SalesforceAnalytics/Classes/Transform/SFSDKAILTNTransform.h', 'libs/SalesforceAnalytics/SalesforceAnalytics/Classes/Util/SFSDKAnalyticsLogger.h', 'libs/SalesforceAnalytics/SalesforceAnalytics/Classes/Manager/SFSDKAnalyticsManager.h', 'libs/SalesforceAnalytics/SalesforceAnalytics/Classes/Model/SFSDKDeviceAppAttributes.h', 'libs/SalesforceAnalytics/SalesforceAnalytics/Classes/Store/SFSDKEventStoreManager.h', 'libs/SalesforceAnalytics/SalesforceAnalytics/Classes/Model/SFSDKInstrumentationEvent.h', 'libs/SalesforceAnalytics/SalesforceAnalytics/Classes/Model/SFSDKInstrumentationEventBuilder.h', 'libs/SalesforceAnalytics/SalesforceAnalytics/Classes/Transform/SFSDKTransform.h', 'libs/SalesforceAnalytics/SalesforceAnalytics/SalesforceAnalytics.h'
26+
sdkanalytics.public_header_files = 'libs/SalesforceAnalytics/SalesforceAnalytics/Classes/Manager/SFSDKAnalyticsManager.h', 'libs/SalesforceAnalytics/SalesforceAnalytics/Classes/Model/SFSDKDeviceAppAttributes.h', 'libs/SalesforceAnalytics/SalesforceAnalytics/Classes/Model/SFSDKInstrumentationEvent.h', 'libs/SalesforceAnalytics/SalesforceAnalytics/Classes/Model/SFSDKInstrumentationEventBuilder.h', 'libs/SalesforceAnalytics/SalesforceAnalytics/Classes/Store/SFSDKEventStoreManager.h', 'libs/SalesforceAnalytics/SalesforceAnalytics/Classes/Transform/SFSDKAILTNTransform.h', 'libs/SalesforceAnalytics/SalesforceAnalytics/Classes/Transform/SFSDKTransform.h', 'libs/SalesforceAnalytics/SalesforceAnalytics/Classes/Util/SFSDKAnalyticsLogger.h', 'libs/SalesforceAnalytics/SalesforceAnalytics/SalesforceAnalytics.h'
2727
sdkanalytics.prefix_header_contents = '#import "SFSDKAnalyticsLogger.h"'
2828
sdkanalytics.resource_bundles = { 'SalesforceAnalytics' => [ 'libs/SalesforceAnalytics/SalesforceAnalytics/PrivacyInfo.xcprivacy' ] }
2929
sdkanalytics.requires_arc = true

0 commit comments

Comments
 (0)