Skip to content

Commit 88a0456

Browse files
Merge pull request #13 from mendix/moo/MOO-1870-react-19-upgrade
[MOO-1870] Upgrade React to v19 and React Native to v0.78
2 parents 3f2dd63 + 7a79ee5 commit 88a0456

17 files changed

Lines changed: 6602 additions & 5335 deletions

File tree

.yarn/releases/yarn-4.12.0.cjs

Lines changed: 942 additions & 0 deletions
Large diffs are not rendered by default.

.yarnrc.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,9 @@
1+
compressionLevel: mixed
2+
3+
enableGlobalCache: false
4+
5+
nmHoistingLimits: workspaces
6+
17
nodeLinker: node-modules
2-
nmHoistingLimits: workspaces
8+
9+
yarnPath: .yarn/releases/yarn-4.12.0.cjs

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88

99
## [Unreleased]
1010

11+
- We updated mendix-native to support react v19 and react native v0.78.2.
12+
1113
## [v0.1.3] - 2025-12-05
1214

1315
- We introduced AndroidNavigationBar module to get navigation bar height and active status.

android/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ buildscript {
99
}
1010

1111
dependencies {
12-
classpath "com.android.tools.build:gradle:8.7.2"
12+
classpath "com.android.tools.build:gradle:8.8.2"
1313
// noinspection DifferentKotlinGradleVersion
1414
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${getExtOrDefault('kotlinVersion')}"
1515
}
@@ -88,7 +88,7 @@ dependencies {
8888
kapt 'com.github.bumptech.glide:compiler:4.12.0'
8989

9090

91-
api "com.facebook.react:react-android:0.77.3"
91+
api "com.facebook.react:react-android:0.78.2"
9292
api project(':op-engineering_op-sqlite')
9393
api project(':react-native-async-storage_async-storage')
9494
api project(':react-native-gesture-handler')

android/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
MendixNative_kotlinVersion=2.0.21
22
MendixNative_minSdkVersion=24
3-
MendixNative_targetSdkVersion=34
3+
MendixNative_targetSdkVersion=35
44
MendixNative_compileSdkVersion=35
55
MendixNative_ndkVersion=27.1.12297006

example/android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,14 +63,14 @@ def enableProguardInReleaseBuilds = false
6363
* The preferred build flavor of JavaScriptCore (JSC)
6464
*
6565
* For example, to use the international variant, you can use:
66-
* `def jscFlavor = org.webkit:android-jsc-intl:+`
66+
* `def jscFlavor = io.github.react-native-community:jsc-android-intl:2026004.+`
6767
*
6868
* The international variant includes ICU i18n library and necessary data
6969
* allowing to use e.g. `Date.toLocaleString` and `String.localeCompare` that
7070
* give correct results when using with locales other than en-US. Note that
7171
* this variant is about 6MiB larger per architecture than default.
7272
*/
73-
def jscFlavor = 'org.webkit:android-jsc:+'
73+
def jscFlavor = 'io.github.react-native-community:jsc-android:2026004.+'
7474

7575
android {
7676
ndkVersion rootProject.ext.ndkVersion

example/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ buildscript {
33
buildToolsVersion = "35.0.0"
44
minSdkVersion = 24
55
compileSdkVersion = 35
6-
targetSdkVersion = 34
6+
targetSdkVersion = 35
77
ndkVersion = "27.1.12297006"
88
kotlinVersion = "2.0.21"
99
}
-181 Bytes
Binary file not shown.

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.12-all.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

example/ios/MendixNativeExample/Info.plist

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,14 @@
2626
<true/>
2727
<key>NSAppTransportSecurity</key>
2828
<dict>
29+
<!-- Do not change NSAllowsArbitraryLoads to true, or you will risk app rejection! -->
2930
<key>NSAllowsArbitraryLoads</key>
3031
<false/>
3132
<key>NSAllowsLocalNetworking</key>
3233
<true/>
3334
</dict>
3435
<key>NSLocationWhenInUseUsageDescription</key>
3536
<string></string>
36-
<key>RCTNewArchEnabled</key>
37-
<true/>
3837
<key>UILaunchStoryboardName</key>
3938
<string>LaunchScreen</string>
4039
<key>UIRequiredDeviceCapabilities</key>

0 commit comments

Comments
 (0)