mirror of
https://github.com/f-droid/fdroidclient.git
synced 2026-01-28 00:37:58 -05:00
Fixes formatting issues it found. Also remove version variables from gradle scripts as they are not wanted by the project.
17 lines
379 B
Groovy
17 lines
379 B
Groovy
buildscript {
|
|
repositories {
|
|
mavenCentral()
|
|
maven { url 'https://maven.google.com/' }
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:3.6.3'
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.10"
|
|
}
|
|
}
|
|
allprojects {
|
|
repositories {
|
|
mavenCentral()
|
|
maven { url 'https://maven.google.com/' }
|
|
}
|
|
}
|