react-native-acoustic-connect-beta 16.0.16 → 16.0.18

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.2.0",
17
17
  "react-native": "0.72.10",
18
- "react-native-acoustic-connect-beta": "16.0.16",
18
+ "react-native-acoustic-connect-beta": "16.0.18",
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/Jenkinsfile CHANGED
@@ -29,6 +29,7 @@ pipeline {
29
29
  script {
30
30
  echo 'Set up settings..'
31
31
  setupGlobals("${env.GIT_BRANCH}")
32
+ echo "genBuild:${genBuild}"
32
33
  if (genBuild) {
33
34
  checkoutRepos()
34
35
  setupEmulator("A_34_RN")
@@ -51,6 +52,7 @@ pipeline {
51
52
  steps {
52
53
  echo 'Building..'
53
54
  script{
55
+ echo "genBuild:${genBuild}"
54
56
  if (genBuild) {
55
57
  echo "run using react native"
56
58
  runCMD("cd ${testAppDir} && yarn")
@@ -75,6 +77,7 @@ pipeline {
75
77
  steps {
76
78
  echo 'Building..'
77
79
  script{
80
+ echo "genBuild:${genBuild}"
78
81
  if (genBuild) {
79
82
  checkEmulatorReady()
80
83
  echo "run using react native"
@@ -96,6 +99,7 @@ pipeline {
96
99
  steps {
97
100
  echo 'Publish Beta....'
98
101
  script{
102
+ echo "genBuild:${genBuild}"
99
103
  if (genBuild) {
100
104
  publishBeta()
101
105
  }
@@ -573,7 +577,9 @@ def publishRelease() {
573
577
  def populateSlackMessageGlobalVariables() {
574
578
  getLastCommitMessage()
575
579
  getGitAuthor()
576
- getLibVersion()
580
+ if (genBuild) {
581
+ getLibVersion()
582
+ }
577
583
  }
578
584
 
579
585
  def getGitAuthor() {
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.16"
41
+ "version": "16.0.18"
42
42
  }