F fransvlaarhoven Active Member Licensed User Longtime User Jan 16, 2017 #1 Hello, is it possible to detect the status of the developer options on a phone? (Enabled, switched on or off) Assuming that developer options are enabled, can one go directly go to the settings for managing the developer options? Thanks
Hello, is it possible to detect the status of the developer options on a phone? (Enabled, switched on or off) Assuming that developer options are enabled, can one go directly go to the settings for managing the developer options? Thanks
Erel B4X founder Staff member Licensed User Longtime User Jan 16, 2017 #2 B4X: Dim p As Phone If p.GetSettings("development_settings_enabled") = "1" Then Dim in As Intent in.Initialize("android.settings.APPLICATION_DEVELOPMENT_SETTINGS", "") StartActivity(in) End If Upvote 0
B4X: Dim p As Phone If p.GetSettings("development_settings_enabled") = "1" Then Dim in As Intent in.Initialize("android.settings.APPLICATION_DEVELOPMENT_SETTINGS", "") StartActivity(in) End If
F fransvlaarhoven Active Member Licensed User Longtime User Jan 16, 2017 #3 Many thanks Erel for your blazing fast response Upvote 0