首页 > 解决方案 > cordova-plugin-googleplus':错误:pod:命令失败,退出代码为 1 错误输出:

问题描述

由于一再被 Apple 商店拒绝,我不得不更新项目中的插件,以便它们不再使用 UIWebView。结果,将 ios 升级到版本 6 后,我无法安装 Google Plus。

我收到以下错误:

Failed to install 'cordova-plugin-googleplus': Error: pod: Command failed with exit code 1 Error output:
/System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/universal-darwin20/rbconfig.rb:229: warning: Insecure world writable dir /Users/anonymous/project/app-name-v5/node_modules/.bin in PATH, mode 040757
    at ChildProcess.whenDone (/Users/anonymous/project/app-name-v5/node_modules/cordova-common/src/superspawn.js:136:25)
    at ChildProcess.emit (events.js:315:20)
    at maybeClose (internal/child_process.js:1048:16)
    at Socket.<anonymous> (internal/child_process.js:439:11)
    at Socket.emit (events.js:315:20)
    at Pipe.<anonymous> (net.js:673:12)
pod: Command failed with exit code 1 Error output:
/System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/universal-darwin20/rbconfig.rb:229: warning: Insecure world writable dir /Users/anonymous/project/app-name-v5/node_modules/.bin in PATH, mode 040757
[ERROR] An error occurred while running subprocess cordova.
        
        cordova plugin add cordova-plugin-googleplus@8.5.2 --variable REVERSED_CLIENT_ID...

这太令人沮丧了。由于 Google Plus,我无法将我的应用程序放入商店,但现在我无法使用最新版本安装它。

这是我的插件版本:

  "dependencies": {
    "@angular/common": "~8.2.14",
    "@angular/core": "~8.2.14",
    "@angular/fire": "^5.4.2",
    "@angular/forms": "~8.2.14",
    "@angular/platform-browser": "~8.2.14",
    "@angular/platform-browser-dynamic": "~8.2.14",
    "@angular/router": "~8.2.14",
    "@ionic-native/core": "^5.0.0",
    "@ionic-native/diagnostic": "^5.26.0",
    "@ionic-native/firebase-messaging": "^5.32.1",
    "@ionic-native/geolocation": "^5.23.0",
    "@ionic-native/google-plus": "^5.32.1",
    "@ionic-native/image-picker": "^5.32.0",
    "@ionic-native/in-app-browser": "^5.32.1",
    "@ionic-native/in-app-purchase-2": "^5.32.1",
    "@ionic-native/ionic-webview": "^5.22.0-beta-1",
    "@ionic-native/splash-screen": "^5.32.0",
    "@ionic-native/status-bar": "^5.32.0",
    "@ionic/angular": "^5.0.0",
    "@ionic/storage": "2.2.0",
    "cc.fovea.cordova.purchase": "^10.1.1",
    "cordova-android": "^9.0.0",
    "cordova-android-support-gradle-release": "^3.0.1",
    "cordova-ios": "^6.0.0",
    "cordova-plugin-androidx": "^3.0.0",
    "cordova-plugin-androidx-adapter": "^1.1.3",
    "cordova-plugin-device": "^2.0.3",
    "cordova-plugin-firebase-analytics": "^5.0.0",
    "cordova-plugin-firebase-messaging": "^5.0.1",
    "cordova-plugin-geolocation": "^4.1.0",
    "cordova-plugin-googleplus": "^8.5.2",
    "cordova-plugin-inappbrowser": "^5.0.0",
    "cordova-plugin-ionic-keyboard": "^2.2.0",
    "cordova-plugin-ionic-webview": "^5.0.0",
    "cordova-plugin-splashscreen": "^6.0.0",
    "cordova-plugin-statusbar": "^2.4.3",
    "cordova-plugin-telerik-imagepicker": "^2.3.6",
    "cordova-plugin-whitelist": "^1.3.4",
    "cordova-sqlite-storage": "^6.0.0",
    "cordova-support-android-plugin": "^1.0.2",
    "cordova-support-google-services": "^1.4.1",
    "cordova.plugins.diagnostic": "^5.0.2",
    "core-js": "^2.5.4",
    "firebase": "^7.9.1",
    "geofire": "^5.0.1",
    "geofirex": "^0.1.0",
    "ionicons": "^4.5.10-0",
    "moment": "^2.24.0",
    "rxjs": "~6.5.1",
    "rxjs-compat": "^6.5.5",
    "tslib": "^1.9.0",
    "zone.js": "~0.9.1"
  },
  "devDependencies": {
    "@angular-devkit/build-angular": "~0.803.20",
    "@angular/cli": "~8.3.23",
    "@angular/compiler": "~8.2.14",
    "@angular/compiler-cli": "~8.2.14",
    "@angular/language-service": "~8.2.14",
    "@ionic/angular-toolkit": "^2.1.1",
    "@types/jasmine": "~3.3.8",
    "@types/jasminewd2": "~2.0.3",
    "@types/node": "~8.9.4",
    "codelyzer": "^5.0.0",
    "cordova-plugin-device": "^2.0.2",
    "cordova-plugin-ionic-keyboard": "^2.2.0",
    "cordova-plugin-splashscreen": "^6.0.0",
    "cordova-plugin-statusbar": "^2.4.2",
    "cordova-plugin-whitelist": "^1.3.3",
    "jasmine-core": "~3.4.0",
    "jasmine-spec-reporter": "~4.2.1",
    "karma": "~4.1.0",
    "karma-chrome-launcher": "~2.2.0",
    "karma-coverage-istanbul-reporter": "~2.0.1",
    "karma-jasmine": "~2.0.1",
    "karma-jasmine-html-reporter": "^1.4.0",
    "protractor": "~5.4.0",
    "ts-node": "~7.0.0",
    "tslint": "~5.15.0",
    "typescript": "~3.4.3"
  },

任何帮助,将不胜感激。我一直在尝试将应用程序放入应用程序商店一周,但无济于事。

标签: ioscordovaionic-frameworkcordova-pluginsgoogle-plus

解决方案


推荐阅读