Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
9 changes: 1 addition & 8 deletions ios/Modules/MxConfiguration/MxConfiguration.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
Loading