mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-13 21:05:19 +00:00
43 lines
1.1 KiB
Groovy
43 lines
1.1 KiB
Groovy
buildscript {
|
|
repositories {
|
|
google {
|
|
content {
|
|
includeGroupByRegex("com\\.android.*")
|
|
includeGroupByRegex("com\\.google.*")
|
|
includeGroupByRegex("androidx.*")
|
|
}
|
|
}
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
}
|
|
dependencies {
|
|
classpath libs.android.gradlePlugin
|
|
classpath libs.google.services
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
alias libs.plugins.android.application apply false
|
|
alias libs.plugins.android.library apply false
|
|
alias libs.plugins.kotlin.android apply false
|
|
alias libs.plugins.rust.android apply false
|
|
alias libs.plugins.apollo.android apply false
|
|
alias(libs.plugins.jetbrains.kotlin.jvm) apply false
|
|
}
|
|
|
|
apply from: "variables.gradle"
|
|
|
|
allprojects {
|
|
repositories {
|
|
google {
|
|
content {
|
|
includeGroupByRegex("com\\.android.*")
|
|
includeGroupByRegex("com\\.google.*")
|
|
includeGroupByRegex("androidx.*")
|
|
}
|
|
}
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
}
|
|
}
|