How to set system proxy setting for Android using C# in a MAUI application?
I have tried the following but no luck:
Java.Lang.JavaSystem.SetProperty("http.proxyHost", "127.0.0.1");
Java.Lang.JavaSystem.SetProperty("http.proxyPort", "8080");
I have set the following permission:
<uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" />