The API below does not work normally only in flip 3.
startActivity(new Intent(Settings.Panel.ACTION_INTERNET_CONNECTIVITY));
The API below does not work normally only in flip 3.
startActivity(new Intent(Settings.Panel.ACTION_INTERNET_CONNECTIVITY));
Hello. I tested the api on my Flip3 5G and the internet connection pop-up seemed to be working as intended.
Same problem for flip 3 and fold 3 .
S22 Ultra and S10 is working great with same apk.
I use below code and menifest permission. Thank you for your attention to this matter.
Code
var intent = Intent(Settings.Panel.ACTION_INTERNET_CONNECTIVITY)
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.Q)
intent = Intent(Settings.ACTION_WIRELESS_SETTINGS);
startActivity(intent)
permission in Menifest.xml
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />