react-native-acoustic-connect-beta 16.0.4 → 16.0.5
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.
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"react": "18.2.0",
|
|
16
16
|
"react-dom": "18.1.0",
|
|
17
17
|
"react-native": "0.72.6",
|
|
18
|
-
"react-native-acoustic-connect-beta": "16.0.
|
|
18
|
+
"react-native-acoustic-connect-beta": "16.0.5",
|
|
19
19
|
"react-native-gesture-handler": "~2.8.0",
|
|
20
20
|
"react-native-keyboard-aware-scroll-view": "^0.9.5",
|
|
21
21
|
"react-native-reanimated": "~2.17.0",
|
|
@@ -2,11 +2,9 @@ import React, { Component } from 'react';
|
|
|
2
2
|
import { NavigationContainer } from '@react-navigation/native';
|
|
3
3
|
import { Box, useColorModeValue, useToken } from 'native-base';
|
|
4
4
|
import { RootStack } from '../../src/navigators/rootNavigator';
|
|
5
|
-
|
|
5
|
+
import { Connect, ConnectProfiler } from 'react-native-acoustic-connect-beta';
|
|
6
6
|
import { useRef } from 'react';
|
|
7
7
|
|
|
8
|
-
// import { TLProfiler} from 'react-native-acoustic-ea-tealeaf-beta';
|
|
9
|
-
|
|
10
8
|
export const Root = () => {
|
|
11
9
|
const navigationRef = useRef();
|
|
12
10
|
const [lightBg, darkBg] = useToken(
|
|
@@ -16,7 +14,7 @@ export const Root = () => {
|
|
|
16
14
|
);
|
|
17
15
|
const bgColor = useColorModeValue(lightBg, darkBg);
|
|
18
16
|
return (
|
|
19
|
-
|
|
17
|
+
<Connect>
|
|
20
18
|
<NavigationContainer
|
|
21
19
|
ref={navigationRef}
|
|
22
20
|
theme={{
|
|
@@ -39,6 +37,6 @@ export const Root = () => {
|
|
|
39
37
|
<RootStack />
|
|
40
38
|
</Box>
|
|
41
39
|
</NavigationContainer>
|
|
42
|
-
|
|
40
|
+
</Connect>
|
|
43
41
|
);
|
|
44
42
|
};
|
package/latestChanges
CHANGED
|
@@ -10,9 +10,9 @@ Improvements:
|
|
|
10
10
|
|
|
11
11
|
Our environment for this release:
|
|
12
12
|
|
|
13
|
-
- Xcode
|
|
14
|
-
- MacOS
|
|
15
|
-
- iOS
|
|
13
|
+
- Xcode 16.0
|
|
14
|
+
- MacOS 15.0.1
|
|
15
|
+
- iOS 13.x to 18.x
|
|
16
16
|
- Supported architectures:
|
|
17
17
|
- simulator
|
|
18
18
|
- arm64
|
|
@@ -25,3 +25,4 @@ Known Issues
|
|
|
25
25
|
|
|
26
26
|
- After iOS 13, library no longer supports iPad because of Apple changes in iPad OS.
|
|
27
27
|
- Dual sim features are in beta. Example information using multiple carriers.
|
|
28
|
+
|
package/package.json
CHANGED