Hello,
Microsoft.Maui.ApplicationModel.Platform.AppContext
is specific for Android platform, so you should use conditional compilation to target different platforms. Please see the following code:
#if ANDROID
var context = Microsoft.Maui.ApplicationModel.Platform.AppContext;
#endif
Also, you could check the source code of Microsoft.Maui.ApplicationModel.AppContext at GitHub, which targets for Android platform.
Best Regards,
Wenyan Zhang
If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.