0

I am currently using Fused Location API for android to get latitude and longitude of my device. What i want to know is does google charge money for fused location api too? Actually the app should give 24 hrs update of its location to the server.

Rojina
  • 217
  • 1
  • 3
  • 9

1 Answers1

1

No Google doesn't charge you anything for using FusedLocationProvider. It is free of cost. If you just want to get GPS location, it is free. If you use other APIs from Google Play Service then you might come under quota limit.

NinjaCoder
  • 2,381
  • 3
  • 24
  • 46
  • thank you very much...If i wan to show simple map and make marker move as per location update than does it come under quota limit? – Rojina Nov 06 '17 at 08:03
  • If your app is gonna be free, then there is no limit on Google Maps API for Android. https://developers.google.com/maps/pricing-and-plans/ – NinjaCoder Nov 06 '17 at 19:00
  • @NinjaCoder ,any idea if it's still free now in 2019? In my app, I need to update the marker's location every 20 seconds using FusedLocationProviderClient. There's gonna be thousands of requests per month. Thanks! – Alec Jun 18 '19 at 13:52