2

I installed Firebase Analytics and I'm getting this in my binary from Apple:

ITMS-90078: Missing Push Notification Entitlement - Your app appears to register with the Apple Push Notification service, but the app signature's entitlements do not include the "aps-environment" entitlement.

​ I don't have push notification in my game and it seems like it's coming from Firebase. Did I install something I shouldn't have? I don't want Push Notification.

Mistergreen
  • 1,052
  • 1
  • 8
  • 16

1 Answers1

0

Check your project's build settings. Use Xcode to clear out those settings and try to rebuild.

See here > App Store upload rejected by push entitlements problem

Update:

  1. Create a new project with firebase.
  2. compare the configs of the new project and your project with the warning. I'm betting you have an unnecessary flag or setting that can be removed, from the firebase plugin.
Anonymous Type
  • 3,051
  • 2
  • 27
  • 45
  • 1
    It's weird. I only get a warning to fix it but Apple accepts the binary. – Mistergreen Aug 23 '19 at 00:17
  • same warning with a new project @Mistergreen? – Anonymous Type Oct 01 '19 at 03:35
  • 1
    I asked the same question on firebase google group and got an answer where the firebase code might imitate push notifications, and triggers notification detection from Apple. – Mistergreen Oct 07 '19 at 01:50
  • if you have tested it, and can confirm that is the correct, answer then please add a new answer to your question and mark it correct. answering in the comments of an incorrect answer is hard for some users to spot. thanks. – Anonymous Type Oct 07 '19 at 23:09
  • I don't see how fire-base or anything else could initiate it without you coding it, and therefore knowing that you were calling apple push notifications (unless you forgot you wrote it). I suspect that this is not the answer in your case, but its good to bring it up it might help somebody else. – Anonymous Type Oct 07 '19 at 23:11