[Android] 如何在Android中执行自己编译的可执行文件

1.push文件到 /data/local

adb push file /data/local

2.增加可执行权限

adb shell chmod +x /data/local/file

3.运行

adb shell ./data/local/file

猜你喜欢

转载自blog.csdn.net/ykun089/article/details/135254065