BobStore/build.gradle
Marcus Hoffmann e2a75f69ee androidX migrations preparations
We need compileSdk 28 and the required AGP and gradle versions, as well
as updating to compatible support library revisions.

minSdk and targetSdk needs to move to build.gradle from manifest.
buildToolsVersion isn't used anymore.
2020-07-14 14:10:21 +02:00

18 lines
584 B
Groovy

buildscript {
repositories {
mavenCentral()
maven { url 'https://maven.google.com/' } // :-| must be before jcenter()
jcenter() // download from jCenter as last resort https://blog.autsoft.hu/a-confusing-dependency
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.0'
}
}
allprojects {
repositories {
mavenCentral()
maven { url 'https://maven.google.com/' } // :-| must be before jcenter()
jcenter() // download from jCenter as last resort https://blog.autsoft.hu/a-confusing-dependency
}
}