加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
build.gradle.kts 2.36 KB
一键复制 编辑 原始数据 按行查看 历史
lifangqi 提交于 2024-01-15 17:33 . 更新kts文章中ext变量使用说明
// Top-level(build file where you can add configuration options common to all sub-projects/modules.)
buildscript {
repositories {
maven{ url = uri("https://maven.aliyun.com/repository/google/") }
maven{ url = uri("https://maven.aliyun.com/repository/public/") }
mavenCentral()
maven { setUrl("https://jitpack.io") }
}
dependencies {
classpath("com.android.tools.build:gradle:7.4.2")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.0")
// 用于navigation间传递数据
classpath("androidx.navigation:navigation-safe-args-gradle-plugin:2.3.5")
}
// 从local.properties读取github用户名及personal access token (classic)
// val properties = java.util.Properties()
// val inputStream = project.rootProject.file("local.properties").inputStream()
// properties.load(inputStream)
// 使用extra设置全局变量
// 方式一:
// val githubUser by extra(properties.getProperty("gpr.user"))
// val githubPassword by extra(properties.getProperty("gpr.key"))
// 在module中使用: val githubUser: String by rootProject.extra
// 方式二:
// extra["githubUser"] = properties.getProperty("gpr.user")
// extra["githubPassword"] = properties.getProperty("gpr.key")
// 方式三:
// extra.set("githubUser", properties.getProperty("gpr.user"))
// extra.set("githubPassword", properties.getProperty("gpr.key"))
}
ext {
// 只会在rootProject执行一遍
println("project: $this")
// 从local.properties读取github用户名及personal access token (classic)
val properties = java.util.Properties()
val inputStream = project.rootProject.file("local.properties").inputStream()
properties.load(inputStream)
set("githubUser", properties.getProperty("gpr.user"))
set("githubPassword", properties.getProperty("gpr.key"))
}
// 也可以通过设置 repositoriesMode.set(RepositoriesMode.PREFER_SETTINGS) 添加仓库
//allprojects {
// repositories {
// // 远程仓库
// maven {
// url = uri("https://maven.pkg.github.com/silencefly96/fundark")
// credentials {
// username = rootProject.ext["githubUser"].toString()
// password = rootProject.ext["githubPassword"].toString()
// }
// }
// }
//}
task<Delete>("clean") {
delete(rootProject.buildDir)
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化