meteor-cordova mobile app not installing on android devices that run android versions higher than android 10 after updated to the target sdk version 30. Thanks in advance.
what is the content of your mobile-config.js file in regards to target SDKs, min SDKs and such ?
Example:
// SDK VERSION
// App.setPreference(âandroid-min Sdk Versionâ, â21â);
// App.setPreference(âandroid-compile Sdk Versionâ, â26â);
App.setPreference(âandroid-target Sdk Versionâ, â29â); // default: 29 works. 30 has camera permission issuesâŚ
burni
the issue was my apk only signing using v1 schema, but android 11 required v2 schema i have signed my apk using apksigner and issue solved.
yep ! this solve my issue
many thanx !
Meteor 2.5 is upgrading Android Cordova integration.
Our first beta is already available, please give it a try https://github.com/meteor/meteor/pull/11645
Thank you this solved it. I used --v2-signing-enabled in the signing command.