andrehtissot / cordova-plugin-fcm-with-dependecy-updated

Google FCM Push Notifications Cordova Plugin
MIT License
210 stars 275 forks source link

OnNotification not fire in ios device foreground and background ionic3? #106

Open kapilSoni101 opened 4 years ago

kapilSoni101 commented 4 years ago

Hi Team, I have implemented push notification its working properly android in both foreground / background state and but in IOS onNotification doesn’t trigger when the app is in foreground or background but its working only if app is killed only. team can you please me why onNotification not fire in foreground?

this.fcm.onNotification().subscribe(data => {
    if (data.wasTapped) {
        console.log(data.wasTapped);
        //redirectPageViaNotificationType for redirect page...
        this.redirectPageViaNotificationType(data);
    } else {
        //Notification was received in foreground. Maybe the user needs to be notified
        // if application open, show
        let confirmAlert = this.alertCtrl.create({
            title: ( < any > data).title,
            message: ( < any > data).body,
            buttons: [{
                text: 'Ignore',
                role: 'cancel'
            }, {
                text: 'View',
                handler: () => {
                    //redirectPageViaNotificationType for redirect page...
                    this.redirectPageViaNotificationType(data);
                }
            }]
        });
        confirmAlert.present();
    }
});

e5460425a92740beecb422603101729432c40069_2_666x500

Can you please team help me i have stuck above issue from 1 week?

andrehtissot commented 4 years ago

Would you share your package.json?

kapilSoni101 commented 4 years ago

Check below package.json file sir :

