N Nitin Joshi Active Member Licensed User Jan 17, 2021 #1 Why my .apk file name is not same as package name (Project -> Build configuration). Output .apk file name is "result".
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 Jan 17, 2021 #2 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
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"
KMatle Expert Licensed User Longtime User Jan 17, 2021 #3 Additional: Never use spaces in filenames or other names (even if you can). Upvote 0
sfsameer Well-Known Member Licensed User Longtime User Jan 17, 2021 #5 are you using : #MultiDex ? Upvote 0
kisoft Well-Known Member Licensed User Longtime User Jan 17, 2021 #6 KMatle said: Additional: Never use spaces in filenames or other names (even if you can). Click to expand... In addition, use only lowercase letters in the package name. Upvote 0
KMatle said: Additional: Never use spaces in filenames or other names (even if you can). Click to expand... In addition, use only lowercase letters in the package name.