-
Notifications
You must be signed in to change notification settings - Fork 577
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
RJS-2810: Add privacy manifest for Apple App Store #6642
Changes from all commits
93c27dc
a336be6
0ef7370
20d54b7
17a58b3
04176cb
d336714
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>NSPrivacyTrackingDomains</key> | ||
<array/> | ||
<key>NSPrivacyCollectedDataTypes</key> | ||
<array/> | ||
<key>NSPrivacyAccessedAPITypes</key> | ||
<array> | ||
<dict> | ||
<key>NSPrivacyAccessedAPITypeReasons</key> | ||
<array> | ||
<string>C617.1</string> | ||
</array> | ||
<key>NSPrivacyAccessedAPIType</key> | ||
<string>NSPrivacyAccessedAPICategoryFileTimestamp</string> | ||
</dict> | ||
<dict> | ||
<key>NSPrivacyAccessedAPITypeReasons</key> | ||
<array> | ||
<string>E174.1</string> | ||
</array> | ||
<key>NSPrivacyAccessedAPIType</key> | ||
<string>NSPrivacyAccessedAPICategoryDiskSpace</string> | ||
</dict> | ||
</array> | ||
<key>NSPrivacyTracking</key> | ||
<false/> | ||
</dict> | ||
</plist> |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -43,18 +43,12 @@ Pod::Spec.new do |s| | |
|
||
s.source_files = 'react-native/ios/RealmReact/*.mm' | ||
s.public_header_files = 'react-native/ios/RealmReact/*.h' | ||
|
||
s.resource_bundles = { 'RealmJS' => ['PrivacyInfo.xcprivacy'] } | ||
|
||
s.frameworks = uses_frameworks ? ['React'] : [] | ||
|
||
s.library = 'c++', 'z', 'compression' | ||
|
||
s.pod_target_xcconfig = { | ||
# Setting up clang | ||
'CLANG_CXX_LANGUAGE_STANDARD' => 'c++17', | ||
'CLANG_CXX_LIBRARY' => 'libc++', | ||
Comment on lines
-52
to
-54
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm surprised this deletion really needed 🤔 And this change conflicts with a change on #6650 |
||
# Setting the current project version and versioning system to get a symbol for analytics | ||
'CURRENT_PROJECT_VERSION' => s.version, | ||
'VERSIONING_SYSTEM' => 'apple-generic', | ||
elle-j marked this conversation as resolved.
Show resolved
Hide resolved
|
||
# Header search paths are prefixes to the path specified in #include macros | ||
'HEADER_SEARCH_PATHS' => [ | ||
'"$(PODS_TARGET_SRCROOT)/react-native/ios/RealmReact/"', | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "realm", | ||
"version": "12.8.0", | ||
"version": "12.8.1-alpha.0", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same as previous comment 🙂 |
||
"description": "Realm by MongoDB is an offline-first mobile database: an alternative to SQLite and key-value stores", | ||
"license": "apache-2.0", | ||
"homepage": "https://www.mongodb.com/docs/realm/", | ||
|
@@ -74,6 +74,7 @@ | |
"scripts/submit-analytics.mjs", | ||
"react-native.config.js", | ||
"RealmJS.podspec", | ||
"PrivacyInfo.xcprivacy", | ||
"binding.gyp" | ||
], | ||
"scripts": { | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just needs a rebase to add the CHANGELOG entries to the latest 👍