{
  "name": "Heulo",
  "version": "0.0.1",
  "author": "Ionic Framework",
  "homepage": "http://ionicframework.com/",
  "private": true,
  "scripts": {
    "start": "ionic-app-scripts serve",
    "clean": "ionic-app-scripts clean",
    "build": "ionic-app-scripts build",
    "lint": "ionic-app-scripts lint"
  },
  "dependencies": {
    "@angular/animations": "5.2.11",
    "@angular/common": "5.2.11",
    "@angular/compiler": "5.2.11",
    "@angular/compiler-cli": "5.2.11",
    "@angular/core": "5.2.11",
    "@angular/forms": "5.2.11",
    "@angular/http": "5.2.11",
    "@angular/platform-browser": "5.2.11",
    "@angular/platform-browser-dynamic": "5.2.11",
    "@ionic-native/analytics-firebase": "^4.20.0",
    "@ionic-native/app-version": "^4.12.2",
    "@ionic-native/calendar": "^4.14.0",
    "@ionic-native/camera": "^4.16.0",
    "@ionic-native/core": "~4.12.0",
    "@ionic-native/date-picker": "^4.14.0",
    "@ionic-native/device": "^4.15.0",
    "@ionic-native/fabric": "^4.20.0",
    "@ionic-native/facebook": "^4.17.0",
    "@ionic-native/fcm": "^4.18.0",
    "@ionic-native/file": "^4.16.0",
    "@ionic-native/file-path": "^4.16.0",
    "@ionic-native/file-transfer": "^4.16.0",
    "@ionic-native/globalization": "^5.0.0",
    "@ionic-native/google-analytics": "^4.20.0",
    "@ionic-native/google-plus": "^4.17.0",
    "@ionic-native/image-picker": "^4.15.0",
    "@ionic-native/in-app-browser": "^4.18.0",
    "@ionic-native/ionic-webview": "^5.0.0-beta.11",
    "@ionic-native/keyboard": "^4.15.0",
    "@ionic-native/network": "^4.17.0",
    "@ionic-native/photo-library": "^4.15.0",
    "@ionic-native/social-sharing": "^4.15.0",
    "@ionic-native/splash-screen": "^4.20.0",
    "@ionic-native/status-bar": "~4.12.0",
    "@ionic-native/youtube-video-player": "^4.17.0",
    "@ionic/storage": "^2.1.3",
    "@ngx-translate/core": "^9.1.1",
    "@ngx-translate/http-loader": "^3.0.1",
    "angular-moment-timezone": "^1.7.1",
    "cordova": "^7.1.0",
    "cordova-android": "6.4.0",
    "cordova-android-play-services-gradle-release": "^1.4.4",
    "cordova-android-support-gradle-release": "^2.0.1",
    "cordova-annotated-plugin-android": "^1.0.4",
    "cordova-fabric-plugin": "^1.1.14-dev",
    "cordova-ios": "4.5.5",
    "cordova-play-services-version-adapter": "^1.0.2",
    "cordova-plugin-add-swift-support": "2.0.2",
    "cordova-plugin-analytics": "^2.0.0",
    "cordova-plugin-app-version": "^0.1.9",
    "cordova-plugin-badge": "^0.8.8",
    "cordova-plugin-calendar": "^5.1.2",
    "cordova-plugin-camera": "^4.0.3",
    "cordova-plugin-cocoapod-support": "^1.6.2",
    "cordova-plugin-datepicker": "^0.9.3",
    "cordova-plugin-device": "^2.0.2",
    "cordova-plugin-facebook4": "^3.1.0",
    "cordova-plugin-fcm-with-dependecy-updated": "^2.3.0",
    "cordova-plugin-file": "^5.0.0",
    "cordova-plugin-file-transfer": "^1.7.1",
    "cordova-plugin-filepath": "^1.4.2",
    "cordova-plugin-google-analytics": "^1.8.6",
    "cordova-plugin-googleplus": "^5.3.2",
    "cordova-plugin-inappbrowser": "^3.0.0",
    "cordova-plugin-ionic-keyboard": "^2.1.2",
    "cordova-plugin-ionic-webview": "^1.2.1",
    "cordova-plugin-local-notification": "^0.9.0-beta.2",
    "cordova-plugin-network-information": "^2.0.1",
    "cordova-plugin-photo-library": "^2.1.1",
    "cordova-plugin-splashscreen": "^5.0.2",
    "cordova-plugin-telerik-imagepicker": "^2.2.2",
    "cordova-plugin-whitelist": "^1.3.3",
    "cordova-plugin-x-socialsharing": "^5.4.1",
    "cordova-plugin-youtube-video-player": "^2.1.0",
    "cordova-sqlite-storage": "^2.4.0",
    "es6-promise-plugin": "^4.2.2",
    "ionic-angular": "3.9.2",
    "ionicons": "3.0.0",
    "moment": "^2.24.0",
    "run": "1.4.0",
    "rxjs": "5.5.11",
    "sw-toolbox": "3.6.0",
    "zone.js": "0.8.26"
  },
  "devDependencies": {
    "@ionic/app-scripts": "3.2.0",
    "typescript": "~2.6.2"
  },
  "description": "An Ionic project",
  "cordova": {
    "plugins": {
      "cordova-plugin-whitelist": {},
      "cordova-plugin-device": {},
      "cordova-plugin-ionic-keyboard": {},
      "cordova-sqlite-storage": {},
      "cordova-plugin-datepicker": {},
      "cordova-plugin-calendar": {
        "CALENDAR_USAGE_DESCRIPTION": " "
      },
      "cordova-plugin-x-socialsharing": {},
      "cordova-plugin-photo-library": {
        "PHOTO_LIBRARY_USAGE_DESCRIPTION": "Select Photos"
      },
      "cordova-plugin-telerik-imagepicker": {
        "PHOTO_LIBRARY_USAGE_DESCRIPTION": "Select Image"
      },
      "cordova-plugin-file": {},
      "cordova-plugin-filepath": {},
      "cordova-plugin-file-transfer": {},
      "cordova-android-play-services-gradle-release": {
        "PLAY_SERVICES_VERSION": "11.6.2"
      },
      "cordova-plugin-camera": {},
      "cordova-plugin-youtube-video-player": {},
      "cordova-plugin-network-information": {},
      "cordova-plugin-local-notification": {},
      "cordova-plugin-inappbrowser": {},
      "cordova-android-support-gradle-release": {
        "ANDROID_SUPPORT_VERSION": "26.+"
      },
      "cordova-plugin-fcm-with-dependecy-updated": {},
      "cordova-plugin-app-version": {},
      "cordova-plugin-ionic-webview": {},
      "cordova-plugin-splashscreen": {},
      "cordova-plugin-google-analytics": {
        "GMS_VERSION": "11.0.1"
      },
      "cordova-plugin-add-swift-support": {}
    },
    "platforms": [
      "android",
      "ios"
    ]
  }
}
omicronsrl commented 4 years ago

