Skip to content
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

Ios package fix #60

Merged
merged 3 commits into from
Mar 7, 2024
Merged
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
4 changes: 2 additions & 2 deletions binding/ios/Eagle-iOS.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|
s.name = 'Eagle-iOS'
s.module_name = 'Eagle'
s.version = '1.0.0'
s.version = '1.0.1'
s.license = {:type => 'Apache 2.0'}
s.summary = 'iOS binding for Picovoice\'s Eagle speaker recognition engine'
s.description =
Expand All @@ -11,7 +11,7 @@ Pod::Spec.new do |s|
DESC
s.homepage = 'https://github.com/Picovoice/eagle/tree/master/binding/ios'
s.author = { 'Picovoice' => '[email protected]' }
s.source = { :git => "https://github.com/Picovoice/eagle.git", :tag => "Eagle-iOS-v1.0.0" }
s.source = { :git => "https://github.com/Picovoice/eagle.git", :tag => "Eagle-iOS-v1.0.1" }
s.ios.deployment_target = '13.0'
s.swift_version = '5.0'
s.vendored_frameworks = 'lib/ios/PvEagle.xcframework'
Expand Down
6 changes: 3 additions & 3 deletions binding/ios/EagleAppTest/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ source 'https://cdn.cocoapods.org/'
platform :ios, '13.0'

target 'EagleAppTest' do
pod 'Eagle-iOS', '~> 1.0.0'
pod 'Eagle-iOS', '~> 1.0.1'
end

target 'EagleAppTestUITests' do
pod 'Eagle-iOS', '~> 1.0.0'
pod 'Eagle-iOS', '~> 1.0.1'
end

target 'PerformanceTest' do
pod 'Eagle-iOS', '~> 1.0.0'
pod 'Eagle-iOS', '~> 1.0.1'
end
8 changes: 4 additions & 4 deletions binding/ios/EagleAppTest/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
PODS:
- Eagle-iOS (1.0.0)
- Eagle-iOS (1.0.1)

DEPENDENCIES:
- Eagle-iOS (~> 1.0.0)
- Eagle-iOS (~> 1.0.1)

SPEC REPOS:
trunk:
- Eagle-iOS

SPEC CHECKSUMS:
Eagle-iOS: 02067133a7460faf56e0ef7b995c93543a8e0450
Eagle-iOS: 998181609f97849b323023c3ed3d3fbb369ece2a

PODFILE CHECKSUM: f61c2ddde47c5d9c80ee45b636435bc1c3476116
PODFILE CHECKSUM: 32252195e8a4e7b7e29caf8a647533d7585f75e0

COCOAPODS: 1.11.3
2 changes: 1 addition & 1 deletion demo/ios/EagleDemo/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ source 'https://cdn.cocoapods.org/'
platform :ios, '14.0'

target 'EagleDemo' do
pod 'Eagle-iOS', '~> 1.0.0'
pod 'Eagle-iOS', '~> 1.0.1'
pod 'ios-voice-processor', '~> 1.0.3'
end
8 changes: 4 additions & 4 deletions demo/ios/EagleDemo/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
PODS:
- Eagle-iOS (1.0.0)
- Eagle-iOS (1.0.1)
- ios-voice-processor (1.0.3)

DEPENDENCIES:
- Eagle-iOS (~> 1.0.0)
- Eagle-iOS (~> 1.0.1)
- ios-voice-processor (~> 1.0.3)

SPEC REPOS:
Expand All @@ -12,9 +12,9 @@ SPEC REPOS:
- ios-voice-processor

SPEC CHECKSUMS:
Eagle-iOS: 02067133a7460faf56e0ef7b995c93543a8e0450
Eagle-iOS: 998181609f97849b323023c3ed3d3fbb369ece2a
ios-voice-processor: 65b25a8db69ea25ffba0eeef37bae71a982f34cc

PODFILE CHECKSUM: c59a587171121f40999eaa8fa09eec66ca21dcd9
PODFILE CHECKSUM: 6fdf5a2d8316e8b741e0a468bda00174e72c4499

COCOAPODS: 1.11.3
10 changes: 5 additions & 5 deletions lib/ios/PvEagle.xcframework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -6,30 +6,30 @@
<array>
<dict>
<key>LibraryIdentifier</key>
<string>ios-arm64</string>
<string>ios-arm64_x86_64-simulator</string>
<key>LibraryPath</key>
<string>PvEagle.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
<dict>
<key>LibraryIdentifier</key>
<string>ios-arm64_x86_64-simulator</string>
<string>ios-arm64</string>
<key>LibraryPath</key>
<string>PvEagle.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
</array>
<key>CFBundlePackageType</key>
Expand Down
Binary file not shown.
Binary file modified lib/ios/PvEagle.xcframework/ios-arm64/PvEagle.framework/PvEagle
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading