Android Question Intent SetComponent Usage

Peppe B

Active Member
Licensed User
I am trying to open accessibility permissions exactly in my application.

What am I doing wrong ?
 
Last edited:

Peppe B

Active Member
Licensed User
I'm using this set component

But I wanted to open directly in my application so the client did not get looking for the application.
 
Last edited:
Upvote 0

DonManfred

Expert
Licensed User
Longtime User
But I wanted to open directly in my application so the client did not get looking for the application.
1. I don´t think this is possible, The User must select your app.
DoAction.SetComponent("com.android.settings/.accessibility.b4a.example")
2. You REALLY should change your packagename. All new apps build with B4A will have this packagename.
You should use your own packagename. ALWAYS.
 
Upvote 0

peacemaker

Expert
Licensed User
Longtime User
B4X:
    Dim i As Intent
    i.Initialize("android.settings.ACCESSIBILITY_SETTINGS", "")
    StartActivity(i)
 
Upvote 0
Top