Bug? Application.LabelName starts with a dot?

AHilberink

Active Member
Licensed User
Longtime User
Hi,

Is it correct that Application.LabelName starts with a dot ("."), while my labelname doesn't?

Best regards,
André
 

DonManfred

Expert
Licensed User
Longtime User
You are not providing enough informations. What exactly starts with a dot?
B4X:
#ApplicationLabel: TapKeyB4A
results in this manifestentry
<application
android:icon="@drawable/icon"
android:label="TapKeyB4A"
 

AHilberink

Active Member
Licensed User
Longtime User
Hi DonManfred,

B4X:
#ApplicationLabel: TestProject

I use
B4X:
Log(Application.LabelName)
and the log shows .TestProject

Basic4Android v8.80

Best regards,
André
 

AHilberink

Active Member
Licensed User
Longtime User
No. My guess is that you changed something in the manifest editor that causes it. Please upload a project that demonstrates it.

I found the problem within the Manifest:
SetApplicationAttribute(android:label, ".$LABEL$")

I added the dot, because of a manifest-error and this could be a solution.
 
Top