android settings

fpdianzen

Member
Licensed User
Longtime User
hi i want to execute this intent, but it has an error that i should declare something in the manifest.xml. please help me i dont know what to input in the manifest

B4X:
dim intent1 as Intent
intent1.Initialize("android.intent.action.MAIN","")
intent1.SetComponent("com.android.setting/.developmentSettings")
StartActivity(intent1)
 

Erel

B4X founder
Staff member
Licensed User
Longtime User
Try:
B4X:
intent1.SetComponent("com.android.setting/.DevelopmentSettings")

Nothing is missing in your manifest file. The OS cannot find the target activity. The error message asks you to make sure that this is not an internal activity missing from the manifest file (usually external intents are not configured with the package name and activity name)
 
Upvote 0

fpdianzen

Member
Licensed User
Longtime User
still exists.

i dont know but i already followed the code youve given.
 

Attachments

  • screenshot_2012-01-29_1918.jpg
    screenshot_2012-01-29_1918.jpg
    19.8 KB · Views: 208
Upvote 0
Top