Home > Software engineering >  Diffrent package name and bundle id
Diffrent package name and bundle id

Time:01-02

My flutter app is already published on playstore. And now the bundle id is not available error on xcode when build and publish ips app. Is it possible to set up Different package name and bundle id for a flutter app

Firebase in android working very well. And I tried to set up firebase push notification in iOS with slightly changed bundle id, everything look okay, but firebase messages not received.

CodePudding user response:

Yes.

Use following steps: Xcode-> Runner -> Target -> Runner -> Bundle Identifier

Change the bundle identifier to something else. Now, head over to firebase and add iOS app with this bundle identifier. You will have to set push notification for iOS in case you are going to use firebase for iOS push notification.

https://docs-assets.developer.apple.com/published/e7484edae7/[email protected]

  • Related