About 6 (or more) months ago i have started creating an Android project (for old, 2.1 version) that uses Google maps. As i already developed some apps for Android (i do have a "Play" account and some other apps on the market) i managed to easily obtain debug map key, placed it inside of my map xml element. Everything works fine in the emulator.
Now, my app is done and i wanted to get "release" API key, but it looks like many things have changed in the meantime (no need to tell you how frustrating are those rapid changes Google is introducing) - i'm using old style "mapview", but documentation says that that approach isn't supported anymore?
My map activity is simple, it looks like this:
<?xml version="1.0" encoding="utf-8"?><RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
>
<g.maps.MyMapView
android:id="@+id/mapView"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:apiKey="MY_DEBUG_KEY"
android:clickable="true"
android:enabled="true" />
All i want is to replace the "DEBUG" key with "RELESE" key. I don't want to change my Android manifest, i don't want to use new "map fragments", i don't want to "drop support for 2.1 version". How can i get and use RELEASE key with this new system of getting and placing keys?