Skip to content

Commit

Permalink
Updating Unity plugins for version 5.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hokstuff committed Mar 1, 2024
1 parent 6082748 commit 0ba1628
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Assets/Plugins/Appboy/Editor/PostBuild.cs
Original file line number Diff line number Diff line change
Expand Up @@ -83,13 +83,13 @@ private static void ModifyProject(string path) {
/****** Unity-iPhone (main target) ******/

// - Add packages via SPM
string brazeGUID = project.AddRemotePackageReferenceAtVersionUpToNextMinor("https://github.com/braze-inc/braze-swift-sdk-prebuilt-dynamic", "7.4.0");
string brazeGUID = project.AddRemotePackageReferenceAtVersionUpToNextMinor("https://github.com/braze-inc/braze-swift-sdk-prebuilt-dynamic", "7.7.0");
project.AddRemotePackageFrameworkToProject(mainTarget, "BrazeKit", brazeGUID, false);
project.AddRemotePackageFrameworkToProject(mainTarget, "BrazeUI", brazeGUID, false);

if (AppboyConfig.IOSImportDependencies) {
// Third-party dependencies
string SDWebImageGUID = project.AddRemotePackageReferenceAtVersion("https://github.com/SDWebImage/SDWebImage/", "5.15.5");
string SDWebImageGUID = project.AddRemotePackageReferenceAtVersion("https://github.com/SDWebImage/SDWebImage/", "5.19.0");
project.AddRemotePackageFrameworkToProject(mainTarget, "SDWebImage", SDWebImageGUID, false);
}

Expand Down
9 changes: 8 additions & 1 deletion Assets/Plugins/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## 5.2.0

##### Added
- Updated the native iOS bridge [from Braze Swift SDK 7.4.0 to 7.7.0](https://github.com/braze-inc/braze-swift-sdk/compare/7.4.0...7.7.0#diff-06572a96a58dc510037d5efa622f9bec8519bc1beab13c9f251e97e657a9d4ed).
- Updated the version of `SDWebImage` from 5.15.5 to [5.19.0](https://github.com/SDWebImage/SDWebImage/releases/tag/5.19.0) when automatically importing via "Braze Configuration".
- This version of `SDWebImage` contains a Privacy Manifest file. See [Apple's documentation](https://developer.apple.com/documentation/bundleresources/privacy_manifest_files) for more information.

## 5.1.0

##### Added
Expand All @@ -12,7 +19,7 @@
## 5.0.0

#### Breaking
- Updated the native iOS bridge [from Braze Swift SDK 6.1.0 to 7.4.0](https://github.com/braze-inc/braze-swift-sdk/compare/6.1.0...7.3.0#diff-06572a96a58dc510037d5efa622f9bec8519bc1beab13c9f251e97e657a9d4ed).
- Updated the native iOS bridge [from Braze Swift SDK 6.1.0 to 7.4.0](https://github.com/braze-inc/braze-swift-sdk/compare/6.1.0...7.4.0#diff-06572a96a58dc510037d5efa622f9bec8519bc1beab13c9f251e97e657a9d4ed).
- The iOS repository link now points to the prebuilt dynamic XCFrameworks from this repo: `https://github.com/braze-inc/braze-swift-sdk-prebuilt-dynamic`.
- Updated the native Android bridge [from Braze Android SDK 27.0.1 to 29.0.1](https://github.com/braze-inc/braze-android-sdk/compare/v27.0.0...v29.0.1#diff-06572a96a58dc510037d5efa622f9bec8519bc1beab13c9f251e97e657a9d4ed).
- `AppboyBinding.GetFeatureFlag(string id)` will now return `null` if the Feature Flag does not exist.
Expand Down
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## 5.2.0

##### Added
- Updated the native iOS bridge [from Braze Swift SDK 7.4.0 to 7.7.0](https://github.com/braze-inc/braze-swift-sdk/compare/7.4.0...7.7.0#diff-06572a96a58dc510037d5efa622f9bec8519bc1beab13c9f251e97e657a9d4ed).
- Updated the version of `SDWebImage` from 5.15.5 to [5.19.0](https://github.com/SDWebImage/SDWebImage/releases/tag/5.19.0) when automatically importing via "Braze Configuration".
- This version of `SDWebImage` contains a Privacy Manifest file. See [Apple's documentation](https://developer.apple.com/documentation/bundleresources/privacy_manifest_files) for more information.

## 5.1.0

##### Added
Expand All @@ -12,7 +19,7 @@
## 5.0.0

#### Breaking
- Updated the native iOS bridge [from Braze Swift SDK 6.1.0 to 7.4.0](https://github.com/braze-inc/braze-swift-sdk/compare/6.1.0...7.3.0#diff-06572a96a58dc510037d5efa622f9bec8519bc1beab13c9f251e97e657a9d4ed).
- Updated the native iOS bridge [from Braze Swift SDK 6.1.0 to 7.4.0](https://github.com/braze-inc/braze-swift-sdk/compare/6.1.0...7.4.0#diff-06572a96a58dc510037d5efa622f9bec8519bc1beab13c9f251e97e657a9d4ed).
- The iOS repository link now points to the prebuilt dynamic XCFrameworks from this repo: `https://github.com/braze-inc/braze-swift-sdk-prebuilt-dynamic`.
- Updated the native Android bridge [from Braze Android SDK 27.0.1 to 29.0.1](https://github.com/braze-inc/braze-android-sdk/compare/v27.0.0...v29.0.1#diff-06572a96a58dc510037d5efa622f9bec8519bc1beab13c9f251e97e657a9d4ed).
- `AppboyBinding.GetFeatureFlag(string id)` will now return `null` if the Feature Flag does not exist.
Expand Down

0 comments on commit 0ba1628

Please sign in to comment.