美文网首页
Android辅助工具之dryrun

Android辅助工具之dryrun

作者: 南魂09 | 来源:发表于2017-03-30 00:05 被阅读115次

    首先给到 dryrun 的 github 地址
    https://github.com/cesarferreira/dryrun

    一般我们在github上找到一些库的时候,我们总会先下载下来看看是否适合我们的需求。
    官网列出了我们通常的做法:

    1. Find the github's repository url
    2. Click the download zip
    3. Extract the zip file
    4. Open Android Studio
    5. Import the project you just downloaded
    6. Sync gradle
    7. Run the project
    8. Choose the device you want to run
    9. Test all you want
    10. 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优化关掉就行

    相关文章

      网友评论

          本文标题:Android辅助工具之dryrun

          本文链接:https://www.haomeiwen.com/subject/gzxuottx.html