react-native-acoustic-connect-beta 18.0.14 → 18.0.16

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.
Files changed (97) hide show
  1. package/Examples/SampleUI/.detoxrc.js +83 -0
  2. package/Examples/SampleUI/ConnectConfig.json +2 -2
  3. package/Examples/SampleUI/android/app/build.gradle +3 -0
  4. package/Examples/SampleUI/android/app/src/main/java/com/sampleui/MainActivity.kt +0 -35
  5. package/Examples/SampleUI/android/settings.gradle +1 -1
  6. package/Examples/SampleUI/package.json +8 -6
  7. package/Examples/SampleUI/scripts/integration-test-android.sh +292 -0
  8. package/Examples/SampleUI/src/Examples/DialogExample.tsx +88 -2
  9. package/Examples/SampleUI/src/Examples/Dialogs/DialogTrackingTest.tsx +307 -0
  10. package/Examples/SampleUI/src/Examples/Dialogs/index.tsx +37 -0
  11. package/Examples/SampleUI/src/index.native.tsx +4 -5
  12. package/android/build.gradle +2 -2
  13. package/android/src/main/assets/ConnectAdvancedConfig.json +1 -1
  14. package/android/src/main/java/com/acousticconnectrn/HybridAcousticConnectRN.kt +787 -490
  15. package/ios/HybridAcousticConnectRN.swift +75 -0
  16. package/lib/commonjs/TLTRN.js +69 -0
  17. package/lib/commonjs/TLTRN.js.map +1 -1
  18. package/lib/commonjs/components/Connect.js +5 -1
  19. package/lib/commonjs/components/Connect.js.map +1 -1
  20. package/lib/commonjs/docs/DialogTracking.md +252 -0
  21. package/lib/commonjs/docs/NativeImplementation.md +176 -0
  22. package/lib/commonjs/examples/DialogTrackingExample.js +175 -0
  23. package/lib/commonjs/examples/DialogTrackingExample.js.map +1 -0
  24. package/lib/commonjs/examples/HOCDialogExample.js +296 -0
  25. package/lib/commonjs/examples/HOCDialogExample.js.map +1 -0
  26. package/lib/commonjs/index.js +28 -0
  27. package/lib/commonjs/index.js.map +1 -1
  28. package/lib/commonjs/utils/DialogDebugger.js +216 -0
  29. package/lib/commonjs/utils/DialogDebugger.js.map +1 -0
  30. package/lib/commonjs/utils/DialogListener.js +203 -0
  31. package/lib/commonjs/utils/DialogListener.js.map +1 -0
  32. package/lib/commonjs/utils/useDialogTracking.js +107 -0
  33. package/lib/commonjs/utils/useDialogTracking.js.map +1 -0
  34. package/lib/commonjs/utils/withAcousticAutoDialog.js +282 -0
  35. package/lib/commonjs/utils/withAcousticAutoDialog.js.map +1 -0
  36. package/lib/module/TLTRN.js +69 -0
  37. package/lib/module/TLTRN.js.map +1 -1
  38. package/lib/module/components/Connect.js +5 -1
  39. package/lib/module/components/Connect.js.map +1 -1
  40. package/lib/module/docs/DialogTracking.md +252 -0
  41. package/lib/module/docs/NativeImplementation.md +176 -0
  42. package/lib/module/examples/DialogTrackingExample.js +172 -0
  43. package/lib/module/examples/DialogTrackingExample.js.map +1 -0
  44. package/lib/module/examples/HOCDialogExample.js +292 -0
  45. package/lib/module/examples/HOCDialogExample.js.map +1 -0
  46. package/lib/module/index.js +5 -1
  47. package/lib/module/index.js.map +1 -1
  48. package/lib/module/utils/DialogDebugger.js +211 -0
  49. package/lib/module/utils/DialogDebugger.js.map +1 -0
  50. package/lib/module/utils/DialogListener.js +199 -0
  51. package/lib/module/utils/DialogListener.js.map +1 -0
  52. package/lib/module/utils/useDialogTracking.js +102 -0
  53. package/lib/module/utils/useDialogTracking.js.map +1 -0
  54. package/lib/module/utils/withAcousticAutoDialog.js +275 -0
  55. package/lib/module/utils/withAcousticAutoDialog.js.map +1 -0
  56. package/lib/typescript/src/TLTRN.d.ts +7 -0
  57. package/lib/typescript/src/TLTRN.d.ts.map +1 -1
  58. package/lib/typescript/src/components/Connect.d.ts +1 -0
  59. package/lib/typescript/src/components/Connect.d.ts.map +1 -1
  60. package/lib/typescript/src/examples/DialogTrackingExample.d.ts +17 -0
  61. package/lib/typescript/src/examples/DialogTrackingExample.d.ts.map +1 -0
  62. package/lib/typescript/src/examples/HOCDialogExample.d.ts +21 -0
  63. package/lib/typescript/src/examples/HOCDialogExample.d.ts.map +1 -0
  64. package/lib/typescript/src/index.d.ts +5 -1
  65. package/lib/typescript/src/index.d.ts.map +1 -1
  66. package/lib/typescript/src/specs/react-native-acoustic-connect.nitro.d.ts +4 -0
  67. package/lib/typescript/src/specs/react-native-acoustic-connect.nitro.d.ts.map +1 -1
  68. package/lib/typescript/src/utils/DialogDebugger.d.ts +58 -0
  69. package/lib/typescript/src/utils/DialogDebugger.d.ts.map +1 -0
  70. package/lib/typescript/src/utils/DialogListener.d.ts +85 -0
  71. package/lib/typescript/src/utils/DialogListener.d.ts.map +1 -0
  72. package/lib/typescript/src/utils/useDialogTracking.d.ts +25 -0
  73. package/lib/typescript/src/utils/useDialogTracking.d.ts.map +1 -0
  74. package/lib/typescript/src/utils/withAcousticAutoDialog.d.ts +37 -0
  75. package/lib/typescript/src/utils/withAcousticAutoDialog.d.ts.map +1 -0
  76. package/nitrogen/generated/android/c++/JHybridAcousticConnectRNSpec.cpp +26 -0
  77. package/nitrogen/generated/android/c++/JHybridAcousticConnectRNSpec.hpp +4 -0
  78. package/nitrogen/generated/android/kotlin/com/margelo/nitro/acousticconnectrn/HybridAcousticConnectRNSpec.kt +16 -0
  79. package/nitrogen/generated/ios/c++/HybridAcousticConnectRNSpecSwift.hpp +32 -0
  80. package/nitrogen/generated/ios/swift/HybridAcousticConnectRNSpec.swift +4 -0
  81. package/nitrogen/generated/ios/swift/HybridAcousticConnectRNSpec_cxx.swift +71 -0
  82. package/nitrogen/generated/shared/c++/HybridAcousticConnectRNSpec.cpp +4 -0
  83. package/nitrogen/generated/shared/c++/HybridAcousticConnectRNSpec.hpp +4 -0
  84. package/package.json +1 -1
  85. package/scripts/ConnectConfig.json +1 -1
  86. package/src/TLTRN.ts +75 -0
  87. package/src/components/Connect.tsx +6 -1
  88. package/src/docs/DialogTracking.md +252 -0
  89. package/src/docs/NativeImplementation.md +176 -0
  90. package/src/examples/DialogTrackingExample.tsx +163 -0
  91. package/src/examples/HOCDialogExample.tsx +253 -0
  92. package/src/index.ts +5 -1
  93. package/src/specs/react-native-acoustic-connect.nitro.ts +5 -0
  94. package/src/utils/DialogDebugger.ts +224 -0
  95. package/src/utils/DialogListener.ts +238 -0
  96. package/src/utils/useDialogTracking.ts +102 -0
  97. package/src/utils/withAcousticAutoDialog.tsx +312 -0
