代码拉取完成,页面将自动刷新
// 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)
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。