Skip to content

Commit

Permalink
PLAT-11586 add apple privacy manifest to package (#234)
Browse files Browse the repository at this point in the history
* add manifest

* spelling fixes

* changelog
  • Loading branch information
richardelms committed Feb 22, 2024
1 parent 997cd3b commit 0721e14
Show file tree
Hide file tree
Showing 5 changed files with 104 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Changelog
=========

## TBD ()

* Included apple privacy manifest in released package [2#34](https://github.com/bugsnag/bugsnag-unreal/pull/234)

## 2.0.0 (2024-01-12)

* Removed the bugsnag android gradle plugin due to incompatibility with UE 5.1+. Symbols can now be uploaded via the [BugSnag CLI](https://docs.bugsnag.com/platforms/unreal-engine/showing-full-stacktraces/#android-proguard-and-ndk-mappings)[#220](https://github.com/bugsnag/bugsnag-unreal/pull/220)
Expand Down
96 changes: 96 additions & 0 deletions Plugins/Bugsnag/Resources/PrivacyInfo.xcprivacy
Original file line number Diff line number Diff line change
@@ -0,0 +1,96 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http:https://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>NSPrivacyCollectedDataTypes</key>
<array>
<dict>
<key>NSPrivacyCollectedDataType</key>
<string>NSPrivacyCollectedDataTypeUserID</string>
<key>NSPrivacyCollectedDataTypeLinked</key>
<false/>
<key>NSPrivacyCollectedDataTypeTracking</key>
<false/>
<key>NSPrivacyCollectedDataTypePurposes</key>
<array>
<string>NSPrivacyCollectedDataTypePurposeAppFunctionality</string>
</array>
</dict>
<dict>
<key>NSPrivacyCollectedDataType</key>
<string>NSPrivacyCollectedDataTypeDeviceID</string>
<key>NSPrivacyCollectedDataTypeLinked</key>
<false/>
<key>NSPrivacyCollectedDataTypeTracking</key>
<false/>
<key>NSPrivacyCollectedDataTypePurposes</key>
<array>
<string>NSPrivacyCollectedDataTypePurposeAppFunctionality</string>
</array>
</dict>
<dict>
<key>NSPrivacyCollectedDataType</key>
<string>NSPrivacyCollectedDataTypeProductInteraction</string>
<key>NSPrivacyCollectedDataTypeLinked</key>
<false/>
<key>NSPrivacyCollectedDataTypeTracking</key>
<false/>
<key>NSPrivacyCollectedDataTypePurposes</key>
<array>
<string>NSPrivacyCollectedDataTypePurposeAppFunctionality</string>
</array>
</dict>
<dict>
<key>NSPrivacyCollectedDataType</key>
<string>NSPrivacyCollectedDataTypeCrashData</string>
<key>NSPrivacyCollectedDataTypeLinked</key>
<false/>
<key>NSPrivacyCollectedDataTypeTracking</key>
<false/>
<key>NSPrivacyCollectedDataTypePurposes</key>
<array>
<string>NSPrivacyCollectedDataTypePurposeAppFunctionality</string>
</array>
</dict>
<dict>
<key>NSPrivacyCollectedDataType</key>
<string>NSPrivacyCollectedDataTypeOtherDataTypes</string>
<key>NSPrivacyCollectedDataTypeLinked</key>
<false/>
<key>NSPrivacyCollectedDataTypeTracking</key>
<false/>
<key>NSPrivacyCollectedDataTypePurposes</key>
<array>
<string>NSPrivacyCollectedDataTypePurposeAppFunctionality</string>
</array>
</dict>
</array>
<key>NSPrivacyAccessedAPITypes</key>
<array>
<dict>
<key>NSPrivacyAccessedAPIType</key>
<string>NSPrivacyAccessedAPICategorySystemBootTime</string>
<key>NSPrivacyAccessedAPITypeReasons</key>
<array>
<string>35F9.1</string>
</array>
</dict>
<dict>
<key>NSPrivacyAccessedAPIType</key>
<string>NSPrivacyAccessedAPICategoryUserDefaults</string>
<key>NSPrivacyAccessedAPITypeReasons</key>
<array>
<string>CA92.1</string>
</array>
</dict>
<dict>
<key>NSPrivacyAccessedAPIType</key>
<string>NSPrivacyAccessedAPICategoryFileTimestamp</string>
<key>NSPrivacyAccessedAPITypeReasons</key>
<array>
<string>C617.1</string>
</array>
</dict>
</array>
</dict>
</plist>
Original file line number Diff line number Diff line change
Expand Up @@ -553,7 +553,7 @@ class BUGSNAG_API FBugsnagConfiguration final : public IBugsnagFeatureFlagStore,
*
* The callback should return `true` to allow or `false` to prevent the event being sent.
*
* Note that the callback will not normally be invoked on the thread where the error ocurred,
* Note that the callback will not normally be invoked on the thread where the error occurred,
* and may run at a much later point in time or after the application has been relaunched.
*/
void AddOnSendError(FBugsnagOnErrorCallback Callback) { OnSendErrorCallbacks.Add(Callback); }
Expand Down
2 changes: 1 addition & 1 deletion Plugins/Bugsnag/Source/Bugsnag/Public/BugsnagError.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class BUGSNAG_API IBugsnagError
virtual EBugsnagErrorType GetErrorType() const = 0;

/**
* The stack trace at the time the error ocurred.
* The stack trace at the time the error occurred.
*/
virtual TArray<TSharedRef<IBugsnagStackframe>> GetStacktrace() const = 0;

Expand Down
4 changes: 2 additions & 2 deletions Plugins/Bugsnag/Source/Bugsnag/Public/BugsnagEvent.h
Original file line number Diff line number Diff line change
Expand Up @@ -64,12 +64,12 @@ class BUGSNAG_API IBugsnagEvent : public virtual IBugsnagFeatureFlagStore, publi
virtual void SetGroupingHash(const TOptional<FString>&) = 0;

/**
* Information about the app at the time the error ocurred.
* Information about the app at the time the error occurred.
*/
virtual const TSharedRef<IBugsnagAppWithState> GetApp() const = 0;

/**
* Information about the computer or device running the app at the time the error ocurred.
* Information about the computer or device running the app at the time the error occurred.
*/
virtual const TSharedRef<IBugsnagDeviceWithState> GetDevice() const = 0;

Expand Down

0 comments on commit 0721e14

Please sign in to comment.