Android Question compile each build configuration to different directory

sdixon

Member
Licensed User
Longtime User
I haven't been able find a satisfactory answer to the following question.

Is it possible to place the apk, after it has been compiled, in a different directory than the default?

As an example: I have two configurations GOOGLE and AMAZON. When I Compile and Run I would like to have the GOOGLE and AMAZON builds end up in their own directory automatically so that I don't have to manually copy/paste the apk.
 

DonManfred

Expert
Licensed User
Longtime User
You can use the commandlinebuilder
 
Upvote 0

sdixon

Member
Licensed User
Longtime User
I got it to work with the command line builder. Thanks

The only problem is that I still have to copy / paste the apk to a separate directory as the compiler deletes the existing apk and dex file when it compiles a new build.

Would be so handy to be able to just compile each build to a separate directory.
 
Last edited:
Upvote 0
Top