From 03e82ba5140b6816cea4c040f764a59af9b6282a Mon Sep 17 00:00:00 2001 From: Yogendra Shelke <25844542+YogendraShelke@users.noreply.github.com> Date: Thu, 13 Nov 2025 15:28:58 +0530 Subject: [PATCH] chore: bump native binary version --- .../com/mendix/mendixnative/react/MxConfiguration.kt | 10 +--------- ios/Modules/MxConfiguration/MxConfiguration.swift | 9 +-------- package.json | 2 +- 3 files changed, 3 insertions(+), 18 deletions(-) diff --git a/android/src/main/java/com/mendix/mendixnative/react/MxConfiguration.kt b/android/src/main/java/com/mendix/mendixnative/react/MxConfiguration.kt index acdfcd8..2945628 100644 --- a/android/src/main/java/com/mendix/mendixnative/react/MxConfiguration.kt +++ b/android/src/main/java/com/mendix/mendixnative/react/MxConfiguration.kt @@ -56,15 +56,7 @@ class MxConfiguration(val reactContext: ReactApplicationContext) { } companion object { - /** - * Side note for 11: I've bumped the nativeBinaryVersion from 12 to 30, - * because there needs to be version increment space for Mx 10.24. - * You can remove this comment when the next version is released. - * - * - * Increment nativeBinaryVersion to 30 for OP-SQlite database migration - */ - const val NATIVE_BINARY_VERSION: Int = 30 + const val NATIVE_BINARY_VERSION: Int = 31 const val NAME: String = "MxConfiguration" var defaultDatabaseName: String = "default" diff --git a/ios/Modules/MxConfiguration/MxConfiguration.swift b/ios/Modules/MxConfiguration/MxConfiguration.swift index a80e08f..a45cf19 100644 --- a/ios/Modules/MxConfiguration/MxConfiguration.swift +++ b/ios/Modules/MxConfiguration/MxConfiguration.swift @@ -3,14 +3,7 @@ import Foundation @objcMembers public class MxConfiguration: NSObject { - /** - * Side note for 11: I've bumped the nativeBinaryVersion from 12 to 30, - * because there needs to be version increment space for Mx 10.24. - * You can remove this comment when the next version is released. - * - * Increment nativeBinaryVersion to 30 for OP-SQlite database migration - */ - private static let nativeBinaryVersion: Int = 30 + private static let nativeBinaryVersion: Int = 31 private static let defaultDatabaseName = "default" private static let defaultFilesDirectoryName = "files/default" diff --git a/package.json b/package.json index 8fe159e..14ae533 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mendix-native", - "version": "0.1.1", + "version": "0.1.2", "description": "Mendix native mobile package", "main": "./lib/module/index.js", "types": "./lib/typescript/src/index.d.ts",