Msbuild: how to choose application storage for configuration

I use this line to build the apk of my delphi application (berlin):

MSBuild myapp.dproj / p: Config = Release / p: Platform = Android / t: Build; Deployment

but I don’t know how to configure the application store configuration or development (what we do in the project manager> target platform> Configuration

which correct parameter to use?

+4
source share
2 answers

The difference seems to be in the element Cfg_1:

msbuild /t:Build /p:Platform=Android /p:Cfg_1=true MyApp.dproj

seems to activate the application store and

msbuild /t:Build /p:Platform=Android /p:Cfg_1= MyApp.dproj

seems to activate Development.

+1
source

, ,

-1

Source: https://habr.com/ru/post/1674530/


All Articles