Android Question Firebase name

interlnk

Member
Licensed User
When I add Firebase to my app, Firebase console forces me to include a dot in the packagename. How can I avoid it?
 

DonManfred

Expert
Licensed User
Longtime User
i dont think you can avoid.
Usually a packagename DOES contains dots

Additional this is a Android RULE
https://developer.android.com/studio/build/application-id.html

And although the application ID looks like a traditional Java package name, the naming rules for the application ID are a bit more restrictive:

  • It must have at least two segments (one or more dots).
  • Each segment must start with a letter.
  • All characters must be alphanumeric or an underscore [a-zA-Z0-9_].
 
Upvote 0

DonManfred

Expert
Licensed User
Longtime User
the b4a file must be com.firebase.android?
No. The B4A Filename has nothing to do with the packagename.
It can be "mysuperlongtasknamewithoutdotsinthename.b4a" without problem.

STRG-B bringsyou to the buildconfiguration. HERE you need to set your packagename to com.firebase.android
 
Upvote 0
Top