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.3",
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
- // import { Tealeaf } from 'react-native-acoustic-ea-tealeaf-beta';
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
- // <Tealeaf>
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
- // </Tealeaf>
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 master")
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, "master", commitDesciption)
564
+ gitPush("${releaseDir}", commitMsg, currentVersion, "main", commitDesciption)
565
565
  }
566
566
 
567
567
  def populateSlackMessageGlobalVariables() {
package/latestChanges CHANGED
@@ -10,9 +10,9 @@ Improvements:
10
10
 
11
11
  Our environment for this release:
12
12
 
13
- - Xcode 14.2
14
- - MacOS 13.2
15
- - iOS 12.x to 15.x
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
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.3"
41
+ "version": "16.0.5"
42
42
  }