Skip to content

Commit 3435cab

Browse files
committed
chore: release 9.7.0 with Android 10.5.1 and iOS 6.12.1
1 parent 7514d4a commit 3435cab

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

android/src/main/java/com/rivereactnative/RiveReactNativeView.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -358,11 +358,11 @@ class RiveReactNativeView(private val context: ThemedReactContext) : FrameLayout
358358
}
359359

360360
fun touchBegan(x: Float, y: Float) {
361-
riveAnimationView?.controller?.pointerEvent(PointerEvents.POINTER_DOWN, x, y)
361+
riveAnimationView?.controller?.pointerEvent(PointerEvents.POINTER_DOWN, 0, x, y)
362362
}
363363

364364
fun touchEnded(x: Float, y: Float) {
365-
riveAnimationView?.controller?.pointerEvent(PointerEvents.POINTER_UP, x, y)
365+
riveAnimationView?.controller?.pointerEvent(PointerEvents.POINTER_UP, 0, x, y)
366366
}
367367

368368
fun setTextRunValue(textRunName: String, textValue: String) {

example/android/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
buildscript {
44
ext {
5-
buildToolsVersion = findProperty('android.buildToolsVersion') ?: '35.0.0'
5+
buildToolsVersion = findProperty('android.buildToolsVersion') ?: '36.0.0'
66
minSdkVersion = Integer.parseInt(findProperty('android.minSdkVersion') ?: '24')
7-
compileSdkVersion = Integer.parseInt(findProperty('android.compileSdkVersion') ?: '35')
7+
compileSdkVersion = Integer.parseInt(findProperty('android.compileSdkVersion') ?: '36')
88
targetSdkVersion = Integer.parseInt(findProperty('android.targetSdkVersion') ?: '34')
99
kotlinVersion = findProperty('android.kotlinVersion') ?: '1.9.25'
1010

@@ -15,7 +15,7 @@ buildscript {
1515
mavenCentral()
1616
}
1717
dependencies {
18-
classpath('com.android.tools.build:gradle')
18+
classpath('com.android.tools.build:gradle:8.9.1')
1919
classpath('com.facebook.react:react-native-gradle-plugin')
2020
classpath('org.jetbrains.kotlin:kotlin-gradle-plugin')
2121
}

example/android/gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-all.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-all.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

example/ios/Podfile.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1692,8 +1692,8 @@ PODS:
16921692
- React-utils (= 0.76.7)
16931693
- rive-react-native (9.6.2):
16941694
- React-Core
1695-
- RiveRuntime (= 6.12.0)
1696-
- RiveRuntime (6.12.0)
1695+
- RiveRuntime (= 6.12.1)
1696+
- RiveRuntime (6.12.1)
16971697
- RNCPicker (2.11.0):
16981698
- DoubleConversion
16991699
- glog
@@ -2222,8 +2222,8 @@ SPEC CHECKSUMS:
22222222
React-utils: 0342746d2cf989cf5e0d1b84c98cfa152edbdf3f
22232223
ReactCodegen: e1c019dc68733dd2c5d3b263b4a6dc72002c0045
22242224
ReactCommon: 81e0744ee33adfd6d586141b927024f488bc49ea
2225-
rive-react-native: 9dd9e28489c545026ddd816edf5f2d5a37ab751d
2226-
RiveRuntime: 8d819993126145fbf5a73089e7634b14b9aa577f
2225+
rive-react-native: e01bf30ecb1bcf345b53904f02a59a93072f1132
2226+
RiveRuntime: a98b3a310942195c6f8810306bfbaa0ac15674b1
22272227
RNCPicker: c657bd58a82b164a957812f82a0b4bab4245de2e
22282228
RNGestureHandler: 16ef3dc2d7ecb09f240f25df5255953c4098819b
22292229
RNReanimated: a2692304a6568bc656c04c8ffea812887d37436e

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
"name": "rive-react-native",
33
"version": "9.6.2",
44
"runtimeVersions": {
5-
"ios": "6.12.0",
6-
"android": "10.4.5"
5+
"ios": "6.12.1",
6+
"android": "10.5.1"
77
},
88
"workspaces": [
99
"example"

version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
9.6.2
1+
9.7.0

0 commit comments

Comments
 (0)