有人遇到这个问题时,试图建立离子项目与电容器?
我有一个Ionic项目,每个功能都有不同的包。我试图使用ionic capacitor build android
将我的项目导出到android studio。我也尝试过创建一个新的空白页面项目,它工作得很好。我怀疑这里是原生包,但我不知道如何解决这个问题,因为我是Angular 和 Ionic 新手。
npm ERR! code ERESOLVE
npm ERR! ERESOLVE could not resolve
npm ERR!
npm ERR! While resolving: @ionic-native/core@5.36.0
npm ERR! Found: rxjs@7.4.0
npm ERR! node_modules/rxjs
npm ERR! peer rxjs@"^6.5.3 || ^7.4.0" from @angular/common@15.0.2
npm ERR! node_modules/@angular/common
npm ERR! peer @angular/common@"15.0.2" from @angular/forms@15.0.2
npm ERR! node_modules/@angular/forms
npm ERR! peer @angular/forms@">=12.0.0" from @ionic/angular@6.3.9
npm ERR! node_modules/@ionic/angular
npm ERR! @ionic/angular@"^6.3.9" from the root project
npm ERR! 1 more (the root project)
npm ERR! peer @angular/common@"15.0.2" from @angular/platform-browser@15.0.2
npm ERR! node_modules/@angular/platform-browser
npm ERR! peer @angular/platform-browser@"15.0.2" from @angular/forms@15.0.2
npm ERR! node_modules/@angular/forms
npm ERR! peer @angular/forms@">=12.0.0" from @ionic/angular@6.3.9
npm ERR! node_modules/@ionic/angular
npm ERR! 1 more (the root project)
npm ERR! 3 more (@angular/platform-browser-dynamic, @angular/router, the root project)
npm ERR! 3 more (@angular/platform-browser-dynamic, @angular/router, the root project)
npm ERR! peer rxjs@"^6.5.3 || ^7.4.0" from @angular/core@15.0.2
npm ERR! node_modules/@angular/core
npm ERR! peer @angular/core@"15.0.2" from @angular/common@15.0.2
npm ERR! node_modules/@angular/common
npm ERR! peer @angular/common@"15.0.2" from @angular/forms@15.0.2
npm ERR! node_modules/@angular/forms
npm ERR! peer @angular/forms@">=12.0.0" from @ionic/angular@6.3.9
npm ERR! node_modules/@ionic/angular
npm ERR! 1 more (the root project)
npm ERR! 4 more (@angular/platform-browser, ...)
npm ERR! peerOptional @angular/core@"15.0.2" from @angular/compiler@15.0.2
npm ERR! node_modules/@angular/compiler
npm ERR! peer @angular/compiler@"15.0.2" from @angular/compiler-cli@15.0.2
npm ERR! node_modules/@angular/compiler-cli
npm ERR! peer @angular/compiler-cli@"^15.0.0" from @angular-devkit/build-angular@15.0.2
npm ERR! node_modules/@angular-devkit/build-angular
npm ERR! 2 more (@ngtools/webpack, the root project)
npm ERR! 2 more (@angular/platform-browser-dynamic, the root project)
npm ERR! 7 more (@angular/forms, @angular/platform-browser, ...)
npm ERR! 5 more (@angular/forms, @angular/router, @ionic/angular, ...)
npm ERR!
npm ERR! Could not resolve dependency:
npm ERR! peer rxjs@"^5.5.0 || ^6.5.0" from @ionic-native/core@5.36.0
npm ERR! node_modules/@ionic-native/core
npm ERR! peer @ionic-native/core@"^5.1.0" from @ionic-native/network@5.36.0
npm ERR! node_modules/@ionic-native/network
npm ERR! @ionic-native/network@"^5.36.0" from the root project
npm ERR!
npm ERR! Conflicting peer dependency: rxjs@6.6.7
npm ERR! node_modules/rxjs
npm ERR! peer rxjs@"^5.5.0 || ^6.5.0" from @ionic-native/core@5.36.0
npm ERR! node_modules/@ionic-native/core
npm ERR! peer @ionic-native/core@"^5.1.0" from @ionic-native/network@5.36.0
npm ERR! node_modules/@ionic-native/network
npm ERR! @ionic-native/network@"^5.36.0" from the root project
npm ERR!
npm ERR! Fix the upstream dependency conflict, or retry
npm ERR! this command with --force or --legacy-peer-deps
npm ERR! to accept an incorrect (and potentially broken) dependency resolution.
1条答案
按热度按时间abithluo1#
可能是因为
@ionic-native
Package 器不再更新,而Ionic使用的是最新的Angular 15,所以出现了依赖项冲突。尝试将所有的
@ionic-native
软件包替换为对应的@awesome-cordova-plugins
软件包。示例1:
npm un @ionic-native/core && npm i @awesome-cordova-plugins/core
示例2:
npm un @ionic-native/social-sharing && npm i @awesome-cordova-plugins/social-sharing
等等......
如果在执行此操作时遇到相同的错误,请在每个npm i命令后添加--force标志。