react-native-acoustic-connect-beta 16.0.3 → 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/Jenkinsfile
CHANGED
|
@@ -463,7 +463,7 @@ def checkoutRepos() {
|
|
|
463
463
|
}
|
|
464
464
|
|
|
465
465
|
if (env.GIT_BRANCH.contains('master')) {
|
|
466
|
-
runCMD("cd ${tempTestDir} && git clone git@github.com:go-acoustic/react-native-acoustic-connect.git -b
|
|
466
|
+
runCMD("cd ${tempTestDir} && git clone git@github.com:go-acoustic/react-native-acoustic-connect.git -b main")
|
|
467
467
|
}
|
|
468
468
|
}
|
|
469
469
|
|
|
@@ -561,7 +561,7 @@ def publishRelease() {
|
|
|
561
561
|
|
|
562
562
|
// push repos
|
|
563
563
|
// gitPush("${buildDir}", commitMsg, currentVersion, srcBranch, commitDesciption) - there are no changes.
|
|
564
|
-
gitPush("${releaseDir}", commitMsg, currentVersion, "
|
|
564
|
+
gitPush("${releaseDir}", commitMsg, currentVersion, "main", commitDesciption)
|
|
565
565
|
}
|
|
566
566
|
|
|
567
567
|
def populateSlackMessageGlobalVariables() {
|
package/latestChanges
CHANGED
package/package.json
CHANGED