mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-04 14:30:11 +01:00
5904aef5a7
Thanks to the very nice example from Piwigo, included here under the GPLv3+ https://github.com/Piwigo/Piwigo-Android https://gitlab.com/fdroid/fdroiddata/merge_requests/5579#note_225834868
22 lines
422 B
Groovy
22 lines
422 B
Groovy
buildscript {
|
|
repositories {
|
|
jcenter()
|
|
mavenCentral()
|
|
maven { url 'https://maven.google.com' }
|
|
google()
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:3.5.0'
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
mavenCentral()
|
|
maven { url 'https://maven.google.com' }
|
|
maven { url "https://jitpack.io" }
|
|
}
|
|
}
|