android - Licence required to use Map intent? -
in 1 activity exposing address map intent in our app. google maps api have buy license , pay based on usage, have such clause when using google maps or other maps intent ?
if need new intent maps application (or external link), no license required...
to call new maps intent
use:
string url = "https://www.google.es/maps/place/mag%c3%b2ria-la+campana/@41.367488,2.138879,17z/"; intent intent = new intent(intent.action_view, uri.parse(url)); toast.maketext(activity, "maps", toast.length_long).show(); intent.setclassname("com.google.android.apps.maps", "com.google.android.maps.mapsactivity"); activity.startactivity(intent);
Comments
Post a Comment