react-native-acoustic-connect-beta 16.0.7 → 16.0.8

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.
@@ -326,13 +326,19 @@
326
326
  );
327
327
  inputPaths = (
328
328
  "${PODS_ROOT}/Target Support Files/Pods-KitchenSinkappnativebase/Pods-KitchenSinkappnativebase-resources.sh",
329
+ "${PODS_ROOT}/ConnectReactNativeDebug/SDKs/iOS/DebugConnectReactNative/ConnectResources.bundle",
330
+ "${PODS_ROOT}/EOCoreDebug/SDKs/iOS/Debug/EOCoreSettings.bundle",
329
331
  "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants/EXConstants.bundle",
330
332
  "${PODS_CONFIGURATION_BUILD_DIR}/React-Core/AccessibilityResources.bundle",
333
+ "${PODS_ROOT}/TealeafReactNativeDebug/SDKs/iOS/DebugTealeafReactNative/TLFResources.bundle",
331
334
  );
332
335
  name = "[CP] Copy Pods Resources";
333
336
  outputPaths = (
337
+ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/ConnectResources.bundle",
338
+ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/EOCoreSettings.bundle",
334
339
  "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/EXConstants.bundle",
335
340
  "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/AccessibilityResources.bundle",
341
+ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/TLFResources.bundle",
336
342
  );
337
343
  runOnlyForDeploymentPostprocessing = 0;
338
344
  shellPath = /bin/sh;
@@ -346,10 +352,16 @@
346
352
  );
347
353
  inputPaths = (
348
354
  "${PODS_ROOT}/Target Support Files/Pods-KitchenSinkappnativebase/Pods-KitchenSinkappnativebase-frameworks.sh",
355
+ "${PODS_XCFRAMEWORKS_BUILD_DIR}/ConnectReactNativeDebug/Core/ConnectReactNative.framework/ConnectReactNative",
356
+ "${PODS_XCFRAMEWORKS_BUILD_DIR}/EOCoreDebug/EOCore.framework/EOCore",
357
+ "${PODS_XCFRAMEWORKS_BUILD_DIR}/TealeafReactNativeDebug/Core/TealeafReactNative.framework/TealeafReactNative",
349
358
  "${PODS_XCFRAMEWORKS_BUILD_DIR}/hermes-engine/Pre-built/hermes.framework/hermes",
350
359
  );
351
360
  name = "[CP] Embed Pods Frameworks";
352
361
  outputPaths = (
362
+ "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/ConnectReactNative.framework",
363
+ "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/EOCore.framework",
364
+ "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/TealeafReactNative.framework",
353
365
  "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/hermes.framework",
354
366
  );
355
367
  runOnlyForDeploymentPostprocessing = 0;
@@ -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.6",
18
+ "react-native-acoustic-connect-beta": "16.0.7",
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
@@ -38,5 +38,5 @@
38
38
  "verifyConnectSetup": "node scripts/verifyConnectSetup.js $INIT_CWD"
39
39
  },
40
40
  "summary": "react-native ios android tealeaf connect cxa wxca er enhanced-replay",
41
- "version": "16.0.7"
41
+ "version": "16.0.8"
42
42
  }
@@ -3,7 +3,7 @@ package = JSON.parse(File.read('package.json'))
3
3
  connectConfig = JSON.parse(File.read('../../ConnectConfig.json'))
4
4
  repository = package["repository"]["url"]
5
5
  useRelease = connectConfig["Connect"]["useRelease"]
6
- dependencyName = useRelease ? 'ConnectReactNative' : 'ConnectReactNativeDebug'
6
+ dependencyName = useRelease ? 'AcousticConnectReactNative' : 'AcousticConnectReactNativeDebug'
7
7
  iOSVersion = connectConfig["Connect"]["iOSVersion"]
8
8
  dependencyVersion = iOSVersion.to_s.empty? ? "" : ", '#{iOSVersion}'"
9
9