Application name in unoproj

According to the developer guides (https://www.fusetools.com/learn/guides/unoprojectformat), it looks like the Android ApplicationLabel depends on Title and Title depends on Name inside .unoproj.

So where is Name defined?

"Title": "$(Name)",

"ApplicationLabel": "$(Title)",

Done some testing. Looks like Name basically is the file name of unoproj. Please correct me if I am wrong. Thanks.

You’re right. Name expands to the unoproj filename by default.

If you want, you can also override it using

"Name": "My Name",

Thanks, Morten.