首页 > 代码库 > GAutomator,GAutomatorview和Android SDK,Unity配置

GAutomator,GAutomatorview和Android SDK,Unity配置

1. 安装和配置Android SDK

下载:http://tools.android-studio.org/index.php/sdk

配置:安装完成以后,将E:\Android\sdk\tools和E:\Android\sdk\platform-tools添加到系统环境Path中

cmd在命令行中使用adb devices查看链接设备(安卓手机需要打开开发者debug模式),出现如下问题:

1)未打开dubug模式,则不会显示设备序列号

adb devices

技术分享

2)dont match this client;killing...

技术分享

解决方法:

  1. 断开设备或者虚拟机
  2. 使用命令:adb kill-server和adb start-server重新打开服务
  3. 连接安卓设备

技术分享

 

2. GAutomator和GAutomatorview下载和文档

参加官网:https://github.com/Tencent/GAutomator/blob/master/doc/GAutomator%E4%BD%BF%E7%94%A8%E8%AF%B4%E6%98%8E%E6%96%87%E6%A1%A3.md#9.3

其中一些小细节:

1)使用adb将GAutomator中的wetest_demo.apk安装到手机上——拉起游戏

adb install E:/GAutomator/sample/wetest_demo.apk

技术分享

 2)运行

 

GAutomator,GAutomatorview和Android SDK,Unity配置