1 Star 0 Fork 1

zxm0317/iMusic

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
build.gradle 1.55 KB
一键复制 编辑 原始数据 按行查看 历史
Yuye 提交于 2019-09-10 15:13 . update version to 1.1.72
// Top-level build file where you can add configuration options common to all sub-projects/modules.
//应用Config配置文件
apply from: "config.gradle"
//应用Bintray配置文件
apply from: "bintray.gradle"
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.1'
//添加bintray环境
classpath 'com.novoda:bintray-release:0.8.1'
//无需再单独引用tinker的其他库
classpath "com.tinkerpatch.sdk:tinkerpatch-gradle-plugin:1.2.13.3"
}
}
allprojects {
repositories {
google()
jcenter()
//本地Maven仓库地址,取决于你的磁盘目录
// maven { url 'file://D://AndroidStudioProjects//IMusic//maven' }
//本地局域网仓库地址
// maven { url 'http://localhost:8081/nexus/content/repositories/releases/' }
//Bintray插件仓库支持
maven { url 'https://dl.bintray.com/novoda-oss/snapshots/' }
}
//编译时报注释GBK编码错误解决
tasks.withType(Javadoc) {
//方法上忽略@return和@param注解未添加说明注释
options.addStringOption('Xdoclint:none', '-quiet')
//解决GBK编码错误提示
options.addStringOption('encoding', 'UTF-8')
options.addStringOption('charSet', 'UTF-8')
}
//跳过构建时link检查
tasks.whenTaskAdded { task ->
if (task.name.equals("lint")) {
task.enabled = false
}
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/9ii/iMusic.git
git@gitee.com:9ii/iMusic.git
9ii
iMusic
iMusic
master

搜索帮助