stream-chat-react-native 9.8.0 → 9.8.1-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.
@@ -73,8 +73,10 @@ android {
73
73
  }
74
74
 
75
75
  compileOptions {
76
- sourceCompatibility JavaVersion.VERSION_1_8
77
- targetCompatibility JavaVersion.VERSION_1_8
76
+ // Must match the Kotlin jvmTarget below. AGP 9 (React Native 0.87) fails the build on an
77
+ // inconsistent JVM-target between the Java and Kotlin compilation tasks.
78
+ sourceCompatibility JavaVersion.VERSION_17
79
+ targetCompatibility JavaVersion.VERSION_17
78
80
  }
79
81
 
80
82
  kotlinOptions {
@@ -1,5 +1,8 @@
1
- ImageResizer_kotlinVersion=1.7.0
2
- ImageResizer_minSdkVersion=21
3
- ImageResizer_targetSdkVersion=31
4
- ImageResizer_compileSdkVersion=31
5
- ImageResizer_ndkversion=21.4.7075529
1
+ # Fallbacks used only when the consuming app's root project does not define these (an app created
2
+ # from the React Native template always does). Kept in step with React Native 0.87's requirements:
3
+ # libraries must build against compileSdk >= 34 (minCompileSdk), and Kotlin >= 2.0 is required.
4
+ ImageResizer_kotlinVersion=2.2.0
5
+ ImageResizer_minSdkVersion=24
6
+ ImageResizer_targetSdkVersion=36
7
+ ImageResizer_compileSdkVersion=34
8
+ ImageResizer_ndkversion=27.1.12297006
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "stream-chat-react-native",
3
3
  "description": "The official React Native SDK for Stream Chat, a service for building chat applications",
4
- "version": "9.8.0",
4
+ "version": "9.8.1-beta.1",
5
5
  "homepage": "https://www.npmjs.com/package/stream-chat-react-native",
6
6
  "author": {
7
7
  "company": "Stream.io Inc",
@@ -30,7 +30,7 @@
30
30
  "dependencies": {
31
31
  "es6-symbol": "^3.1.3",
32
32
  "mime": "^4.0.7",
33
- "stream-chat-react-native-core": "9.8.0"
33
+ "stream-chat-react-native-core": "9.8.1-beta.1"
34
34
  },
35
35
  "peerDependencies": {
36
36
  "@react-native-camera-roll/camera-roll": ">=7.9.0",
@@ -84,7 +84,7 @@
84
84
  },
85
85
  "devDependencies": {
86
86
  "@stream-io/typescript-config": "workspace:^",
87
- "react-native": "0.86.0",
87
+ "react-native": "0.87.0",
88
88
  "typescript": "6.0.3"
89
89
  },
90
90
  "codegenConfig": {