Goal is to enable chrome flag on android device without user interaction.
I have something like this:
adb shell am start -n com.android.chrome/com.google.android.apps.chrome.Main -d "chrome://flags/#enable-new-contacts-picker"
or
adb shell am broadcast -a com.android.chrome -n com.android.chrome/com.google.android.apps.chrome.Main/ --ez enable-new-contacts-picker true
then adb shell am force-stop com.android.chrome
but flag is still not enabled after running this.
Any ideas why it's not working ?