Same problem for me?

{
  "name": "NewAppy",
  "version": "0.0.1",
  "author": "Ionic Framework",
  "homepage": "http://ionicframework.com/",
  "private": true,
  "scripts": {
    "clean": "ionic-app-scripts clean",
    "build": "ionic-app-scripts build",
    "lint": "ionic-app-scripts lint",
    "ionic:build": "ionic-app-scripts build",
    "ionic:serve": "ionic-app-scripts serve"
  },
  "dependencies": {
    "@angular/common": "5.0.3",
    "@angular/compiler": "5.0.3",
    "@angular/compiler-cli": "5.0.3",
    "@angular/core": "5.0.3",
    "@angular/forms": "5.0.3",
    "@angular/http": "5.0.3",
    "@angular/platform-browser": "5.0.3",
    "@angular/platform-browser-dynamic": "5.0.3",
    "@ionic-native/core": "4.4.0",
    "@ionic-native/fcm": "^4.20.0",
    "@ionic-native/native-storage": "^4.20.0",
    "@ionic-native/splash-screen": "4.4.0",
    "@ionic-native/status-bar": "4.4.0",
    "@ionic-native/toast": "^4.20.0",
    "@ionic/storage": "2.1.3",
    "cordova-android": "^8.0.0",
    "cordova-ios": "^5.1.1",
    "cordova-plugin-apprate": "^1.1.11",
    "cordova-plugin-console": "^1.0.2",
    "cordova-plugin-device": "^2.0.1",
    "cordova-plugin-dialogs": "^2.0.2",
    "cordova-plugin-fcm-with-dependecy-updated": "^6.4.3",
    "cordova-plugin-geolocation": "^2.1.0",
    "cordova-plugin-image-picker": "^1.1.0",
    "cordova-plugin-inappbrowser": "^3.2.0",
    "cordova-plugin-ionic-keyboard": "^2.0.5",
    "cordova-plugin-ionic-webview": "^4.1.3",
    "cordova-plugin-splashscreen": "^5.0.2",
    "cordova-plugin-statusbar": "^2.1.1",
    "cordova-plugin-transport-security": "^0.1.1",
    "cordova-plugin-whitelist": "^1.3.3",
    "cordova-plugin-x-socialsharing": "^5.0.10",
    "ion-multi-picker": "^2.1.2",
    "ionic-angular": "3.9.2",
    "ionic-calendar-date-picker": "^0.1.2",
    "ionicons": "3.0.0",
    "node-gyp": "^5.0.3",
    "rxjs": "5.5.2",
    "sw-toolbox": "3.6.0",
    "zone.js": "0.8.18"
  },
  "devDependencies": {
    "@ionic/app-scripts": "3.1.8",
    "cordova-plugin-apprate": "^1.5.0",
    "node-sass": "^4.12.0",
    "typescript": "2.4.2"
  },
  "description": "An Ionic project",
  "cordova": {
    "plugins": {
      "cordova-plugin-whitelist": {},
      "cordova-plugin-device": {},
      "cordova-plugin-splashscreen": {},
      "cordova-plugin-ionic-keyboard": {},
      "cordova-plugin-console": {},
      "cordova-plugin-statusbar": {},
      "cordova-plugin-image-picker": {},
      "cordova-plugin-x-socialsharing": {},
      "cordova-plugin-geolocation": {},
      "cordova-plugin-transport-security": {},
      "cordova-plugin-nativestorage": {},
      "cordova-plugin-apprate": {},
      "cordova-plugin-ionic-webview": {},
      "cordova-plugin-inappbrowser": {},
      "cordova-plugin-fcm-with-dependecy-updated": {}
    },
    "platforms": [
      "android",
      "ios"
    ]
  }
}
andrehtissot commented 4 years ago

