mirror of
https://github.com/keiyoushi/extensions-source.git
synced 2024-11-21 18:02:42 +01:00
646334b6b2
- Updated wrapper scripts to 8.3 with `./gradlew wrapper` - Duped `gradle-wrapper.properties` in `buildSrc` to trick "Android Studio - Clean Project" into using the same version
22 lines
443 B
Plaintext
22 lines
443 B
Plaintext
buildscript {
|
|
repositories {
|
|
mavenCentral()
|
|
google()
|
|
maven(url = "https://plugins.gradle.org/m2/")
|
|
}
|
|
dependencies {
|
|
classpath(libs.gradle.agp)
|
|
classpath(libs.gradle.kotlin)
|
|
classpath(libs.gradle.serialization)
|
|
classpath(libs.gradle.kotlinter)
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
mavenCentral()
|
|
google()
|
|
maven(url = "https://jitpack.io")
|
|
}
|
|
}
|