You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to update information when user opens the app for the first time after a specific update, so I'm subscribing to firstLaunchOfNewVersionOnly as specified in the doc. But I never enter it even if I've changed the version number from 5.2 to 6.0. I'm using the version 1.1.0 of RxAppState.
Do you have any idea please ?
The text was updated successfully, but these errors were encountered:
Sorry about the late reply. I had a look at your issue and you are right. firstLaunchOfNewVersionOnly is not working correctly. I'll try to fix that as soon as possible.
In the meantime please use this instead:
UIApplication.shared.rx.isFirstLaunchOfNewVersion
.filter { $0 }
.subscribe(onNext: { _ in
// do what you want to do when first launching a new version
})
.disposed(by: disposeBag)
Hello,
I want to update information when user opens the app for the first time after a specific update, so I'm subscribing to firstLaunchOfNewVersionOnly as specified in the doc. But I never enter it even if I've changed the version number from 5.2 to 6.0. I'm using the version 1.1.0 of RxAppState.
Do you have any idea please ?
The text was updated successfully, but these errors were encountered: