As we all know, how to use google map with system/framework/map.jar with user-library.
But I encounter one problem, if the device doesn’t have system/framework/map.jar in it’s system, you application will do not work. So I want to put map.jar to our project as a reference jar, does this work? I have try it and remove user-libray line in manifest.xml.
but got exception:
android java.lang.RuntimeException: stub
does anyone know how to workaround?
As we all know, how to use google map with system/framework/map.jar with user-library .
Share
Now I use “uses-library android:name=”com.google.android.maps” android:required=”false” ”
then when I need googlemap, I check if our system contains this component, if contains, use it. if no, don’t use.