android - Bamboo CI build script for different store apk -
so, have android app uses different endpoints each store (play store, amazon store).
i'm trying create build script in bamboo able build "x" store. want give variable in custom run build option in bamboo.
right i'm building locally , have .properties file have flag store. (file "myproperties.properties" contains: "amazon_build = false" playstore build)
how should handle ?
thank you.
instead of using properties file, pass property via build command line
ant -damazon_build=false
i output apk store specific folder make easier pickup artifact.
then run build once each store
Comments
Post a Comment