Android一键发布内测平台插件

Pre.im 插件使用说明

前言

在 Android studio 中通过引入 gradle 脚本可以方便集成一款优秀的插件,平时,我们喜欢将自己的应用上传到免费的内测平台进行下载分发,但是每次打包一个版本都需要重复上传,看完这篇,你将可以方便简单的集成一个插件,省去每次重复上传的烦恼。目前该插件已经开源 ,有兴趣的朋友可以到github看看:https://github.com/AllenCoder/UploaderPlugin
官网链接,一款内测分发平台

在根目录下的build.gralde文件的depandencies(buildscript部分)中添加:

 dependencies {
        classpath 'com.pre.im:preuploader:1.0.2'
    }

在module的build.gradle文件的顶部添加:

apply plugin: 'com.pre.im'

pre {
    user_key='<your user>'
    password='<下载密码 (传空字符串或不传则不设置密码)>'
    update_notify="<向内测成员发布新版通知 (1:开启)>"
}

<Project>/build.gradle文件如下:

buildscript {
        repositories {
            jcenter()
        }
        dependencies {
            ...
            classpath 'com.pre.im:preuploader:1.0.2'
        }
    }}

<Project>/<Module>/build.gradle文件如下:

apply plugin: 'com.pre.im'
pre {
    user_key='a33333333333rrrr4ddeeeeeeedd'
    password='1222222'
    update_notify="1"
}

项目应用了Pre插件之后,插件默认是开启的,会在工程Gradle projects生成以下两个task:


Paste_Image.png

可以直接点击执行或者在命令行输入以下命令:

gradle uploadReleasePreApkFile

上传成功之后就可以在内测平台看到版本信息:

Paste_Image.png

Thanks Bugly,
BuglyDevTeam,
IT_xiao小巫

License

Copyright 2016 AllenCoder

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 173,446评论 25 708
  • Spring Cloud为开发人员提供了快速构建分布式系统中一些常见模式的工具(例如配置管理,服务发现,断路器,智...
    卡卡罗2017阅读 134,973评论 19 139
  • Spring Boot 参考指南 介绍 转载自:https://www.gitbook.com/book/qbgb...
    毛宇鹏阅读 46,959评论 6 342
  • 如果你留意一下, 你一生的爱恨情仇、喜怒哀惧都和你的家庭有关。 当你是孩子的时候,你几乎所有的快乐和悲伤,都和你的...
    马海燕阅读 390评论 0 0
  • 今天一大早去爬山了!拖到现在才开始观察我的昨天! 我喜欢周末,不仅仅是不用上班忙工作,是可以拥有自己的时间做自己喜...
    Scorpio侯俪阅读 188评论 0 0