Is it possible,using CustomBuildAction, to rename the compiled APK and add the current VersionName?
So Netplus.apk becomes NetplusCore_1.2.5.apk for example?
Is it possible,using CustomBuildAction, to rename the compiled APK and add the current VersionName?
So Netplus.apk becomes NetplusCore_1.2.5.apk for example?
It is also easy to customize an app for the feature.
B4X:
B4XMainPage.bas
#CustomBuildAction: 5, %WINDIR%\System32\B4ARenameApk.exe, ..\..\B4XMainPage.bas version
B4XMainPage.bas
...
Private version As String="1.0.2"
...
The app B4ARenameApk.exe is attached. download and move it into %WINDIR%\System32\ folder
At present, the name of the project in English will generate an apk file with the same name as the project. Chinese the project name generates a result.apk. Currently, in version 13.1, you can set the Chinese name with the following code. #If release '#CustomBuildAction: 4...