Skip to content

Commit 1ed0f16

Browse files
chore(update-plugins): Wed Jan 10 08:05:40 UTC 2024
1 parent 1f74319 commit 1ed0f16

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

plugins/rive.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ ios: {
3131
name: 'RiveRuntime',
3232
libs: ['RiveRuntime'],
3333
repositoryURL: 'https://github.com/rive-app/rive-ios.git',
34-
version: '5.0.0',
34+
version: '5.7.0',
3535
},
3636
],
3737
},
@@ -76,11 +76,17 @@ For Android, add this provider to your `AndroidManifest.xml` inside the `applica
7676

7777
#### Gradle settings
7878

79+
You will need to target Android 34 or later.
7980
Add this to your `app.gradle` inside the `android` section:
8081

8182
```yml
82-
kotlinOptions {
83-
jvmTarget = '1.8'
83+
android {
84+
compileSdkVersion 34
85+
buildToolsVersion "34.0.0"
86+
defaultConfig {
87+
minSdkVersion 24
88+
targetSdkVersion 34
89+
// ...
8490
}
8591
```
8692

0 commit comments

Comments
 (0)