@kapilSoni101 The version cordova-plugin-fcm-with-dependecy-updated@2.3.0 is far outdated, and will stop being accepted to Apple's Store in December, due its use of the old iOS webview. Upgrading and would be the first step, I also recommend that you check the changelog summary in the Readme to catch up.

Also, your version of cordova-plugin-local-notification has incompatibilities issues fixed in newer versions of cordova-plugin-fcm-with-dependecy-updated.

Alternatively: You could remove @ionic-native/fcm and upgrade to cordova-plugin-fcm-with-dependecy-updated@7.0.0-beta.3, which includes ionic support.

andrehtissot commented 4 years ago

@omicronsrl As your situation appears very different than @kapilSoni101, I've created #107.

andrehtissot commented 4 years ago

@kapilSoni101 I'm closing this issue as completing the steps should enable your app to work as intended. If you find any issues, let me know.

kapilSoni101 commented 4 years ago

@andrehtissot : Sir i have followed your instruction but during run app in xcode i got #import "Firebase.h" file not found.check below attached image:

Screenshot 2020-06-17 at 9 21 16 PM

can you tell me how to fix?

andrehtissot commented 4 years ago

@ kapilSoni101 Yes, of course.

Back in the day, the plugin shipped a copy of the google sdk. Which creates certain problems when more than one plugin requires that sdk. Hence, the adoption of Cocoapods, which is managed automatically by cordova, and source-optimized by this plugin.

Do you have cocoapods installed? Would you share the log result of running the install plugin command?

kapilSoni101 commented 4 years ago

@andrehtissot - sir in machine cocoapods is installed and in ios folder podfile is generated.but if hit pod install I got below error- " You can not run cocoapods as a root? Which plugin sir?

andrehtissot commented 4 years ago

Yes, you shouldn'd ever, for your system's safety. So I recommend to install cocoapods as a user, not as root (no "sudo"). But if you want to force it, there are ways https://stackoverflow.com/questions/23190064/cant-run-sudo-pod-install-after-updating-to-cocoapods-0-32-1-with-error-you-ca

kapilSoni101 commented 4 years ago

@andrehtissot - sir I have install pod without sudo and error is removed.check log after pod install-

15924126521095153325823608900621 Then in xcode I got another issue

15924126961932906386910033495329

kapilSoni101 commented 4 years ago

@andrehtissot - sir i have fixed above issue and notification is received in xcode log but not appear in the mobile device ?

andrehtissot commented 4 years ago

@kapilSoni101

  1. Would you share the log, so I can have an idea of how the plugin behaved? You can react tokens or user identifiable information, of course.
  2. Have you added the call to request user's notification permission?
  3. Feels weird to be called "sir", we are all developers helping each other :)
kapilSoni101 commented 4 years ago

@andrehtissot: i have added 2 different log for background and foreground state check below image: IMG20200618205407

IMG20200618205326

during push notification, now onNotification not fire again.i am not understand what's the issue?

  1. Yes, during app launch 1st check the permission.

  2. I have tried with cordova-plugin-firebase for test notification but different scenario here, notification is received but not showing in mobile device?

kapilSoni101 commented 4 years ago

@andrehtissot - any updates for my issue?

andrehtissot commented 4 years ago

Thank you @kapilSoni101.

Did you kept cordova-plugin-firebase installed? The log messages bellow are not from cordova-plugin-fcm-with-dependecy-updated: Screenshot 2020-06-19 at 17 38 54

Another plugin is responding the push instead. Would you share your package.json again? I believe some packages have changed.

kapilSoni101 commented 4 years ago

@andrehtissot - I have installed Cordova firebase plugin in seperate dummy project.above log is from fcm-with-dependency plugin.

posdevelopers commented 4 years ago

@kapilSoni101 how do you resolved podlock issue ,please i have also same problem. diff: /Podfile.lock: No such file or directory diff: /Manifest.lock: No such file or directory error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.

