diff --git a/GMCabsDriverAssistantSolution/Platforms/Android/LocationConsent.cs b/GMCabsDriverAssistantSolution/Platforms/Android/LocationConsent.cs new file mode 100644 index 0000000..1944c86 --- /dev/null +++ b/GMCabsDriverAssistantSolution/Platforms/Android/LocationConsent.cs @@ -0,0 +1,19 @@ +using GMCabsDriverAssistant; +using GMCabsDriverAssistantSolution.Platforms.Android; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +[assembly: Dependency(typeof(LocationConsent))] +namespace GMCabsDriverAssistantSolution.Platforms.Android +{ + class LocationConsent :ILocationConsent + { + public async Task GetLocationConsent() + { + await Permissions.RequestAsync(); + } + } +}