Skip to content

Commit 30f3bfa

Browse files
committed
release/3.10.1: supported react native 0.81.4;
1 parent 6b93d72 commit 30f3bfa

4 files changed

Lines changed: 10 additions & 10 deletions

File tree

android/src/main/java/com/appodeal/rnappodeal/RCTAppodealBannerView.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,10 +125,10 @@ class RCTAppodealBannerView(context: Context) : ReactViewGroup(context), RNAppod
125125
private class OnViewEvent(
126126
surfaceId: Int,
127127
viewId: Int,
128-
private val eventName: String,
128+
private val eventNameParam: String,
129129
private val payload: WritableMap?
130130
) : Event<OnViewEvent>(surfaceId, viewId) {
131-
override fun getEventName(): String = eventName
131+
override fun getEventName(): String = eventNameParam
132132
override fun getEventData(): WritableMap? {
133133
// Create a copy to avoid ObjectAlreadyConsumedException
134134
if (payload == null) return null

android/src/main/java/com/appodeal/rnappodeal/RCTAppodealMrecView.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,10 +116,10 @@ class RCTAppodealMrecView(context: Context) : ReactViewGroup(context), RNAppodea
116116
private class OnViewEvent(
117117
surfaceId: Int,
118118
viewId: Int,
119-
private val eventName: String,
119+
private val eventNameParam: String,
120120
private val payload: WritableMap?
121121
) : Event<OnViewEvent>(surfaceId, viewId) {
122-
override fun getEventName(): String = eventName
122+
override fun getEventName(): String = eventNameParam
123123
override fun getEventData(): WritableMap? {
124124
// Create a copy to avoid ObjectAlreadyConsumedException
125125
if (payload == null) return null

example/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
},
1212
"dependencies": {
1313
"react": "19.0.0",
14-
"react-native": "0.79.2"
14+
"react-native": "0.81.4"
1515
},
1616
"devDependencies": {
1717
"@babel/core": "^7.25.2",
@@ -20,9 +20,9 @@
2020
"@react-native-community/cli": "18.0.0",
2121
"@react-native-community/cli-platform-android": "18.0.0",
2222
"@react-native-community/cli-platform-ios": "18.0.0",
23-
"@react-native/babel-preset": "0.79.2",
24-
"@react-native/metro-config": "0.79.2",
25-
"@react-native/typescript-config": "0.79.2",
23+
"@react-native/babel-preset": "0.81.4",
24+
"@react-native/metro-config": "0.81.4",
25+
"@react-native/typescript-config": "0.81.4",
2626
"@types/react": "^19.0.0",
2727
"react-native-builder-bob": "^0.40.12",
2828
"react-native-monorepo-config": "^0.1.9"

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
"@eslint/js": "^9.22.0",
8383
"@evilmartians/lefthook": "^1.5.0",
8484
"@react-native-community/cli": "15.0.0-alpha.2",
85-
"@react-native/babel-preset": "0.79.2",
85+
"@react-native/babel-preset": "0.81.4",
8686
"@react-native/eslint-config": "^0.78.0",
8787
"@release-it/conventional-changelog": "^9.0.2",
8888
"@types/jest": "^29.5.5",
@@ -95,7 +95,7 @@
9595
"jest": "^29.7.0",
9696
"prettier": "^3.0.3",
9797
"react": "19.0.0",
98-
"react-native": "0.79.2",
98+
"react-native": "0.81.4",
9999
"react-native-builder-bob": "^0.40.12",
100100
"release-it": "^17.10.0",
101101
"turbo": "^1.10.7",

0 commit comments

Comments
 (0)