gpt4 book ai didi

c++ - 在Android上执行纯二进制文件

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:20:32 29 4
gpt4 key购买 nike

有没有办法在 Android 上运行二进制可执行文件(使用 NDK 编译)?

/* #includes #defines ... */

int main(){
// Do something when this is executed
return 0;
}

我希望它独立于 VM 运行。就像不在事件中一样,只是一个直接在 proc 上运行的二进制文件

最佳答案

adb push exename /data/bin/exename
#next line might be needed if you are developing on Windows
adb shell chmod 777 /data/bin/exename
adb shell /data/bin/exename

但是您的设备必须已 root。 (它也适用于模拟器。)

关于c++ - 在Android上执行纯二进制文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7860874/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com