From f57d8cccf7022e000cd8cb0f14ebb1c27bda9ad4 Mon Sep 17 00:00:00 2001 From: Kwangsoo Yeo Date: Thu, 30 Nov 2023 11:18:47 -0800 Subject: [PATCH] Rn update (#329) --- binding/react-native/android/build.gradle | 2 +- binding/react-native/leopard-react-native.podspec | 2 +- binding/react-native/package.json | 2 +- binding/react-native/test-app/LeopardTestApp/ios/Podfile | 2 +- .../react-native/test-app/LeopardTestApp/ios/Podfile.lock | 8 ++++---- demo/react-native/ios/Podfile | 2 +- demo/react-native/ios/Podfile.lock | 8 ++++---- demo/react-native/package.json | 2 +- demo/react-native/yarn.lock | 8 ++++---- 9 files changed, 18 insertions(+), 18 deletions(-) diff --git a/binding/react-native/android/build.gradle b/binding/react-native/android/build.gradle index e762f460..e3b93170 100644 --- a/binding/react-native/android/build.gradle +++ b/binding/react-native/android/build.gradle @@ -118,5 +118,5 @@ repositories { dependencies { // noinspection GradleDynamicVersion api 'com.facebook.react:react-native:+' - implementation 'ai.picovoice:leopard-android:2.0.0' + implementation 'ai.picovoice:leopard-android:2.0.1' } diff --git a/binding/react-native/leopard-react-native.podspec b/binding/react-native/leopard-react-native.podspec index 20ad2a51..b1a6d882 100644 --- a/binding/react-native/leopard-react-native.podspec +++ b/binding/react-native/leopard-react-native.podspec @@ -16,5 +16,5 @@ Pod::Spec.new do |s| s.source_files = "ios/*.{h,m,mm,swift}" s.dependency "React" - s.dependency "Leopard-iOS", '~> 2.0.0' + s.dependency "Leopard-iOS", '~> 2.0.1' end diff --git a/binding/react-native/package.json b/binding/react-native/package.json index a076fc5b..2a44a1fd 100644 --- a/binding/react-native/package.json +++ b/binding/react-native/package.json @@ -1,6 +1,6 @@ { "name": "@picovoice/leopard-react-native", - "version": "2.0.0", + "version": "2.0.1", "description": "Picovoice Leopard React Native binding", "main": "lib/commonjs/index", "module": "lib/module/index", diff --git a/binding/react-native/test-app/LeopardTestApp/ios/Podfile b/binding/react-native/test-app/LeopardTestApp/ios/Podfile index ef3c1510..4cdddd1e 100644 --- a/binding/react-native/test-app/LeopardTestApp/ios/Podfile +++ b/binding/react-native/test-app/LeopardTestApp/ios/Podfile @@ -14,7 +14,7 @@ end target 'LeopardTestApp' do config = use_native_modules! - pod 'Leopard-iOS', '~> 2.0.0' + pod 'Leopard-iOS', '~> 2.0.1' # Flags change depending on the env values. flags = get_default_flags() diff --git a/binding/react-native/test-app/LeopardTestApp/ios/Podfile.lock b/binding/react-native/test-app/LeopardTestApp/ios/Podfile.lock index 52aeeade..ffa042b8 100644 --- a/binding/react-native/test-app/LeopardTestApp/ios/Podfile.lock +++ b/binding/react-native/test-app/LeopardTestApp/ios/Podfile.lock @@ -77,7 +77,7 @@ PODS: - hermes-engine/Pre-built (= 0.71.0) - hermes-engine/Pre-built (0.71.0) - ios-voice-processor (1.1.0) - - Leopard-iOS (2.0.0) + - Leopard-iOS (2.0.1) - leopard-react-native (2.0.0): - Leopard-iOS (~> 2.0.0) - React @@ -421,7 +421,7 @@ DEPENDENCIES: - FlipperKit/SKIOSNetworkPlugin (= 0.125.0) - glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`) - hermes-engine (from `../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec`) - - Leopard-iOS (~> 2.0.0) + - Leopard-iOS (~> 2.0.1) - "leopard-react-native (from `../node_modules/@picovoice/leopard-react-native`)" - libevent (~> 2.1.12) - OpenSSL-Universal (= 1.1.1100) @@ -573,7 +573,7 @@ SPEC CHECKSUMS: glog: 04b94705f318337d7ead9e6d17c019bd9b1f6b1b hermes-engine: f6e715aa6c8bd38de6c13bc85e07b0a337edaa89 ios-voice-processor: 8e32d7f980a06d392d128ef1cd19cf6ddcaca3c1 - Leopard-iOS: ba60cf23fb79ffc01bbefbbd4e063cb2a102f352 + Leopard-iOS: 8c94dcf886800b4ed361c1c6af763780ef16f722 leopard-react-native: b49c92e652221204b081795393f208e994030d95 libevent: 4049cae6c81cdb3654a443be001fb9bdceff7913 OpenSSL-Universal: ebc357f1e6bc71fa463ccb2fe676756aff50e88c @@ -610,6 +610,6 @@ SPEC CHECKSUMS: Yoga: c618b544ff8bd8865cdca602f00cbcdb92fd6d31 YogaKit: f782866e155069a2cca2517aafea43200b01fd5a -PODFILE CHECKSUM: c4f0e13670b7a91f74cbc863e9197fa1fcd6c3ca +PODFILE CHECKSUM: f6f2db96cac22b9d671db35781667e40a94006a8 COCOAPODS: 1.11.3 diff --git a/demo/react-native/ios/Podfile b/demo/react-native/ios/Podfile index e5f616fc..8d26c2c3 100644 --- a/demo/react-native/ios/Podfile +++ b/demo/react-native/ios/Podfile @@ -5,6 +5,6 @@ platform :ios, '13.0' target 'LeopardDemo' do config = use_native_modules! - pod 'Leopard-iOS', '~> 2.0.0' + pod 'Leopard-iOS', '~> 2.0.1' use_react_native!(:path => config["reactNativePath"]) end diff --git a/demo/react-native/ios/Podfile.lock b/demo/react-native/ios/Podfile.lock index e143907a..4c1dc53d 100644 --- a/demo/react-native/ios/Podfile.lock +++ b/demo/react-native/ios/Podfile.lock @@ -12,7 +12,7 @@ PODS: - fmt (6.2.1) - glog (0.3.5) - ios-voice-processor (1.1.0) - - Leopard-iOS (2.0.0) + - Leopard-iOS (2.0.1) - leopard-react-native (2.0.0): - Leopard-iOS (~> 2.0.0) - React @@ -303,7 +303,7 @@ DEPENDENCIES: - FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`) - FBReactNativeSpec (from `../node_modules/react-native/React/FBReactNativeSpec`) - glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`) - - Leopard-iOS (~> 2.0.0) + - Leopard-iOS (~> 2.0.1) - "leopard-react-native (from `../node_modules/@picovoice/leopard-react-native`)" - RCT-Folly (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`) - RCTRequired (from `../node_modules/react-native/Libraries/RCTRequired`) @@ -423,7 +423,7 @@ SPEC CHECKSUMS: fmt: ff9d55029c625d3757ed641535fd4a75fedc7ce9 glog: 476ee3e89abb49e07f822b48323c51c57124b572 ios-voice-processor: 8e32d7f980a06d392d128ef1cd19cf6ddcaca3c1 - Leopard-iOS: ba60cf23fb79ffc01bbefbbd4e063cb2a102f352 + Leopard-iOS: 8c94dcf886800b4ed361c1c6af763780ef16f722 leopard-react-native: b49c92e652221204b081795393f208e994030d95 RCT-Folly: 4d8508a426467c48885f1151029bc15fa5d7b3b8 RCTRequired: 530916cd48c5f7cf1fc16966ad5ea01638ca4799 @@ -455,6 +455,6 @@ SPEC CHECKSUMS: RNFS: 4ac0f0ea233904cb798630b3c077808c06931688 Yoga: 0bc4b37c3b8a345336ff601e2cf7d9704bab7e93 -PODFILE CHECKSUM: 28c52d83e112f7d1b9c8721ad688775a5ff695d9 +PODFILE CHECKSUM: 33ee1b875e6a796a6ef55a5834330ed61208a9f4 COCOAPODS: 1.11.3 diff --git a/demo/react-native/package.json b/demo/react-native/package.json index af1c06fd..37937e20 100644 --- a/demo/react-native/package.json +++ b/demo/react-native/package.json @@ -14,7 +14,7 @@ "ios-bundle": "node scripts/run_demo.js bundle --dev false --platform ios --entry-file index.js --bundle-output ios/app.jsbundle" }, "dependencies": { - "@picovoice/leopard-react-native": "~2.0.0", + "@picovoice/leopard-react-native": "~2.0.1", "@picovoice/react-native-voice-processor": "~1.2.0", "@react-native-picker/picker": "^1.9.2", "react": "^17.0.2", diff --git a/demo/react-native/yarn.lock b/demo/react-native/yarn.lock index 504c69ea..3e9f6ad4 100644 --- a/demo/react-native/yarn.lock +++ b/demo/react-native/yarn.lock @@ -852,10 +852,10 @@ "@nodelib/fs.scandir" "2.1.5" fastq "^1.6.0" -"@picovoice/leopard-react-native@~2.0.0": - version "2.0.0" - resolved "https://registry.yarnpkg.com/@picovoice/leopard-react-native/-/leopard-react-native-2.0.0.tgz#7a6c15193d6f6876accffec66b9837f5c05efdc6" - integrity sha512-SU8gMcrXeFUscFshRcoO9pOv8AXM1EePFcZdushiabatg7OmAF/GyadVK7EzJWRh7+9xJik6lgg2vRsLIiD3+g== +"@picovoice/leopard-react-native@~2.0.1": + version "2.0.1" + resolved "https://registry.yarnpkg.com/@picovoice/leopard-react-native/-/leopard-react-native-2.0.1.tgz#57318038361935a62ee23735e20af0d490806f1a" + integrity sha512-jcqYIaV/dQ0HXAqBpAJQwwGJW+r1YTofucVb3neWcs8ef2y6n5NCv7ymCPE/y1hyI9vUk75mLtXQccDZkv1mDg== "@picovoice/react-native-voice-processor@~1.2.0": version "1.2.0"