I have two properties I am reading from a property file in my Android library e.g.
testURL=http://mytesturl.com
prodURL=http://myprodurl.com
This library is used by my Android App. I would like to build two variants of the Android app - one for test and one for Production. The only difference between the two variants is which URL to use e.g.
if(some_condition)
url= testURL
else
url= prodURL
I know the android-library plugin does not support productFlavor / buildTypes yet so I am wondering how to do this?