Skip to content

Commit b10cf33

Browse files
radko93mfazekas
authored andcommitted
fix(Android): bump runtime to 11.4.1 to fix ARMv7 TLS relocation crash
rive-android 11.4.1 includes rive-app/rive-android#12175 ("Fix linking issues on ARMv7 devices due to TLS relocations"), which resolves an UnsatisfiedLinkError at Rive.init on Android 9 / API 28 caused by R_ARM_TLS_DTPMOD32 relocations that the API 28 linker cannot resolve. Fixes rive-app/rive-android#441.
1 parent c1dcfb2 commit b10cf33

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ By default, `rive-react-native` uses the native SDK versions specified in `packa
112112
```json
113113
"runtimeVersions": {
114114
"ios": "6.18.2",
115-
"android": "11.4.0"
115+
"android": "11.4.1"
116116
}
117117
```
118118

@@ -143,7 +143,7 @@ cd ios && pod install
143143
Add to `android/gradle.properties`:
144144

145145
```properties
146-
Rive_RiveRuntimeAndroidVersion=11.4.0
146+
Rive_RiveRuntimeAndroidVersion=11.4.1
147147
```
148148

149149
#### Expo Projects
@@ -167,7 +167,7 @@ export default ({ config }: ConfigContext): ExpoConfig => ({
167167
[
168168
withGradleProperties,
169169
{
170-
Rive_RiveRuntimeAndroidVersion: '11.4.0',
170+
Rive_RiveRuntimeAndroidVersion: '11.4.1',
171171
},
172172
],
173173
],

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "9.8.2",
44
"runtimeVersions": {
55
"ios": "6.18.2",
6-
"android": "11.4.0"
6+
"android": "11.4.1"
77
},
88
"workspaces": [
99
"example"

0 commit comments

Comments
 (0)