How to upgrade android Build tools in meteor?

Hi,

I am building an android app with Meteor/Cordova. My meteor is currently version 1.5, Cordova 4.3.0. My default build uses API 25 but when I try to submit my APK to the play store, I get this message:


Your app currently targets API level 25 and must target at least API level 26 to ensure it is built on the latest APIs optimized for security and performance. Change your app's target API level to at least 26.

How do I upgrade to API level 26?

Try this in mobile-config.js

App.setPreference('android-minSdkVersion', '26');
1 Like

see

The android-minSdkVersion must now be simultaneously >= 26 and < 26.

Best of luck.