posdevelopers commented 4 years ago

@kapilSoni101 firebase plugin have uiwebview which apple reject.

kapilSoni101 commented 4 years ago

@posdevelopers- 1.I have fixed pod issue via below steps- choose the target > go to Build Phrases > click Link Binary With Libraries > remove all libPods.a files open Terminal > direct to your project > run: pod install 2.yes ur correct actually I have used firebase plugin for check this plugin is working for foreground case or not only. I have stuck above issue last 1week and tried different plugin version as well as different ios platform but nothing worked for me.

andrehtissot commented 4 years ago

@kapilSoni101,

It looks like it is an incompatibility with the facebook plugin. Although I wasn't able to confirm.

  1. Please upgrade cordova-plugin-facebook4, so, instead of an internal compile library, it starts using the cocoapods dependency "FBSDKCoreKit". Allowing me to investigate it's internal behavior I can read in https://github.com/facebook/facebook-ios-sdk.

  2. It'd help me to understand the issue if you checked if the method customDidFinishLaunchingWithOptions is called from the plugin's file AppDelegate+FCMPlugin.m. Like in the image bellow: Screenshot 2020-06-22 at 02 45 07

  3. The log messages you presented were not found anywhere, in neither of the dependencies you provided in your package.json.

  4. After hours of installing, fixing unsuported code, and debugging, I'm still far from being able to reproduce the issue. PLEASE provide a hello world app of which I can run and debug.

kapilSoni101 commented 4 years ago

@andrehtissot, 1.can you tell me 1thing if I remove Facebook plugin in such case notification issue is resolved or not? 2.ok I will share hello world app but which plugin we have to install in that project?

andrehtissot commented 4 years ago
  1. can you tell me 1thing if I remove Facebook plugin in such case notification issue is resolved or not?

I wasn't able to confirm the source of the issue. I believe it will when you remove the plugin and the Facebook iOS SDK. But without being able to reproduce the issue, this is just an assumption based on multiple plugins implementing/overriding didFinishLaunchingWithOptions.

  1. Ok I will share hello world app but which plugin we have to install in that project?

The ones, in the same versions, that you intend on having in your application. Make sure that this hello world app would present the same problems that you see on your app.

kapilSoni101 commented 4 years ago

@andrehtissot: I wasn't able to confirm the source of the issue. I believe it will when you remove the plugin and the Facebook iOS SDK. But without being able to reproduce the issue, this is just an assumption based on multiple plugins implementing/overriding didFinishLaunchingWithOptions.

Can you tell me 1 thing I have create seperate project for push notification only install push notification plugin but same result not working?

The ones, in the same versions, that you intend on having in your application. Make sure that this hello world app would present the same problems that you see on your app.

ok i will share as soon as possible.

andrehtissot commented 4 years ago

Can you tell me 1 thing I have create seperate project for push notification only install push notification plugin but same result not working?

Would you confirm that, in this new app, IOS onNotification doesn’t trigger when the app is in foreground or background. But onNotification does, when the app is completely closed and opened by tapping the notification?

ok i will share as soon as possible.

Thank you.

kapilSoni101 commented 4 years ago

Would you confirm that, in this new app, IOS onNotification doesn’t trigger when the app is in foreground or background. But onNotification does, when the app is completely closed and opened by tapping the notification? Yes i have confirmed IOS onNotification doesn’t trigger when the app is in foreground or background as well as after tap onNotification not fire.

andrehtissot commented 4 years ago

Thank you @kapilSoni101, I'm still waiting for the hello world app, and I invite you to try the newer v7.0.1 version.

kapilSoni101 commented 4 years ago

@andrehtissot - actually I was Busy in another project that's the reason I have not shared but I will share tomorrow definitely. Ok I will check newer version and update you.

kapilSoni101 commented 4 years ago

@andretissot :i tried newer version but i got 'Firebase.h' file not found can you tell me how to fix?

andrehtissot commented 4 years ago

@kapilSoni101 Which version were you using before upgrading to 7.0.1?

