In Android SDK, I know I can use adb shell
to grant my app location access permission by command:
adb shell pm grant com.xyz.myapp android.permission.ACCESS_FINE_LOCATION
Now, my app also needs VPN permission like this one:
How can I grant my app VPN connection permission the same way as how I did for location permission with adb
command?