mirror of
https://github.com/f-droid/fdroidclient.git
synced 2026-04-20 23:07:26 -04:00
https://developer.android.com/studio/build/jcenter-migration https://jfrog.com/blog/into-the-sunset-bintray-jcenter-gocenter-and-chartcenter/ refs #2223
21 lines
441 B
Groovy
21 lines
441 B
Groovy
buildscript {
|
|
repositories {
|
|
mavenCentral()
|
|
maven { url 'https://maven.google.com/' }
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:3.6.3'
|
|
}
|
|
}
|
|
allprojects {
|
|
repositories {
|
|
mavenCentral()
|
|
maven { url 'https://maven.google.com/' }
|
|
jcenter() {
|
|
content {
|
|
includeModule("cc.mvdan.accesspoint", "library")
|
|
}
|
|
}
|
|
}
|
|
}
|