Call a Protected API from a .NET MAUI App

i am learning to use maui right now so i am also a bit at a loss.

when i run the maui app on windows the browser window pops up and i can login and the app runs.
if i try to use the android emulator on windows i see the app start, i click the login button and then i see it try to run chrome in the emulator and then the emulator crashes.
if i try to use my actual phone with debug it at first was just showing the login ui page but it never returns back to the application. also auth0 was not logging that attempt at a login.

if i run the app on my phone without debug that works.

i am guessing that this must all have something to do with android permissions and or the browser on android.

for now i am going to work to mockup the login and be able to run code with a fake login till i get farther in the application and switch running it each way…

also a thing i want to find out that perhaps you can look at is how to make the login be a part of the app startup.

the app i am creating will need to ONLY work if the user has logged in. it will be doing order entry and should not let non-authenticated users access any functions.
so ideally the app never gives the user any options untill they login…
i think i can do this a few ways but i am not sure what the best one is.