首先给到 dryrun 的 github 地址
https://github.com/cesarferreira/dryrun
一般我们在github上找到一些库的时候,我们总会先下载下来看看是否适合我们的需求。
官网列出了我们通常的做法:
- Find the github's repository url
- Click the download zip
- Extract the zip file
- Open Android Studio
- Import the project you just downloaded
- Sync gradle
- Run the project
- Choose the device you want to run
- Test all you want
- Delete the project folder and the zip file when you don't want it anymore
当然,属性 gradle 命令的同学可以省下其中的很多步骤,但通过 dryryn 可以更加方便快捷的让我们运行起 github 上面的 sample
首先我们需要安装 dryrun :
$ gem install dryrun
然后就可以通过它直接运行 github 上的代码到你的模拟器或设备了。
$ dryrun git@github.com:cesarferreira/android-helloworld.git
以后是通常的用法。
下面对使用过程中遇到的问题做些记录:
1 运行时候下载 gradle 版本导致运行失败
解决方法:
直接下载 gardle 对应的版本到本地目录
mac ox /用户/hongchunhua/.gradle/dists
2 Failed to establish session
解决方法:
我用的是小米的真实设备,把小米开发者选项中最后一行MIUI优化关掉就行
网友评论