First off, thank you for creating & maintaining this library — it’s been really helpful for our project! ☺️
Problem
Since the latest release (v0.6.0), the package’s postinstall script downloads prebuilt binaries from the corresponding GitHub release.
However, in the most recent release, these assets were not attached.
As a result, the postinstall step fails with a download error, and the iOS build breaks due to missing native files.
To Reproduce
- Install the latest version of @unomed/react-native-matrix-sdk
- Run yarn install or npm install
- Observe that the postinstall script fails to download binaries (HTTP 404 or similar)
- Try to build the iOS app — compilation fails due to missing binaries in build/
Expected behavior
The release on GitHub should have the required binaries attached so the postinstall script can successfully fetch them, allowing iOS to build without manual steps.
Workaround
Currently, I build the required binaries locally as described in the script comments and move them manually (actually via postinstall) to: node_modules/@unomed/react-native-matrix-sdk/build
This restores the ability to build for iOS.
First off, thank you for creating & maintaining this library — it’s been really helpful for our project!☺️
Problem
Since the latest release (v0.6.0), the package’s postinstall script downloads prebuilt binaries from the corresponding GitHub release.
However, in the most recent release, these assets were not attached.
As a result, the postinstall step fails with a download error, and the iOS build breaks due to missing native files.
To Reproduce
Expected behavior
The release on GitHub should have the required binaries attached so the postinstall script can successfully fetch them, allowing iOS to build without manual steps.
Workaround
Currently, I build the required binaries locally as described in the script comments and move them manually (actually via postinstall) to:
node_modules/@unomed/react-native-matrix-sdk/buildThis restores the ability to build for iOS.