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

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.13 (2026-07-30)
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.12 (2026-07-09)
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.11 (2026-07-07)
2
12
 
3
13
  ### Reverts
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "Connect": {
3
3
  "AndroidNotificationIconResName": "ic_notification",
4
- "AndroidVersion": "11.0.14-beta",
4
+ "AndroidVersion": "11.0.16-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",
package/README.md CHANGED
@@ -13,6 +13,8 @@ For the full product overview see the
13
13
  - React 19.1.1 or newer (or whatever your RN version pins)
14
14
  - `react-native-nitro-modules` at the **exact** version this package pins in `peerDependencies` (currently **`0.35.9`**) — your app must resolve exactly this version; see [Nitro version pin](#nitro-version-pin)
15
15
  - Node 20 or newer
16
+ - JDK 17 or newer for Android builds — the same JDK React Native 0.82 itself
17
+ requires. The Android module compiles at Java 17; newer JDKs work.
16
18
  - iOS deployment target ≥ 15.1, AcousticConnect / AcousticConnectDebug pod ≥ 2.0.5
17
19
  - Android `minSdk` ≥ 26, `compileSdk` ≥ 35, `io.github.go-acoustic:connect` in `[11.0.11, 12.0.0)`
18
20
  - **Expo SDK 55+ is supported** via the bundled Expo Config Plugin —
@@ -129,9 +129,28 @@ android {
129
129
  }
130
130
  }
131
131
 
132
+ // Java 17 — matched to React Native 0.82's own baseline (its Gradle plugin
133
+ // targets JavaVersion.VERSION_17), so this imposes no requirement a consumer
134
+ // does not already meet building an RN app. This file is compiled inside the
135
+ // consumer's Gradle build, so anything raised here becomes their floor: 21
136
+ // would put us above RN's baseline for no benefit, since the bridge uses no
137
+ // Java 21 language features. Bytecode level only — deliberately NOT a
138
+ // toolchain, so a consumer on JDK 21+ is free to build with it.
139
+ //
140
+ // Note this is independent of the Connect Android SDK shipping Java 21
141
+ // bytecode: D8 dexes major-65 classes happily, and a JDK 17 assembleDebug
142
+ // against that AAR succeeds. Only JVM unit tests that load those classes need
143
+ // a 21 runtime, which is configured in the (unpublished) example build.
132
144
  compileOptions {
133
- sourceCompatibility JavaVersion.VERSION_1_8
134
- targetCompatibility JavaVersion.VERSION_1_8
145
+ sourceCompatibility JavaVersion.VERSION_17
146
+ targetCompatibility JavaVersion.VERSION_17
147
+ }
148
+
149
+ // Kept in lockstep with compileOptions above — AGP fails the build with
150
+ // "Inconsistent JVM-target compatibility" if the Java and Kotlin targets
151
+ // diverge.
152
+ kotlinOptions {
153
+ jvmTarget = '17'
135
154
  }
136
155
 
137
156
  sourceSets {
@@ -24,7 +24,7 @@
24
24
  "IpPlaceholder": "N/A",
25
25
  "KillSwitchAsync": true,
26
26
  "KillSwitchDelay": 300,
27
- "LibraryVersion": "11.0.14-beta",
27
+ "LibraryVersion": "11.0.16-beta",
28
28
  "LogFullRequestResponsePayloads": true,
29
29
  "MessageTypeHeader": "WorklightHit",
30
30
  "MessageTypes": "4,5",
@@ -1,4 +1,4 @@
1
- #Tue Jul 07 06:23:24 PDT 2026
1
+ #Thu Jul 30 08:05:31 PDT 2026
2
2
  UseWhiteList=true
3
3
  PrintScreen=3
4
4
  UseRandomSample=false
@@ -24,7 +24,7 @@
24
24
  "IpPlaceholder": "N/A",
25
25
  "KillSwitchAsync": true,
26
26
  "KillSwitchDelay": 300,
27
- "LibraryVersion": "10.4.29-beta",
27
+ "LibraryVersion": "10.4.33-beta",
28
28
  "LogFullRequestResponsePayloads": true,
29
29
  "MessageTypeHeader": "WorklightHit",
30
30
  "MessageTypes": "4,5",
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.11",
232
+ "version": "19.0.13",
233
233
  "workspaces": [
234
234
  "example",
235
235
  "Examples/bare-workflow"