interlnk Member Licensed User Dec 14, 2017 #1 When I add Firebase to my app, Firebase console forces me to include a dot in the packagename. How can I avoid it?
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 Dec 14, 2017 #2 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_]. Click to expand... Upvote 0
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_]. Click to expand...
interlnk Member Licensed User Dec 14, 2017 #3 Then, if the packagename is com.firebase.android, the b4a file must be com.firebase.android? Upvote 0
DonManfred Expert Licensed User Longtime User Dec 14, 2017 #4 interlnk said: the b4a file must be com.firebase.android? Click to expand... 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
interlnk said: the b4a file must be com.firebase.android? Click to expand... 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