@@ -0,0 +1,307 @@
1
+ import * as React from 'react';
2
+ import { View, Text, TouchableOpacity, StyleSheet, Alert, ScrollView } from 'react-native';
3
+
4
+ interface DialogTrackingTestProps {
5
+ visible: boolean;
6
+ close: () => void;
7
+ }
8
+
9
+ const DialogTrackingTest: React.FC<DialogTrackingTestProps> = ({ visible, close }) => {
10
+ // Test Alert.alert tracking (this should work automatically)
11
+ const testAlertTracking = () => {
12
+ console.log('🧪 Testing Alert.alert tracking...');
13
+ Alert.alert(
14
+ 'Test Alert',
15
+ 'This is a test alert for dialog tracking',
16
+ [
17
+ { text: 'Cancel', style: 'cancel' },
18
+ { text: 'OK', onPress: () => console.log('✅ OK pressed') }
19
+ ]
20
+ );
21
+ };
22
+
23
+ // Test direct native API call
24
+ const testNativeDialogAPI = async () => {
25
+ console.log('🧪 Testing direct native dialog API...');
26
+ try {
27
+ const AcousticConnectRN = require('react-native-acoustic-connect-beta').default;
28
+ console.log('🔍 AcousticConnectRN methods available:', Object.keys(AcousticConnectRN));
29
+
30
+ if (typeof AcousticConnectRN.logDialogShowEvent === 'function') {
31
+ const result = await AcousticConnectRN.logDialogShowEvent('test-dialog', 'Test Dialog', 'test');
32
+ console.log('Native dialog API result:', result);
33
+ if (result) {
34
+ console.log('✅ Native dialog API call successful');
35
+ } else {
36
+ console.log('❌ Native dialog API call returned false - method may not be implemented on native side');
37
+ }
38
+ } else {
39
+ console.log('❌ logDialogShowEvent method not found on AcousticConnectRN');
40
+ }
41
+ } catch (error) {
42
+ console.error('❌ Native dialog API error:', error);
43
+ }
44
+ };
45
+
46
+ // Test TLTRN dialog tracking
47
+ const testTLTRNDialogTracking = async () => {
48
+ console.log('🧪 Testing TLTRN dialog tracking...');
49
+ try {
50
+ const { TLTRN } = require('react-native-acoustic-connect-beta');
51
+ console.log('🔍 TLTRN methods available:', Object.keys(TLTRN));
52
+
53
+ if (typeof TLTRN.logDialogShowEvent === 'function') {
54
+ const result = await TLTRN.logDialogShowEvent('tltrn-test', 'TLTRN Test Dialog', 'test');
55
+ console.log('TLTRN dialog tracking result:', result);
56
+ if (result) {
57
+ console.log('✅ TLTRN dialog tracking successful');
58
+ } else {
59
+ console.log('❌ TLTRN dialog tracking returned false - native method may not be implemented');
60
+ }
61
+ } else {
62
+ console.log('❌ TLTRN.logDialogShowEvent method not found');
63
+ }
64
+ } catch (error) {
65
+ console.error('❌ TLTRN dialog tracking error:', error);
66
+ }
67
+ };
68
+
69
+ // Test DialogListener functionality
70
+ const testDialogListener = () => {
71
+ console.log('🧪 Testing DialogListener...');
72
+ try {
73
+ const { DialogListener } = require('react-native-acoustic-connect-beta');
74
+ const dialogListener = DialogListener.getInstance();
75
+ console.log('✅ DialogListener instance:', dialogListener);
76
+ console.log('🔍 DialogListener isIntercepting:', (dialogListener as any).isIntercepting);
77
+ console.log('🔍 DialogListener active dialogs:', dialogListener.getActiveDialogs());
78
+ } catch (error) {
79
+ console.error('❌ DialogListener test error:', error);
80
+ }
81
+ };
82
+
83
+ // Test useDialogTracking hook
84
+ const testUseDialogTracking = () => {
85
+ console.log('🧪 Testing useDialogTracking hook...');
86
+ try {
87
+ const { useDialogTracking } = require('react-native-acoustic-connect-beta');
88
+ console.log('✅ useDialogTracking hook available');
89
+
90
+ // Note: This can only be tested within a React component
91
+ console.log('ℹ️ useDialogTracking hook can only be used within React components');
92
+ } catch (error) {
93
+ console.error('❌ useDialogTracking test error:', error);
94
+ }
95
+ };
96
+
97
+ // Test dialog dismiss event
98
+ const testDialogDismiss = async () => {
99
+ console.log('🧪 Testing dialog dismiss event...');
100
+ try {
101
+ const { TLTRN } = require('react-native-acoustic-connect-beta');
102
+ const result = await TLTRN.logDialogDismissEvent('test-dialog', 'user_action');
103
+ console.log('Dialog dismiss result:', result);
104
+ if (result) {
105
+ console.log('✅ Dialog dismiss event successful');
106
+ } else {
107
+ console.log('❌ Dialog dismiss event returned false');
108
+ }
109
+ } catch (error) {
110
+ console.error('❌ Dialog dismiss error:', error);
111
+ }
112
+ };
113
+
114
+ // Test dialog button click event
115
+ const testDialogButtonClick = async () => {
116
+ console.log('🧪 Testing dialog button click event...');
117
+ try {
118
+ const { TLTRN } = require('react-native-acoustic-connect-beta');
119
+ const result = await TLTRN.logDialogButtonClickEvent('test-dialog', 'Test Button', 0);
120
+ console.log('Dialog button click result:', result);
121
+ if (result) {
122
+ console.log('✅ Dialog button click event successful');
123
+ } else {
124
+ console.log('❌ Dialog button click event returned false');
125
+ }
126
+ } catch (error) {
127
+ console.error('❌ Dialog button click error:', error);
128
+ }
129
+ };
130
+
131
+ // Test dialog custom event
132
+ const testDialogCustomEvent = async () => {
133
+ console.log('🧪 Testing dialog custom event...');
134
+ try {
135
+ const { TLTRN } = require('react-native-acoustic-connect-beta');
136
+ const result = await TLTRN.logDialogCustomEvent('test-dialog', 'custom_action', { action: 'test' });
137
+ console.log('Dialog custom event result:', result);
138
+ if (result) {
139
+ console.log('✅ Dialog custom event successful');
140
+ } else {
141
+ console.log('❌ Dialog custom event returned false');
142
+ }
143
+ } catch (error) {
144
+ console.error('❌ Dialog custom event error:', error);
145
+ }
146
+ };
147
+
148
+ // Test manual dialog tracking
149
+ const testManualDialogTracking = () => {
150
+ console.log('🧪 Testing manual dialog tracking...');
151
+ try {
152
+ const { useDialogTracking } = require('react-native-acoustic-connect-beta');
153
+ console.log('✅ Manual dialog tracking available via useDialogTracking hook');
154
+ console.log('ℹ️ This is the recommended approach for custom dialogs');
155
+ } catch (error) {
156
+ console.error('❌ Manual dialog tracking error:', error);
157
+ }
158
+ };
159
+
160
+ if (!visible) return null;
161
+
162
+ return (
163
+ <View style={styles.overlay}>
164
+ <View style={styles.container}>
165
+ <Text style={styles.title}>Dialog Tracking Test</Text>
166
+
167
+ <ScrollView style={styles.scrollView} showsVerticalScrollIndicator={false}>
168
+ <TouchableOpacity style={styles.button} onPress={testAlertTracking}>
169
+ <Text style={styles.buttonText}>✅ Test Alert.alert (Auto)</Text>
170
+ </TouchableOpacity>
171
+
172
+ <TouchableOpacity style={styles.button} onPress={testDialogListener}>
173
+ <Text style={styles.buttonText}>🔍 Test DialogListener</Text>
174
+ </TouchableOpacity>
175
+
176
+ <TouchableOpacity style={styles.button} onPress={testUseDialogTracking}>
177
+ <Text style={styles.buttonText}>🔧 Test useDialogTracking Hook</Text>
178
+ </TouchableOpacity>
179
+
180
+ <TouchableOpacity style={styles.button} onPress={testManualDialogTracking}>
181
+ <Text style={styles.buttonText}>📝 Test Manual Tracking</Text>
182
+ </TouchableOpacity>
183
+
184
+ <TouchableOpacity style={styles.button} onPress={testNativeDialogAPI}>
185
+ <Text style={styles.buttonText}>🔌 Test Native Dialog API</Text>
186
+ </TouchableOpacity>
187
+
188
+ <TouchableOpacity style={styles.button} onPress={testTLTRNDialogTracking}>
189
+ <Text style={styles.buttonText}>🔌 Test TLTRN Dialog Tracking</Text>
190
+ </TouchableOpacity>
191
+
192
+ <TouchableOpacity style={styles.button} onPress={testDialogDismiss}>
193
+ <Text style={styles.buttonText}>🔌 Test Dialog Dismiss</Text>
194
+ </TouchableOpacity>
195
+
196
+ <TouchableOpacity style={styles.button} onPress={testDialogButtonClick}>
197
+ <Text style={styles.buttonText}>🔌 Test Dialog Button Click</Text>
198
+ </TouchableOpacity>
199
+
200
+ <TouchableOpacity style={styles.button} onPress={testDialogCustomEvent}>
201
+ <Text style={styles.buttonText}>🔌 Test Dialog Custom Event</Text>
202
+ </TouchableOpacity>
203
+ </ScrollView>
204
+
205
+ <TouchableOpacity style={styles.closeButton} onPress={close}>
206
+ <Text style={styles.closeButtonText}>Close</Text>
207
+ </TouchableOpacity>
208
+
209
+ <Text style={styles.info}>
210
+ Check console for tracking logs. Look for 🔍, 🧪, ✅, and ❌ emojis.
211
+ </Text>
212
+
213
+ <Text style={styles.warning}>
214
+ ⚠️ Native API tests may fail if methods aren't implemented on native side.
215
+ </Text>
216
+ </View>
217
+ </View>
218
+ );
219
+ };
220
+
221
+ const styles = StyleSheet.create({
222
+ overlay: {
223
+ position: 'absolute',
224
+ top: 0,
225
+ left: 0,
226
+ right: 0,
227
+ bottom: 0,
228
+ backgroundColor: 'rgba(0, 0, 0, 0.5)',
229
+ justifyContent: 'center',
230
+ alignItems: 'center',
231
+ zIndex: 1000,
232
+ },
233
+ container: {
234
+ backgroundColor: 'white',
235
+ borderRadius: 12,
236
+ padding: 20,
237
+ margin: 20,
238
+ maxWidth: 400,
239
+ maxHeight: '80%',
240
+ shadowColor: '#000',
241
+ shadowOffset: { width: 0, height: 2 },
242
+ shadowOpacity: 0.25,
243
+ shadowRadius: 3.84,
244
+ elevation: 5,
245
+ },
246
+ title: {
247
+ fontSize: 18,
248
+ fontWeight: 'bold',
249
+ marginBottom: 15,
250
+ textAlign: 'center',
251
+ color: '#333',
252
+ },
253
+ scrollView: {
254
+ maxHeight: 400,
255
+ },
256
+ button: {
257
+ backgroundColor: '#007AFF',
258
+ padding: 12,
259
+ borderRadius: 8,
260
+ marginBottom: 8,
261
+ shadowColor: '#000',
262
+ shadowOffset: { width: 0, height: 1 },
263
+ shadowOpacity: 0.22,
264
+ shadowRadius: 2.22,
265
+ elevation: 3,
266
+ },
267
+ buttonText: {
268
+ color: 'white',
269
+ textAlign: 'center',
270
+ fontWeight: '600',
271
+ fontSize: 14,
272
+ },
273
+ closeButton: {
274
+ backgroundColor: '#FF3B30',
275
+ padding: 12,
276
+ borderRadius: 8,
277
+ marginTop: 10,
278
+ marginBottom: 10,
279
+ shadowColor: '#000',
280
+ shadowOffset: { width: 0, height: 1 },
281
+ shadowOpacity: 0.22,
282
+ shadowRadius: 2.22,
283
+ elevation: 3,
284
+ },
285
+ closeButtonText: {
286
+ color: 'white',
287
+ textAlign: 'center',
288
+ fontWeight: '600',
289
+ fontSize: 14,
290
+ },
291
+ info: {
292
+ fontSize: 12,
293
+ color: '#666',
294
+ textAlign: 'center',
295
+ fontStyle: 'italic',
296
+ marginTop: 5,
297
+ },
298
+ warning: {
299
+ fontSize: 11,
300
+ color: '#FF9500',
301
+ textAlign: 'center',
302
+ marginTop: 5,
303
+ fontWeight: '500',
304
+ },
305
+ });
306
+
307
+ export default DialogTrackingTest;
@@ -5,3 +5,40 @@ export { default as DialogWithRadioBtns } from './DialogWithRadioBtns';
5
5
  export { default as UndismissableDialog } from './UndismissableDialog';
