react-native-acoustic-connect-beta 18.0.38 → 18.0.39
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.
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
## [18.0.39](https://github.com/aipoweredmarketer/react-native-acoustic-connect-beta/compare/18.0.38...18.0.39) (2026-06-23)
|
|
1
2
|
## [18.0.38](https://github.com/aipoweredmarketer/react-native-acoustic-connect-beta/compare/18.0.37...18.0.38) (2026-06-22)
|
|
2
3
|
## [18.0.37](https://github.com/aipoweredmarketer/react-native-acoustic-connect-beta/compare/18.0.36...18.0.37) (2026-06-22)
|
|
3
4
|
## [18.0.35](https://github.com/aipoweredmarketer/react-native-acoustic-connect-beta/compare/18.0.34...18.0.35) (2026-06-15)
|
package/cli/doctor.mjs
CHANGED
|
@@ -35,6 +35,12 @@ import {
|
|
|
35
35
|
// (plugin/src/withConnectNSE.ts: APP_GROUP_PATTERN).
|
|
36
36
|
const APP_GROUP_PATTERN = /^group\.[A-Za-z0-9.-]+$/
|
|
37
37
|
|
|
38
|
+
// The committed sample ships placeholder identifiers (com.example.*) that the
|
|
39
|
+
// consumer is expected to replace with their own — setting app.json identity is
|
|
40
|
+
// the normal Expo workflow, not something the SDK rewrites for you. Flag a value
|
|
41
|
+
// still on the placeholder so it isn't shipped by accident.
|
|
42
|
+
const PLACEHOLDER_ID_PREFIX = 'com.example.'
|
|
43
|
+
|
|
38
44
|
// Java reserved words (+ literals) that cannot appear as a package segment.
|
|
39
45
|
// Expo uses android.package as the Java/Kotlin namespace, so any segment that
|
|
40
46
|
// is a keyword breaks the Gradle build ("not a valid Java package name").
|
|
@@ -145,6 +151,20 @@ function checkAppJson(reporter, dir) {
|
|
|
145
151
|
validateAndroidPackage(reporter, 'android.package', androidPackage)
|
|
146
152
|
if (iosBundleId) reporter.pass('ios.bundleIdentifier', iosBundleId)
|
|
147
153
|
else reporter.warn('ios.bundleIdentifier', 'not set in app.json')
|
|
154
|
+
|
|
155
|
+
// The sample ships placeholder ids; warn if they haven't been replaced. We
|
|
156
|
+
// only flag — setting them is the standard Expo step, owned by the developer
|
|
157
|
+
// (or injected by the test-automation pipeline), not rewritten by the SDK.
|
|
158
|
+
for (const [label, value] of [
|
|
159
|
+
['ios.bundleIdentifier', iosBundleId],
|
|
160
|
+
['android.package', androidPackage],
|
|
161
|
+
]) {
|
|
162
|
+
if (value && value.startsWith(PLACEHOLDER_ID_PREFIX))
|
|
163
|
+
reporter.warn(
|
|
164
|
+
label,
|
|
165
|
+
`still the sample placeholder "${value}" — set your own in app.json before building (standard Expo step)`,
|
|
166
|
+
)
|
|
167
|
+
}
|
|
148
168
|
return {androidPackage, iosBundleId}
|
|
149
169
|
}
|
|
150
170
|
|
package/package.json
CHANGED
|
@@ -214,7 +214,7 @@
|
|
|
214
214
|
"source": "src/index",
|
|
215
215
|
"summary": "react-native ios android tealeaf connect cxa wxca er enhanced-replay",
|
|
216
216
|
"types": "./lib/typescript/src/index.d.ts",
|
|
217
|
-
"version": "18.0.
|
|
217
|
+
"version": "18.0.39",
|
|
218
218
|
"workspaces": [
|
|
219
219
|
"example",
|
|
220
220
|
"Examples/bare-workflow"
|