You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
511 B

  1. using GMCabsDriverAssistant;
  2. using GMCabsDriverAssistantSolution.Platforms.Android;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. [assembly: Dependency(typeof(LocationConsent))]
  9. namespace GMCabsDriverAssistantSolution.Platforms.Android
  10. {
  11. class LocationConsent :ILocationConsent
  12. {
  13. public async Task GetLocationConsent()
  14. {
  15. await Permissions.RequestAsync<Permissions.LocationAlways>();
  16. }
  17. }
  18. }