6
6
  export { default as DialogWithIcon } from './DialogWithIcon';
7
7
  export { default as DialogWithDismissableBackButton } from './DialogWithDismissableBackButton';
8
+ export { default as DialogTrackingTest } from './DialogTrackingTest';
9
+
10
+
11
+ /**
12
+ * This is for future reference. Acoustic Dialog Wrapper/HOC, needs more work to be used in the app.
13
+ * It is commented out because it is not needed and is not used in the app.
14
+ * It is kept here for reference and to be used in the future if needed.
15
+ */
16
+ // import { withAcousticAutoDialog } from 'react-native-acoustic-connect-beta';
17
+ // import DialogWithCustomColors from './DialogWithCustomColors';
18
+ // import DialogWithLoadingIndicator from './DialogWithLoadingIndicator';
19
+ // import DialogWithLongText from './DialogWithLongText';
20
+ // import DialogWithRadioBtns from './DialogWithRadioBtns';
21
+ // import UndismissableDialog from './UndismissableDialog';
22
+ // import DialogWithIcon from './DialogWithIcon';
23
+ // import DialogWithDismissableBackButton from './DialogWithDismissableBackButton';
24
+ // import DialogTrackingTest from './DialogTrackingTest';
25
+
26
+ // // Create tracked versions of all dialog components
27
+ // const TrackedDialogWithCustomColors = withAcousticAutoDialog(DialogWithCustomColors);
28
+ // const TrackedDialogWithLoadingIndicator = withAcousticAutoDialog(DialogWithLoadingIndicator);
29
+ // const TrackedDialogWithLongText = withAcousticAutoDialog(DialogWithLongText);
30
+ // const TrackedDialogWithRadioBtns = withAcousticAutoDialog(DialogWithRadioBtns);
31
+ // const TrackedUndismissableDialog = withAcousticAutoDialog(UndismissableDialog);
32
+ // const TrackedDialogWithIcon = withAcousticAutoDialog(DialogWithIcon);
33
+ // const TrackedDialogWithDismissableBackButton = withAcousticAutoDialog(DialogWithDismissableBackButton);
34
+ // const TrackedDialogTrackingTest = withAcousticAutoDialog(DialogTrackingTest);
35
+
36
+ // // Export the tracked versions
37
+ // export { TrackedDialogWithCustomColors as DialogWithCustomColors };
38
+ // export { TrackedDialogWithLoadingIndicator as DialogWithLoadingIndicator };
39
+ // export { TrackedDialogWithLongText as DialogWithLongText };
40
+ // export { TrackedDialogWithRadioBtns as DialogWithRadioBtns };
41
+ // export { TrackedUndismissableDialog as UndismissableDialog };
42
+ // export { TrackedDialogWithIcon as DialogWithIcon };
43
+ // export { TrackedDialogWithDismissableBackButton as DialogWithDismissableBackButton };
44
+ // export { TrackedDialogTrackingTest as DialogTrackingTest };
@@ -13,7 +13,6 @@ import {
13
13
  import { useFonts } from 'expo-font';
14
14
  import { useKeepAwake } from 'expo-keep-awake';
15
15
  import { StatusBar } from 'expo-status-bar';
16
- // import * as Updates from 'expo-updates';
17
16
  import {
18
17
  Provider as PaperProvider,
19
18
  MD3DarkTheme,
@@ -65,7 +64,7 @@ export default function PaperExample() {
65
64
  useKeepAwake();
66
65
 
67
66
  // Add for Acoustic Connect SDK
68
- const navigationRef = useRef<NavigationContainerRef>(null);
67
+ const navigationRef = useRef<NavigationContainerRef<any>>(null);
69
68
 
70
69
  const [fontsLoaded] = useFonts({
71
70
  Abel: require('../assets/fonts/Abel-Regular.ttf'),
@@ -158,7 +157,7 @@ export default function PaperExample() {
158
157
 
159
158
  if (I18nManager.getConstants().isRTL !== rtl) {
160
159
  I18nManager.forceRTL(rtl);
161
- Updates.reloadAsync();
160
+ // Updates.reloadAsync(); // Removed as expo-updates is not available
162
161
  }
163
162
  };
164
163
 
@@ -243,10 +242,10 @@ export default function PaperExample() {
243
242
  <React.Fragment>
244
243
  <AcousticConnectBeta.Connect
245
244
  captureKeyboardEvents={true}
246
- navigationRef={navigationRef} // Pass the ref to Connect
245
+ captureDialogEvents={true}
247
246
  >
248
247
  <NavigationContainer
249
- ref={navigationRef} // Pass the same ref to NavigationContainer
248
+ ref={navigationRef} // Pass the ref to NavigationContainer
250
249
  theme={combinedTheme}
251
250
  initialState={initialState}
252
251
  onStateChange={(state) =>
@@ -144,7 +144,7 @@ allprojects {
144
144
  google()
145
145
  mavenCentral()
146
146
  maven { url="https://s01.oss.sonatype.org/content/groups/staging" }
147
-
147
+
148
148
  maven {
149
149
  // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
150
150
  url="$rootDir/../node_modules/react-native/android"
@@ -162,7 +162,7 @@ dependencies {
162
162
  implementation project(":react-native-nitro-modules")
163
163
 
164
164
  // Connect SDK libraries
165
- implementation 'io.github.go-acoustic:connect:10.4.29'
165
+ implementation 'io.github.go-acoustic:connect:10.4.48'
166
166
  // implementation 'io.github.go-acoustic:connect:+'
167
167
  // Connect SDK libraries
168
168
  // api 'io.github.go-acoustic:connect:+'
@@ -24,7 +24,7 @@
24
24
  "IpPlaceholder": "N/A",
25
25
  "KillSwitchAsync": true,
26
26
  "KillSwitchDelay": 300,
27
- "LibraryVersion": "10.4.59",
27
+ "LibraryVersion": "10.4.61",
28
28
  "LogFullRequestResponsePayloads": true,
29
29
  "MessageTypeHeader": "WorklightHit",
30
30
  "MessageTypes": "4,5",