当前位置:   article > 正文

android gradle打包_android gradle 多渠道打包

android gradle 多渠道打包

gradle打包

gradle就是构建工具,他使用的语言是groovy
功能类似java的maven、ant建立文件依赖关系,并打包输出

gradle中央库,找不到可以用maven替代

  • Maven打包配置
<dependency>
 <groupId>junit</groupId>
 <artifactId>junit</artifactId>
 <version>4.12</version>
 <scope>test</scope>
</dependency>
<dependency>
 <groupId>org.springframework</groupId>
 <artifactId>spring-test</artifactId>
</dependency>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • gradle打包配置
dependencies {
 compile 'org.hibernate:hibernate-core:3.6.7.Final'
 testCompile ‘junit:junit:4.+'
}
  • 1
  • 2
  • 3
  • 4

依赖冲突,多个依赖项指向同一个依赖项的不同版本时就会引起依赖冲突

自定义插件

apply plugin: com.atom.MyPlugin 

class MyPlugin implements Plugin<Project>{ 
@Override 
void apply(Pro
  • 1
  • 2
  • 3
  • 4
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/923287
推荐阅读
相关标签
  

闽ICP备14008679号