Open Android's System Update page
android, android-settings
Solution
it's a bit late, but here is my answer:
startActivityForResult(New Intent("android.settings.SYSTEM_UPDATE_SETTINGS"),0)
Problem
I want to open the Settings > About > System Update directly from my application. How can I do that? For Setting > About, I can do this ``` startActivityForResult(new Intent(android.provider.Settings.ACTION_DEVICE_INFO_SETTINGS), 0); ``` But I am looking for a way to go to system update.