react-native-acoustic-connect-beta 16.0.15 → 16.0.17
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.
|
|
18
|
+
"react-native-acoustic-connect-beta": "16.0.17",
|
|
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,10 +52,13 @@ pipeline {
|
|
|
51
52
|
steps {
|
|
52
53
|
echo 'Building..'
|
|
53
54
|
script{
|
|
54
|
-
echo "
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
55
|
+
echo "genBuild:${genBuild}"
|
|
56
|
+
if (genBuild) {
|
|
57
|
+
echo "run using react native"
|
|
58
|
+
runCMD("cd ${testAppDir} && yarn")
|
|
59
|
+
runCMD("cd ${testAppDir} && yarn ios")
|
|
60
|
+
runCMD("killall node")
|
|
61
|
+
}
|
|
58
62
|
}
|
|
59
63
|
}
|
|
60
64
|
}
|
|
@@ -73,11 +77,14 @@ pipeline {
|
|
|
73
77
|
steps {
|
|
74
78
|
echo 'Building..'
|
|
75
79
|
script{
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
80
|
+
echo "genBuild:${genBuild}"
|
|
81
|
+
if (genBuild) {
|
|
82
|
+
checkEmulatorReady()
|
|
83
|
+
echo "run using react native"
|
|
84
|
+
runCMD("cd ${testAppDir} && yarn")
|
|
85
|
+
runCMD("cd ${testAppDir} && yarn android")
|
|
86
|
+
runCMD("killall node")
|
|
87
|
+
}
|
|
81
88
|
}
|
|
82
89
|
}
|
|
83
90
|
}
|
|
@@ -92,6 +99,7 @@ pipeline {
|
|
|
92
99
|
steps {
|
|
93
100
|
echo 'Publish Beta....'
|
|
94
101
|
script{
|
|
102
|
+
echo "genBuild:${genBuild}"
|
|
95
103
|
if (genBuild) {
|
|
96
104
|
publishBeta()
|
|
97
105
|
}
|
package/latestChanges
CHANGED
package/package.json
CHANGED