kapilSoni101 commented 4 years ago

@andrehtissot - I don't idea about that because I tried multiple versions of fcm plugin?

jffs commented 4 years ago

Hey i also have this issue, Push Notifications works well on android but not in iOS, I let you here my Podfile and package.json, hope you can help me

`# DO NOT MODIFY -- auto-generated by Apache Cordova
source 'https://cdn.cocoapods.org/'
source 'https://cdn.cocoapods.org'
platform :ios, '11.0'
use_frameworks!
target 'Chatrz' do
    project 'Chatrz.xcodeproj'
    pod 'Branch', '~> 0.31.3'
    pod 'FBSDKCoreKit', '5.15.0'
    pod 'FBSDKLoginKit', '5.15.0'
    pod 'FBSDKShareKit', '5.15.0'
    pod 'Firebase/Core', '>= 6.21.0'
    pod 'Firebase/Analytics', '>= 6.21.0'
    pod 'Firebase/Messaging', '>= 6.21.0'
    pod 'GoogleSignIn', '~> 5.0.2'
    pod 'GoogleUtilities', '~> 6.6'
    pod 'XCDYouTubeKit', '~> 2.7'
    pod 'Google-Mobile-Ads-SDK'
end
`

Package.json

{
  "name": "chatrz-app",
  "version": "0.0.1",
  "author": "Ionic Framework",
  "homepage": "https://ionicframework.com/",
  "scripts": {
    "ng": "ng",
    "start": "ng serve",
    "build": "ng build",
    "test": "ng test",
    "lint": "ng lint",
    "e2e": "ng e2e"
  },
  "private": true,
  "dependencies": {
    "@angular/animations": "^8.2.14",
    "@angular/common": "~8.1.2",
    "@angular/compiler": "~8.1.2",
    "@angular/forms": "~8.1.2",
    "@angular/platform-browser": "~8.1.2",
    "@angular/platform-browser-dynamic": "~8.1.2",
    "@ionic-native/admob-free": "^5.27.0",
    "@ionic-native/branch-io": "^5.26.0",
    "@ionic-native/core": "^5.0.0",
    "@ionic-native/email-composer": "^5.26.0",
    "@ionic-native/facebook": "^5.27.0",
    "@ionic-native/fcm": "^5.26.0",
    "@ionic-native/google-plus": "^5.26.0",
    "@ionic-native/in-app-browser": "^5.24.0",
    "@ionic-native/in-app-purchase-2": "^5.21.6",
    "@ionic-native/ionic-webview": "^5.27.0",
    "@ionic-native/keyboard": "^5.20.0",
    "@ionic-native/social-sharing": "^5.19.1",
    "@ionic-native/splash-screen": "^5.0.0",
    "@ionic-native/status-bar": "^5.16.0",
    "@ionic-native/youtube-video-player": "^5.27.0",
    "@ionic/angular": "^5.1.1",
    "@ionic/lab": "^2.0.13",
    "@ionic/storage": "^2.2.0",
    "@ngx-translate/core": "^11.0.1",
    "@ngx-translate/http-loader": "^4.0.0",
    "@types/hammerjs": "^2.0.36",
    "angularfire2": "^5.2.3",
    "branch-cordova-sdk": "4.1.3",
    "cc.fovea.cordova.purchase": "8.1.1",
    "cordova": "^9.0.0",
    "cordova-admob-sdk": "0.24.1",
    "cordova-android": "8.1.0",
    "cordova-ios": "5.1.1",
    "cordova-plugin-add-swift-support": "^2.0.2",
    "cordova-plugin-admob-free": "0.27.0",
    "cordova-plugin-androidx-adapter": "^1.1.1",
    "cordova-plugin-device": "^2.0.2",
    "cordova-plugin-email-composer": "0.9.2",
    "cordova-plugin-facebook4": "6.4.0",
    "cordova-plugin-fcm-with-dependecy-updated": "6.4.1",
    "cordova-plugin-googleplus": "8.5.0",
    "cordova-plugin-inappbrowser": "^3.2.0",
    "cordova-plugin-ionic-keyboard": "^2.2.0",
    "cordova-plugin-ionic-webview": "5.0.0",
    "cordova-plugin-splashscreen": "^5.0.2",
    "cordova-plugin-statusbar": "2.4.3",
    "cordova-plugin-video-player": "git+https://github.com/moust/cordova-plugin-videoplayer.git",
    "cordova-plugin-whitelist": "^1.3.3",
    "cordova-plugin-wkwebviewxhrfix": "git+https://github.com/TheMattRay/cordova-plugin-wkwebviewxhrfix.git",
    "cordova-plugin-x-socialsharing": "6.0.0",
    "cordova-plugin-youtube-video-player": "2.4.0",
    "cordova-promise-polyfill": "0.0.2",
    "cordova-sqlite-storage": "5.0.0",
    "core-js": "^2.5.4",
    "es6-promise-plugin": "4.2.2",
    "firebase": "^7.6.0",
    "hammerjs": "^2.0.8",
    "iso": "5.2.0",
    "promise-polyfill": "^8.1.3",
    "rxjs": "~6.5.1",
    "safe-json-parse": "^4.0.0",
    "save": "^2.4.0",
    "sha1": "^1.1.1",
    "tslib": "^1.9.0",
    "zone.js": "~0.9.1"
  },
  "devDependencies": {
    "@angular-devkit/architect": "~0.801.2",
    "@angular-devkit/build-angular": "~0.801.2",
    "@angular-devkit/core": "~8.1.2",
    "@angular-devkit/schematics": "~8.1.2",
    "@angular/cli": "~8.1.2",
    "@angular/compiler": "~8.1.2",
    "@angular/compiler-cli": "~8.1.2",
    "@angular/core": "^8.1.3",
    "@angular/language-service": "~8.1.2",
    "@angular/router": "^8.1.3",
    "@ionic/angular-toolkit": "^2.2.0",
    "@types/jasmine": "~3.3.8",
    "@types/jasminewd2": "~2.0.3",
    "@types/node": "~8.9.4",
    "codelyzer": "^5.0.0",
    "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",
    "video.js": "^7.6.6"
  },
  "description": "An Ionic project",
  "cordova": {
    "plugins": {
      "cordova-plugin-whitelist": {},
      "cordova-plugin-device": {},
      "cordova-plugin-splashscreen": {},
      "cordova-plugin-ionic-keyboard": {},
      "cc.fovea.cordova.purchase": {
        "BILLING_KEY": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAiyFRX/DIuI6nhRPPXE7mflmWUI2Bpp+vgkTVAZ5NrBbq2p1lp/rbLyNP0SSFib5Xl8IE6CeZ6rTyqUx6mDexaeXtySY1sULMiAJXPbYlekRUoC+E5nMsGiJkA4rzbjqjYSyVad2uDTnTUOExzyKHTCq3G0njG5tnuFnPqLkQ5prDkkGzXmWdJ7rTCWa8H/xCE6NQXrIIB6r6unvFBgW9xmyZ1HUwSXIZSnpW/dDjzr3ZsxN5Y3dx6wvBngL3dcAXxf3TKeCifR+3SIDgiwdZ7LXF4qWE88NY7gktX6mYUK2Kw3YELb/EkmFbR1nnfUSW+zZnyK272Ieuke/qGLguJwIDAQAB"
      },
      "cordova-sqlite-storage": {},
      "cordova-plugin-statusbar": {},
      "cordova-plugin-x-socialsharing": {
        "ANDROID_SUPPORT_V4_VERSION": "24.1.1+"
      },
      "cordova-plugin-facebook4": {
        "APP_ID": "476040099666763",
        "APP_NAME": "Chatrz"
      },
      "cordova-plugin-googleplus": {
        "REVERSED_CLIENT_ID": "com.googleusercontent.apps.648101751269-jdfl4j22gtg08lb92t18l7chal1j4ms5",
        "PLAY_SERVICES_VERSION": "15.0.1"
      },
      "cordova-plugin-androidx-adapter": {},
      "cordova-plugin-email-composer": {
        "ANDROID_SUPPORT_V4_VERSION": "27.+"
      },
      "cordova-plugin-inappbrowser": {},
      "branch-cordova-sdk": {},
      "cordova-plugin-youtube-video-player": {},
      "cordova-plugin-ionic-webview": {},
      "cordova-plugin-fcm-with-dependecy-updated": {
        "FCM_VERSION": "19.0.0",
        "GRADLE_TOOLS_VERSION": "3.5.3",
        "GOOGLE_SERVICES_VERSION": "4.3.3",
        "SUPPORT_LIBRARY_VERSION": "28.0.0",
        "ANDROID_DEFAULT_NOTIFICATION_ICON": "@mipmap/ic_launcher"
      },
      "cordova-plugin-wkwebviewxhrfix": {},
      "cordova-plugin-admob-free": {
        "ADMOB_APP_ID": "ca-app-pub-3931564863766938~6745657311"
      }
    },
    "platforms": [
      "android",
      "ios"
    ]
  }
}

