So, i have an android app which uses different endpoints for each store (play store, amazon store).
I'm trying to create a build script in bamboo to be able to build it for "x" store. I want to give it as a variable in custom run build option in bamboo.
Right now i'm building it locally and I have a .properties file where i have a flag for store. (file is "MyProperties.properties" which contains: "AMAZON_BUILD = false" to be as playstore build)
How I should handle this ?
Thank you.