您可以通过以下命令获取对 Android 设备的 shell 访问权限。
adb shell
应用程序数据存储在目录“/data/data/package_of_your_app”中。
// Assume the gesture file exists on your Android device
adb pull /sdcard/gestures ~/test
// Now copy it back
adb push ~/test/gesture /sdcard/gestures2
它会为你工作。