Hi everybody.
I am trying to open the phone's settings with this code :
but I get this in log :
when I try to open the status page
it works fine.
is there anything I missed in the manifest?
I am trying to open the phone's settings with this code :
B4X:
Dim i2 As Intent
i2.Initialize("", "")
i2.SetComponent("com.android.settings/.Settings")
StartActivity(i2)
but I get this in log :
android.content.ActivityNotFoundException: Unable to find explicit activity class {com.android.settings/com.android.settings.Settings}; have you declared this activity in your AndroidManifest.xml?
when I try to open the status page
B4X:
Dim i2 As Intent
i2.Initialize("", "")
'i2.SetComponent("com.android.settings/.Settings")
i2.SetComponent("com.android.settings/.deviceinfo.Status")
StartActivity(i2)
it works fine.
is there anything I missed in the manifest?