I have a .property
file which at the moment is like this:
com.myapp.token = myGenericString
What I would like to have is to have different values for different build variants. Something like:
if (BuildConfig == Release) {
com.myapp.token = myReleaseString
} else {
com.myapp.token = myOtherString
}
I'm new to Android so I'm not even sure it's possible. Any suggestions? Thanks!