Hi
I'm trying to implement the following command under B4A :
adb shell settings put global multi_sim_data_call 1
It's to set the Data connection in a dual sim phone, but I get the following error when run
ava.lang.SecurityException: Permission Denial: Do not have permission in call getContentProviderExternal() from pid=27245, uid=10277 requires android.permission.ACCESS_CONTENT_PROVIDERS_EXTERNALLY
at android.os.Parcel.readException(Parcel.java:1704)
at android.os.Parcel.readException(Parcel.java:1654)
at android.app.ActivityManagerProxy.getContentProviderExternal(ActivityManagerNative.java:4957)
at com.android.commands.settings.SettingsCmd.run(SettingsCmd.java:148)
at com.android.commands.settings.SettingsCmd.main(SettingsCmd.java:63)
at com.android.internal.os.RuntimeInit.nativeFinishInit(Native Method)
at com.android.internal.os.RuntimeInit.main(RuntimeInit.java:315)
There are lots of posts on the web for this error, but I can't seem to find one the helps.
Thanks
Potman100