diff --git a/native/android/app/build.gradle b/native/android/app/build.gradle index 6e025f6a5f..ae75f5bf05 100644 --- a/native/android/app/build.gradle +++ b/native/android/app/build.gradle @@ -427,8 +427,8 @@ android { applicationId 'app.comm.android' minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion - versionCode 125 - versionName '1.0.125' + versionCode 126 + versionName '1.0.126' missingDimensionStrategy 'react-native-camera', 'general' multiDexEnabled true } diff --git a/native/ios/Comm/Info.debug.plist b/native/ios/Comm/Info.debug.plist index f913349cb4..5224f9f1e1 100644 --- a/native/ios/Comm/Info.debug.plist +++ b/native/ios/Comm/Info.debug.plist @@ -19,11 +19,11 @@ CFBundlePackageType APPL CFBundleShortVersionString - 1.0.125 + 1.0.126 CFBundleSignature ???? CFBundleVersion - 125 + 126 LSApplicationQueriesSchemes org-appextension-feature-password-management diff --git a/native/ios/Comm/Info.release.plist b/native/ios/Comm/Info.release.plist index b455222164..f9963bde0e 100644 --- a/native/ios/Comm/Info.release.plist +++ b/native/ios/Comm/Info.release.plist @@ -19,11 +19,11 @@ CFBundlePackageType APPL CFBundleShortVersionString - 1.0.125 + 1.0.126 CFBundleSignature ???? CFBundleVersion - 125 + 126 LSApplicationQueriesSchemes org-appextension-feature-password-management diff --git a/native/redux/persist.js b/native/redux/persist.js index 083dbbfac7..badb262126 100644 --- a/native/redux/persist.js +++ b/native/redux/persist.js @@ -373,14 +373,15 @@ const persistConfig = { 'connectivity', 'deviceOrientation', 'frozen', + 'threadStore', ], debug: __DEV__, - version: 29, + version: 30, migrate: (createMigrate(migrations, { debug: __DEV__ }): any), timeout: ((__DEV__ ? 0 : undefined): number | void), }; -const codeVersion = 125; +const codeVersion = 126; // This local exists to avoid a circular dependency where redux-setup needs to // import all the navigation and screen stuff, but some of those screens want to