Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions opus_flutter_ios/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## 3.0.2

* Added an `arm64-simulator` slice to `opus.xcframework` (merged into the
existing simulator slice as a fat `ios-arm64_x86_64-simulator` binary), so
apps now build and run natively on the iOS Simulator on Apple Silicon Macs
without falling back to Rosetta / excluding `arm64` for the simulator SDK.


## 3.0.1

* Using new opus.xcframework
Expand Down
3 changes: 2 additions & 1 deletion opus_flutter_ios/ios/opus.xcframework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,12 @@
<key>BinaryPath</key>
<string>opus.framework/opus</string>
<key>LibraryIdentifier</key>
<string>ios-x86_64-simulator</string>
<string>ios-arm64_x86_64-simulator</string>
<key>LibraryPath</key>
<string>opus.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
Expand Down
Binary file not shown.
2 changes: 1 addition & 1 deletion opus_flutter_ios/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: opus_flutter_ios
description: iOS implementation of the opus_flutter plugin.
repository: https://github.com/EPNW/opus_flutter/tree/master/opus_flutter_ios
version: 3.0.1
version: 3.0.2

environment:
sdk: ">=2.12.0 <3.0.0"
Expand Down