thanks in advance

andrehtissot commented 4 years ago

@kapilSoni101 You might have some garbage file left.

Please run these commands (replacing APPLICATION NAME, of course):

ionic cordova plugin remove cordova-plugin-fcm-with-dependecy-updated
rm -rf node_modules/cordova-plugin-fcm-with-dependecy-updated/
rm -rf plugins/cordova-plugin-fcm-with-dependecy-updated/
rm -rf platforms/ios/[APPLICATION NAME]/Plugins/cordova-plugin-fcm-with-dependecy-updated/
ionic cordova plugin add cordova-plugin-fcm-with-dependecy-updated
kapilSoni101 commented 4 years ago

@andrehtissot:I tried but same result same error fire again check below image:

Screenshot 2020-07-04 at 11 52 46 AM

posdevelopers commented 4 years ago

Install fcm plugin without sudo command and it's working 😊

kapilSoni101 commented 4 years ago

@posdevelopers-i tried but same result error show again

andrehtissot commented 4 years ago

@kapilSoni101 Would you send the console output of running the commands bellow?

ionic cordova plugin remove cordova-plugin-fcm-with-dependecy-updated
ionic cordova plugin add cordova-plugin-fcm-with-dependecy-updated
kapilSoni101 commented 4 years ago

@andrehtissot:ionic cordova plugin remove cordova-plugin-fcm-with-dependecy-updated Screenshot 2020-07-08 at 11 00 06 AM

