Skip to content

Commit f20c18b

Browse files
chore: replace mendix/native local tarball with published one
1 parent ebadcb0 commit f20c18b

File tree

4 files changed

+11
-10
lines changed

4 files changed

+11
-10
lines changed

ios/DeveloperApp/AppDelegate.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class AppDelegate: UIResponder, UIApplicationDelegate, UNUserNotificationCenterD
1919

2020

2121
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
22-
SessionCookieStore.restore()
22+
SessionCookieStore.restore() //iOS does not persist session cookies across app restarts, this helps persisting session cookies to match behaviour with Android
2323
clearKeychainIfNecessary()
2424

2525
UIApplication.shared.isIdleTimerDisabled = true
@@ -103,7 +103,7 @@ class AppDelegate: UIResponder, UIApplicationDelegate, UNUserNotificationCenterD
103103
}
104104

105105
func applicationDidEnterBackground(_ application: UIApplication) {
106-
SessionCookieStore.persist()
106+
SessionCookieStore.persist() //iOS does not persist session cookies across app restarts, this helps persisting session cookies to match behaviour with Android
107107
}
108108

109109
func applicationWillEnterForeground(_ application: UIApplication) {
@@ -113,7 +113,7 @@ class AppDelegate: UIResponder, UIApplicationDelegate, UNUserNotificationCenterD
113113
}
114114

115115
func applicationWillTerminate(_ application: UIApplication) {
116-
SessionCookieStore.persist()
116+
SessionCookieStore.persist() //iOS does not persist session cookies across app restarts, this helps persisting session cookies to match behaviour with Android
117117
}
118118

119119
//Called when a notification is delivered to a foreground app.

package-lock.json

Lines changed: 7 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
},
2020
"dependencies": {
2121
"@gorhom/bottom-sheet": "^5.1.1",
22-
"@mendix/native": "file:package.tgz",
22+
"@mendix/native": "9.2.2",
2323
"@op-engineering/op-sqlite": "9.2.7",
2424
"@react-native-async-storage/async-storage": "2.0.0",
2525
"@react-native-camera-roll/camera-roll": "7.4.0",

package.tgz

-1.02 MB
Binary file not shown.

0 commit comments

Comments
 (0)