In the general Android manifest for my app using google map v2, it looks something like this:
<manifest> ... <application> ... <meta-data android:name="com.google.android.maps.v2.API_KEY" android:value="XYZ...ZYX" /> ... </application> <manifest>
The question is, is it possible to do something like this:
<manifest> ... <application> ... <meta-data android:name="com.google.android.maps.v2.API_KEY" android:value="@{my.google.api.key}" /> ... </application> <manifest>
and my_local.property file in my project with the line: my.google.api.key = XYZ ... ZYX?
source share