react-native-acoustic-connect-beta 16.0.9 → 16.0.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Example/nativebase-v3-kitchensink/android/gradle.properties +2 -1
- package/Example/nativebase-v3-kitchensink/ios/KitchenSinkappnativebase.xcodeproj/project.pbxproj +2 -4
- package/Example/nativebase-v3-kitchensink/ios/Podfile +2 -1
- package/Example/nativebase-v3-kitchensink/package.json +1 -1
- package/package.json +1 -1
|
@@ -39,7 +39,8 @@ newArchEnabled=false
|
|
|
39
39
|
|
|
40
40
|
# Use this property to enable or disable the Hermes JS engine.
|
|
41
41
|
# If set to false, you will be using JSC instead.
|
|
42
|
-
hermesEnabled=true
|
|
42
|
+
# hermesEnabled=true
|
|
43
|
+
hermesEnabled=false
|
|
43
44
|
|
|
44
45
|
# Enable GIF support in React Native images (~200 B increase)
|
|
45
46
|
expo.gif.enabled=true
|
package/Example/nativebase-v3-kitchensink/ios/KitchenSinkappnativebase.xcodeproj/project.pbxproj
CHANGED
|
@@ -355,14 +355,12 @@
|
|
|
355
355
|
"${PODS_XCFRAMEWORKS_BUILD_DIR}/AcousticConnectReactNativeDebug/Core/ConnectReactNative.framework/ConnectReactNative",
|
|
356
356
|
"${PODS_XCFRAMEWORKS_BUILD_DIR}/EOCoreDebug/EOCore.framework/EOCore",
|
|
357
357
|
"${PODS_XCFRAMEWORKS_BUILD_DIR}/TealeafReactNativeDebug/Core/TealeafReactNative.framework/TealeafReactNative",
|
|
358
|
-
"${PODS_XCFRAMEWORKS_BUILD_DIR}/hermes-engine/Pre-built/hermes.framework/hermes",
|
|
359
358
|
);
|
|
360
359
|
name = "[CP] Embed Pods Frameworks";
|
|
361
360
|
outputPaths = (
|
|
362
361
|
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/ConnectReactNative.framework",
|
|
363
362
|
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/EOCore.framework",
|
|
364
363
|
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/TealeafReactNative.framework",
|
|
365
|
-
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/hermes.framework",
|
|
366
364
|
);
|
|
367
365
|
runOnlyForDeploymentPostprocessing = 0;
|
|
368
366
|
shellPath = /bin/sh;
|
|
@@ -652,7 +650,7 @@
|
|
|
652
650
|
COPY_PHASE_STRIP = NO;
|
|
653
651
|
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
654
652
|
ENABLE_TESTABILITY = YES;
|
|
655
|
-
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" =
|
|
653
|
+
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "";
|
|
656
654
|
GCC_C_LANGUAGE_STANDARD = gnu99;
|
|
657
655
|
GCC_DYNAMIC_NO_PIC = NO;
|
|
658
656
|
GCC_NO_COMMON_BLOCKS = YES;
|
|
@@ -723,7 +721,7 @@
|
|
|
723
721
|
COPY_PHASE_STRIP = YES;
|
|
724
722
|
ENABLE_NS_ASSERTIONS = NO;
|
|
725
723
|
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
726
|
-
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" =
|
|
724
|
+
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "";
|
|
727
725
|
GCC_C_LANGUAGE_STANDARD = gnu99;
|
|
728
726
|
GCC_NO_COMMON_BLOCKS = YES;
|
|
729
727
|
GCC_PREPROCESSOR_DEFINITIONS = (
|
|
@@ -49,7 +49,8 @@ target 'KitchenSinkappnativebase' do
|
|
|
49
49
|
|
|
50
50
|
use_react_native!(
|
|
51
51
|
:path => config[:reactNativePath],
|
|
52
|
-
:hermes_enabled =>
|
|
52
|
+
:hermes_enabled => false,
|
|
53
|
+
# :hermes_enabled => podfile_properties['expo.jsEngine'] == nil || podfile_properties['expo.jsEngine'] == 'hermes',
|
|
53
54
|
:fabric_enabled => flags[:fabric_enabled],
|
|
54
55
|
# An absolute path to your application root.
|
|
55
56
|
:app_path => "#{Pod::Config.instance.installation_root}/..",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"react": "18.2.0",
|
|
16
16
|
"react-dom": "18.2.0",
|
|
17
17
|
"react-native": "0.72.10",
|
|
18
|
-
"react-native-acoustic-connect-beta": "16.0.
|
|
18
|
+
"react-native-acoustic-connect-beta": "16.0.11",
|
|
19
19
|
"react-native-gesture-handler": "~2.12.0",
|
|
20
20
|
"react-native-keyboard-aware-scroll-view": "^0.9.5",
|
|
21
21
|
"react-native-reanimated": "~3.3.0",
|
package/package.json
CHANGED