expo-modules-core 57.0.17 → 57.0.18

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
@@ -10,6 +10,12 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 57.0.18 — 2026-09-11
14
+
15
+ ### 🐛 Bug fixes
16
+
17
+ - [Android] Fixed `BadParcelableException` at startup when an activity-result launch was interrupted. `DataPersistor` read the persisted `Bundle` with no `ClassLoader`, so the boot `ClassLoader` could not resolve `androidx.activity.result.ActivityResult`. ([#49836](https://github.com/expo/expo/pull/49836) by [@expo-bot](https://github.com/expo-bot))
18
+
13
19
  ## 57.0.17 — 2026-09-08
14
20
 
15
21
  ### 🐛 Bug fixes
@@ -27,7 +27,7 @@ if (shouldIncludeCompose) {
27
27
  }
28
28
 
29
29
  group = 'host.exp.exponent'
30
- version = '57.0.17'
30
+ version = '57.0.18'
31
31
 
32
32
  def isExpoModulesCoreTests = {
33
33
  Gradle gradle = getGradle()
@@ -94,7 +94,7 @@ android {
94
94
  defaultConfig {
95
95
  consumerProguardFiles 'proguard-rules.pro'
96
96
  versionCode 1
97
- versionName "57.0.17"
97
+ versionName "57.0.18"
98
98
  buildConfigField "String", "EXPO_MODULES_CORE_VERSION", "\"${versionName}\""
99
99
  buildConfigField "boolean", "IS_NEW_ARCHITECTURE_ENABLED", "true"
100
100
 
@@ -115,8 +115,7 @@ private fun String.toBundle(): Bundle? {
115
115
  return Parcel.obtain().run {
116
116
  unmarshall(bytes, 0, bytes.size)
117
117
  setDataPosition(0)
118
- @Suppress("ParcelClassLoader")
119
- val bundle = readBundle(null)
118
+ val bundle = readBundle(DataPersistor::class.java.classLoader)
120
119
  recycle()
121
120
  bundle
122
121
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-modules-core",
3
- "version": "57.0.17",
3
+ "version": "57.0.18",
4
4
  "description": "The core of Expo Modules architecture",
5
5
  "main": "src/index.ts",
6
6
  "types": "build/index.d.ts",
@@ -66,7 +66,7 @@
66
66
  "@types/invariant": "^2.2.33",
67
67
  "expo-module-scripts": "56.0.3"
68
68
  },
69
- "gitHead": "ee89f7c31877f111cb1705c8e5c2c8078fa80a03",
69
+ "gitHead": "9e5319c0f821a27b7924841903abae50e2b41790",
70
70
  "scripts": {
71
71
  "build": "expo-module build",
72
72
  "clean": "expo-module clean",