Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 26 additions & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ buildscript {
compose_ui_version = '1.7.4'
camerax_version = "1.3.4"

ndkVersion = "26.1.10909125"
ndkVersion = "27.3.13750724"
}

repositories {
Expand Down Expand Up @@ -67,6 +67,31 @@ allprojects {
google()
maven { url 'https://jitpack.io' }
}

// Build all modules with Android 16KB pages enabled
plugins.withId('com.android.application') {
android {
defaultConfig {
externalNativeBuild {
cmake {
arguments "-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON"
}
}
}
}
}

plugins.withId('com.android.library') {
android {
defaultConfig {
externalNativeBuild {
cmake {
arguments "-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON"
}
}
}
}
}
}

apply plugin: "com.facebook.react.rootproject"
Binary file added mendix-native-9.1.0.tgz
Binary file not shown.
13 changes: 6 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"snyk:android": "cd android && snyk monitor --gradle-sub-project=app --configuration-attributes='com.android.build.api.attributes.BuildTypeAttr:release,react-native-camera:general,org.jetbrains.kotlin.platform.type:androidJvm' --configuration-matching='compile|implementation' --org=appdev --project-name=developerapp-android${SNYK_SUBPROJECT}"
},
"dependencies": {
"@mendix/native": "9.0.7",
"@mendix/native": "./mendix-native-9.1.0.tgz",
"@op-engineering/op-sqlite": "9.2.7",
"@gorhom/bottom-sheet": "^5.1.1",
"@react-native-async-storage/async-storage": "2.0.0",
Expand Down