Skip to content

Commit

Permalink
[iOS] Set ENABLE_BITCODE to NO to resolve potential build issues.
Browse files Browse the repository at this point in the history
  • Loading branch information
nrubin29 committed Nov 29, 2021
1 parent 0b78197 commit 4bbbe03
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.1.5

* [iOS] Set `ENABLE_BITCODE` to `NO` to resolve potential build issues.

## 0.1.4

* Updated ACRCloud SDK to v1.6.2.1
Expand Down
2 changes: 1 addition & 1 deletion example/ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ EXTERNAL SOURCES:

SPEC CHECKSUMS:
Flutter: 50d75fe2f02b26cc09d224853bb45737f8b3214a
flutter_acrcloud: e14db5dc29b45fa29428d1c4ef7696c3f5cb60f8
flutter_acrcloud: 8dc6ee574321bc08390c1e79900aad5ef683248d

PODFILE CHECKSUM: aafe91acc616949ddb318b77800a7f51bffa2a4c

Expand Down
2 changes: 1 addition & 1 deletion ios/flutter_acrcloud.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@ A Flutter plugin for the ACRCloud music recognition API
s.library = 'stdc++'

# Flutter.framework does not contain a i386 slice. Only x86_64 simulators are supported.
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'VALID_ARCHS[sdk=iphonesimulator*]' => 'x86_64' }
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'VALID_ARCHS[sdk=iphonesimulator*]' => 'x86_64', 'ENABLE_BITCODE' => 'NO' }
s.swift_version = '5.0'
end
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: flutter_acrcloud
description: A Flutter plugin for the ACRCloud music recognition API. This plugin provides a simple interface for using ACRCloud to recognize music from the device's microphone
version: 0.1.4
version: 0.1.5
homepage: https://github.com/nrubin29/flutter_acrcloud

environment:
Expand Down

0 comments on commit 4bbbe03

Please sign in to comment.