Android 8.1.0 on a Samsung TAB A added lock screen applications.
I'd like to write a script to disable the applications but when i checked the setting with watch settings it's a multipart value with each part separated by a ;
Custom log (URI:content://settings/system SETTING:lock_application_shortcut VALUE:0;com.android.chrome/com.google.android.apps.chrome.Main;0;com.sec.android.app.camera/com.sec.android.app.camera.Camera;)
Custom log (URI:content://settings/system SETTING:lock_application_shortcut VALUE:0;com.android.chrome/com.google.android.apps.chrome.Main;1;com.sec.android.app.camera/com.sec.android.app.camera.Camera;)
There is a right and left application, the first part of the value is to turn the function on or off, the second part is the application location, the third part is the left or right location, and i think the 4th part is icon used. I've tried several variations of write secure setting but nothing seems to work. I've listed the variations used below.
writesecuresetting lock_application_shortcut 0
writesecuresetting lock_application_shortcut 0 0
writesecuresetting lock_application_shortcut 0 0 0 0
writesecuresetting lock_application_shortcut 0;0;0;0
writesecuresetting lock_application_shortcut 0,0,0,0
writesecuresetting lock_application_shortcut 0;com.android.chrome/com.google.android.apps.chrome.Main;1;com.sec.android.app.camera/com.sec.android.app.camera.Camera;
I also tried a few variations with the full string uses spaces and commas and nothing worked.
