通过gradle下载最新依赖包的一种方式

2018-10-19 11:24:55

通常我们添加依赖包有两种方式,一种是直接添加到libs文件夹下面,另一种是通过gradle进行依赖,例如:


dependencies {


compile 'com.hyphenate:hyphenate-sdk:3.3.2'  //环信的依赖包


}


但这样如果依赖包进行更新的话我们还要进行修改,这时候我们可以使用以下方式:




dependencies {


compile 'com.hyphenate:hyphenate-sdk:latest.release'


}


这样就不必每次依赖包更新的话我们这里也进行修改了,只是如果针对特殊版本有需求的话,这种方式就不可以用了


latest.release 的话会获取到最新的正式版本


latest.integration会获取到最新的版本,可能是正式版本,也可能是测试版本

--------------------- 

作者:Mr_Tony 

来源:CSDN 

原文:https://blog.csdn.net/mr_tony/article/details/72955949 

版权声明:本文为博主原创文章,转载请附上博文链接!

  • 2018-02-23 14:22:50

    mysql的yearweek 和 weekofyear函数

    例如 2010-3-14 ,礼拜天 SELECT YEARWEEK('2010-3-14') 返回 11 SELECT YEARWEEK('2010-3-14',1) 返回 10 其中第二个参数是 mode ,具体指的意思如下: Mode First day of week Range Week 1 is the first week … 0 Sunday 0-53 with a Sunday in this year 1 Monday 0-53 with more than 3 days this year 2 Sunday 1-53 with a Sunday in this year 3 Monday 1-53 with more than 3 days this year 4 Sunday 0-53 with more than 3 days this year 5 Monday 0-53 with a Monday in this year 6 Sunday 1-53 with more than 3 days this year 7 Monday 1-53 with a Monday in this year 2.

  • 2018-02-23 17:20:44

    Mysql数据库If语句的使用

    MySQL的if既可以作为表达式用,也可在存储过程中作为流程控制语句使用,如下是做为表达式使用:

  • 2018-02-24 10:16:36

    Java工具类之Apache的Commons Lang和BeanUtils

    Apache Commons包估计是Java中使用最广发的工具包了,很多框架都依赖于这组工具包中的一部分,它提供了我们常用的一些编程需要,但是JDK没能提供的机能,最大化的减少重复代码的编写。