ionic cordova plugin add cordova-plugin-fcm-with-dependecy-updated Screenshot 2020-07-08 at 11 14 39 AM

andrehtissot commented 4 years ago

@kapilSoni101 You shouldn't ever install dependencies as root (sudo), as you give install scripts the power to do pretty much anything with your machine. And, very important here, cocoapods won't install native iOS dependencies.

Would you try to install without sudo? And would you share the output of pod --version?

kapilSoni101 commented 4 years ago

@andrehtissot: i installed above plugin without sudo i got below error: Error: EACCES: permission denied, open '/Users/apple/.ionic/config.json.987780871'

And would you share the output of pod --version? Pod version - 1.9.3

andrehtissot commented 4 years ago

Your pod version is high enough.

You installed ionic globally as root. You can either:

  1. Try to allow user access to ionic config:
    chmod -R 777 /Users/apple/.ionic
  2. Or, the recommended but longer path, to install NVM as your user (https://github.com/nvm-sh/nvm) and install in this new local nodejs enviroment, the global packages you use, like ionic.
andrehtissot commented 4 years ago

Issue closed due to inactivity.

kapilSoni101 commented 4 years ago

@andrehtissot - I checked all ur solution but nothing worked for me but issue is not resolved

andrehtissot commented 4 years ago

You have cordova-plugin-cocoapod-support installed, which should be forcing the cocoapods dependencies support. Which shouldn't be necessary due to cordova's management of cocoapods.

Would you:

manel00 commented 3 years ago

Still not working on Ionic 5 + Angular, any solution?