Я пытался обновить версию Android в своем проекте Cordova с помощью этой команды:
cordova platform update android
Но это был ответ:
Using cordova-fetch for cordova-android@~7.0.0
Updating android project...
(node:4188) UnhandledPromiseRejectionWarning: An in-place platform update is not supported.
The `platforms` folder is always treated as a build artifact in the CLI workflow.
To update your platform, you have to remove, then add your android platform again.
Make sure you save your plugins beforehand using `cordova plugin save`, and save
a copy of the platform first if you had manual changes in it.
cordova plugin save
cordova platform rm android
cordova platform add android
(node:4188) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1)
(node:4188) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.
Я волновался, если я сделаю это,Я потеряю некоторые настройки, которые я сделал (например, потерю значков приложений, заставок и отредактировал метод, чтобы клавиатура была видна, когда приложение находится в полноэкранном режиме)
Можно ли это как-то сделать?