buildscript { repositories { google() jcenter() } dependencies { classpath 'com.android.tools.build:gradle:3.5.2' classpath 'com.novoda:bintray-release:0.9.1' } } plugins { id 'se.patrikerdes.use-latest-versions' version '0.2.13' id 'com.github.ben-manes.versions' version '0.27.0' } ext { // TODO keep version name and version code in sync with Android-x86 manifest VERSION_CODE = 196 VERSION_NAME = "5.0" SUPPORT_LIBRARY_VERSION = "28.0.0" MIN_SDK_VERSION = 21 SDK_VERSION = 29 BUILD_TOOLS_VERSION = "28.0.3" } dependencyUpdates { revision = 'release' } allprojects { repositories { jcenter() } } task clean(type: Delete) { delete rootProject.buildDir }