guide/source/2.14-migration.md
Most of the new features in Meteor 2.14 are either applied directly behind the scenes (in a backwards compatible manner) or are opt-in. For a complete breakdown of the changes, please refer to the changelog.
<h2 id="changes">Changes in Meteor 2.14</h2> <h3 id="cordova">Cordova Package</h3>Cordova has been updated to v12.0.1 for Android and v7.0.1 for iOS. This requires a few changes to your Cordova project:
splash-screen package has removed the cordova-plugin-splashscreen
is now on cordova-android core, so we have removed the dependency from the
splash-screen package.
As a result we are dropping the support for dark mode splash screen on Android.
To create this now you need to create two themes on your config.xml file.
You can follow in their docs how to update your splash screenYour .mobile-config.js file should have the following preferences:
App.setPreference('android-targetSdkVersion', '33')
App.setPreference('android-minSdkVersion', '28')
If you're migrating from a version of Meteor older than Meteor 2.13, there may be important considerations not listed in this guide. Please review the older migration guides for details: