Is it possible to specify multiple keys for Google Maps Android API in the same code base?
It looks like I have to change the key in manifest file each time I change
String debugMapKey = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxx"; String releaseMapKey = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxx"; String mapKey = BuildConfig.DEBUG ? debugMapKey : releaseMapKey; MapView mv = new MapView(this, mapKey);