Android Question Why APK file name is not same as package name.

Nitin Joshi

Active Member
Licensed User
Longtime User
Why my .apk file name is not same as package name (Project -> Build configuration). Output .apk file name is "result".
 

mangojack

Expert
Licensed User
Longtime User
If I remember right ... .apk file name is derived from your Project name . If the project name contains a space you will end up with "result.apk"

ie: compiling in Release mode ...
"My Project.b4a" > "result.apk"
"MyProject.b4a" > "MyProject.apk"
 
Upvote 0
Top