准备环境
1、android模拟器:夜神模拟器
2、交叉编译后的程序和库:hello.so hellotest
切换到工作目录
1、cd /d D:\Work\AndroidProject
android adb操作流程
登录android系统
1、adb devices
2、adb connect 127.0.0.1:62001
3、adb shell
4、mkdir /data/tmp
5、exit
6、adb push hello.so /data/tmp/
7、adb push hellotest /data/tmp/
8、adb shell
9、cd /data/tmp
10、chmod +x hellotest
11、./hellotest
退出android系统
1、exit