Android Question [SOLVED]Problem changing Package name

Zvi

Member
Licensed User
I wrote a simple program with layout and on compiling and running it noticed that it was called "B4A Example".
Using Ctrl B in the editor I changed the package name (to "Bridge.Bidding") but it still compiles as "B4A Example"!
What am I doing wrong?
Thanks
 

DonManfred

Expert
Licensed User
Longtime User
What am I doing wrong?
Don´t confuse the Packagename with the Applicationlabel.

B4X:
#Region  Project Attributes
    #ApplicationLabel: B4A Example
    #VersionCode: 1
    #VersionName:
    'SupportedOrientations possible values: unspecified, landscape or portrait.
    #SupportedOrientations: unspecified
    #CanInstallToExternalStorage: False
#End Region
 
Upvote 0
Top