Gradle
[Tips] Auto-increment versionCode using Gradle – Supitsara Prathan – Medium
The Apache Groovy programming language - Groovy Development Kit
(Plugin version) VS (Required Gradle version)
Android Gradle plugin release notes | Android Developers
了解在构建生命周期的各个阶段所花费的时间
通过 --profile
来生成报告
1 | ./gradlew assembleDebug --profile |
android studio error- mixing versions can lead to run-time crashes
1 | // Add these lines of code in your build.gradle (Module:app) file at end: |
<<<<<<< HEAD
proxy
java -DsocksProxyHost=10.1.1.2 -DsocksProxyPort=8877 -Djava.net.socks.username=alibaba -Djava.net.socks.password=secret
AndroidStudio 彻底关闭 http 网络代理方法 - Mr.Liu - CSDN 博客
AndroidStudio 中 Gradle 的 Socks 代理设置 - WittyCollegeStudent 的博客 - CSDN 博客
Android Gradle 下载的依赖包位置
Mac 系统默认下载到:/Users/(用户名)/.gradle/caches/modules-2/files-2.1
Windows 系统默认下载到:C:\Users(用户名).gradle\caches\modules-2\files-2.1
举个例子:
错误如下: Download Failed :https://jcenter.bintray.com/org/jetbrains/kotlin/kotlin-compiler-embeddable/1.2.31/kotlin-compiler-embeddable-1.2.31.jar
文件夹生成的规律是根据依赖中的组织名称,classpath”org.jetbrains.kotlin:kotlin-gradle-plugin
地址路径则查找位置是:
C:\Users\Administrator.gradle\caches\modules-2\files-2.1\org.jetbrains.kotlin\kotlin-compiler-embeddable\1.2.71\b394ac31590bff78aea6619b8dc0e2c0958aa599
还有一种方式:使用 everything
软件来搜索关键字,找到对应目录;
多渠道打包
- Android build.gradle importing flavors from another file - Stack Overflow
The build flavors could be defined in a separate file (build_flavors.gradle
) like this:
1 | android { |
and then imported into build.gradle
:
1 | apply plugin: 'com.android.application' |
1 | android { |
- 《Gradle 权威指南》 dimension
多个 dimension 的前后关系是有优先级顺序的,越靠前的优先级越高:
查找冲突的版本号技巧
1 | ./gradlew lib1:dependencies | grep -C 3 com.android.support:appcompat-v7:27.1.1 |
通过上面的方式,可以看到哪个依赖使用了不同的版本号,接着就可以排除方法:
1 | implementation ("org.kie.modules:com-google-code-gson:6.5.0.Final"){ |
75ce2b45ad080aeaf919f35ffb1afa47ad0b6cac