react-native-acoustic-connect-beta 19.0.9 → 19.0.11

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,13 @@
1
+ ## 19.0.11 (2026-07-07)
2
+
3
+ ### Reverts
4
+
5
+ * Revert "Beta ReactNativeConnect build: 18.0.36" ([609ad7d](https://github.com/aipoweredmarketer/react-native-acoustic-connect-beta/commit/609ad7d3244ec06f27dced5864d40585c5b3c9cf))
6
+ ## 19.0.10 (2026-07-07)
7
+
8
+ ### Reverts
9
+
10
+ * Revert "Beta ReactNativeConnect build: 18.0.36" ([609ad7d](https://github.com/aipoweredmarketer/react-native-acoustic-connect-beta/commit/609ad7d3244ec06f27dced5864d40585c5b3c9cf))
1
11
  ## 19.0.9 (2026-07-03)
2
12
 
3
13
  ### Reverts
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "Connect": {
3
3
  "AndroidNotificationIconResName": "ic_notification",
4
- "AndroidVersion": "11.0.12-beta",
4
+ "AndroidVersion": "11.0.14-beta",
5
5
  "AppKey": "YOUR_CONNECT_APP_KEY_HERE",
6
6
  "KillSwitchUrl": "YOUR_KILL_SWITCH_URL_HERE",
7
7
  "PostMessageUrl": "YOUR_POST_MESSAGE_URL_HERE",
@@ -339,7 +339,21 @@ def updateGradle(mp, json){
339
339
  resolutionStrategy {
340
340
  componentSelection {
341
341
  all { selection ->
342
+ // Exempt the eocore artifact from beta rejection.
343
+ // Full Maven coordinate: io.github.go-acoustic:eocore
344
+ // (verified on Maven Central — the POM declares
345
+ // <groupId>io.github.go-acoustic</groupId> +
346
+ // <artifactId>eocore</artifactId>, so candidate.module is
347
+ // literally 'eocore').
348
+ // Unlike the other go-acoustic artifacts, eocore's RELEASE
349
+ // line carries a `-beta` suffix — Maven Central lists
350
+ // 2.1.24-beta as <release>/<latest>, and the release
351
+ // connect:11.0.13 → tealeaf:10.4.28 chain pins eocore
352
+ // transitively to that version. Without this carve-out the
353
+ // blanket `-beta` reject would drop a legitimate release
354
+ // artifact and break every useRelease=true build.
342
355
  if (selection.candidate.group == 'io.github.go-acoustic' &&
356
+ selection.candidate.module != 'eocore' &&
343
357
  selection.candidate.version.endsWith('-beta')) {
344
358
  selection.reject("useRelease is true — rejecting beta version ${selection.candidate.version}")
345
359
  }
@@ -24,7 +24,7 @@
24
24
  "IpPlaceholder": "N/A",
25
25
  "KillSwitchAsync": true,
26
26
  "KillSwitchDelay": 300,
27
- "LibraryVersion": "11.0.12-beta",
27
+ "LibraryVersion": "11.0.14-beta",
28
28
  "LogFullRequestResponsePayloads": true,
29
29
  "MessageTypeHeader": "WorklightHit",
30
30
  "MessageTypes": "4,5",
@@ -1,4 +1,4 @@
1
- #Fri Jul 03 04:49:41 PDT 2026
1
+ #Tue Jul 07 06:23:24 PDT 2026
2
2
  UseWhiteList=true
3
3
  PrintScreen=3
4
4
  UseRandomSample=false
package/package.json CHANGED
@@ -229,7 +229,7 @@
229
229
  "source": "src/index",
230
230
  "summary": "react-native ios android tealeaf connect cxa wxca er enhanced-replay",
231
231
  "types": "./lib/typescript/src/index.d.ts",
232
- "version": "19.0.9",
232
+ "version": "19.0.11",
233
233
  "workspaces": [
234
234
  "example",
235
235
  "Examples/bare-workflow"