nativescript - ошибка при извлечении tns- android - PullRequest
0 голосов
/ 22 марта 2020

Это ошибка, которую я получаю! Я понятия не имею, что делать дальше!

$ tns platform add android
Copying template files...
Verification failed while extracting tns-android@6.4.1:
sha512-gPHZi4EA+f39jvJRt5DTSA19Yk0jPAeWWxABd26GUbEU43i1ISnIg0/en42MeWaUjHDXk1Fc1hPXWbIcoEjKiQ== integrity checksum failed when using sha512: wanted sha512-gPHZi4EA+f39jvJRt5DTSA19Yk0jPAeWWxABd26GUbEU43i1ISnIg0/en42MeWaUjHDXk1Fc1hPXWbIcoEjKiQ== but got sha512-AfBUS4i8o0XL1i9MWw0eYhjeM1UW8KOXUbyGInhdPmpytri11XZsPBPE2ToNavy1ljo/rTw3/NBzpD5UP09Llg==. (7416194 bytes)

Я также вручную изменил версию в своем пакете. json, и это произошло:

Verification failed while extracting tns-android@6.5.0:
sha512-L7vxid4dSGD6CRS9I2HXCeovuSnChCPNmgmScv5K2qIAOLwcPHcQ77oI3gqEWzMIcNDYjmVFGDR0qjzaKxmydw== integrity checksum failed when using sha512: wanted sha512-L7vxid4dSGD6CRS9I2HXCeovuSnChCPNmgmScv5K2qIAOLwcPHcQ77oI3gqEWzMIcNDYjmVFGDR0qjzaKxmydw== but got sha512-pleOzs6WMvCDiueDSYDy4NQ1e2eTJmSUEAZqAnIjdW/Fp5qpBf/WRAwOPrg7aMl9Zgi4Eyb+CkSpVFN+cJ/kfg==. (9054579 bytes)

очистка кеша и удаление * Каталоги 1007 * и node_modules работают, но я получаю это, когда пытаюсь очистить npm cache без --force почему?

$ npm cache clean        
npm ERR! As of npm@5, the npm cache self-heals from corruption issues and data extracted from the cache is guaranteed to be valid. If you want to make sure everything is consistent, use 'npm cache verify' instead. On the other hand, if you're debugging an issue with the installer, you can use `npm install --cache /tmp/empty-cache` to use a temporary cache instead of nuking the actual one.
npm ERR! 
npm ERR! If you're sure you want to delete the entire cache, rerun this command with --force.

1 Ответ

0 голосов
/ 27 марта 2020

Попробуйте обновить ваш проект с помощью nativescript 6.5.0.

1. Обновите nativescript с помощью этой команды: -

npm install -g nativescript

2. Если ваш код не переносится с nativescript 6, тогда используйте эту команду: -

tns migrate

3.После обновления вашего проекта node_modules и tns_core_modules: -

tns update

4.Добавить платформу

tns platform add android
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...