'Google Maps SDK for Android - Cost

My question is about the charge in the Google Maps API, I have the following code:

public void onMapReady(GoogleMap googleMap) {
    mMap = googleMap;

    // Add a marker in Sydney and move the camera
    LatLng sydney = new LatLng(latitud, longitud);
    Point point = mMap.getProjection().toScreenLocation(sydney);

    mMap.addMarker(new MarkerOptions().position(sydney).title("Marker in Sydney"));
    mMap.moveCamera(CameraUpdateFactory.newLatLngZoom(sydney,16));
}

That returns a map with a marker and with a latitude and longitude that I'm assigning. My question is: Does it cost to do this?



Solution 1:[1]

Google Maps SDK for Android at present time doesn't have any cost. If you check the price table of Google Maps Platform you will see that SKU Native Dynamic Maps (Android and iOS SDK) has unlimited quota with $0 price:

https://cloud.google.com/maps-platform/pricing/sheet/

https://developers.google.com/maps/billing/understanding-cost-of-use#mobile-dynamic

However, Google requires a billing account with credit card information enabled in your project even when you use products with $0 cost.

I hope this clarifies your doubt.

Solution 2:[2]

Noowadays, each 1.000 requests in Android Maps SDK, unfortunately it costs a whole bunch of 7$. Src: https://mapsplatform.google.com/pricing/

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 xomena
Solution 2 OneKe