stream-chat-expo 9.8.2 → 9.8.3-beta.1

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.
@@ -20,7 +20,13 @@ def isNewArchitectureEnabled() {
20
20
  }
21
21
 
22
22
  apply plugin: "com.android.library"
23
- apply plugin: "kotlin-android"
23
+ // AGP 9 ships built-in Kotlin support and registers the `kotlin` extension
24
+ // itself. Applying the Kotlin plugin on top of it fails configuration with
25
+ // "Cannot add extension with name 'kotlin'". Only apply it when nothing has
26
+ // registered that extension yet.
27
+ if (project.extensions.findByName('kotlin') == null) {
28
+ apply plugin: "kotlin-android"
29
+ }
24
30
 
25
31
  if (isNewArchitectureEnabled()) {
26
32
  apply plugin: "com.facebook.react"
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "stream-chat-expo",
3
3
  "description": "The official Expo SDK for Stream Chat, a service for building chat applications",
4
- "version": "9.8.2",
4
+ "version": "9.8.3-beta.1",
5
5
  "author": {
6
6
  "company": "Stream.io Inc",
7
7
  "name": "Stream.io Inc"
@@ -27,7 +27,7 @@
27
27
  "types": "types/index.d.ts",
28
28
  "dependencies": {
29
29
  "mime": "^4.0.7",
30
- "stream-chat-react-native-core": "9.8.2"
30
+ "stream-chat-react-native-core": "9.8.3-beta.1"
31
31
  },
32
32
  "peerDependencies": {
33
33
  "expo": ">=52.0.0",