I'm attempting to upgrade my app to support Fire OS 5. One of my features is the ability to open specific Fire TV settings menus from within the application.
i.e. Clicking a button opens the Network Settings using the standard Lollipop constant (android.settings.WIRELESS_SETTINGS)
Preference prefVirtualOpenNetworkSettings = (Preference) findPreference("prefVirtualOpenNetworkSettings");
prefVirtualOpenNetworkSettings.setOnPreferenceClickListener(new Preference.OnPreferenceClickListener()
{
@Override
public boolean onPreferenceClick(Preference preference)
{
// Open ADB settings
Intent networkSettingsOpenIntent = new Intent("android.settings.WIRELESS_SETTINGS");
PreferenceActivity.this.getActivity().startActivity(networkSettingsOpenIntent);
return false;
}
});
it appears that the Display menu (android.settings.DISPLAY_SETTINGS) and Time Zone (android.settings.DATE_SETTINGS) cause my application to crash within FireOS5.
Can someone please advise me as to what the comparable constants to the Display Menu and Time Zone menu within Fire OS 5 would be?
Thanks.