Skip to content

Commit

Permalink
Drop buildToolsVersion
Browse files Browse the repository at this point in the history
If you're using Android plugin for Gradle 3.0.0 or higher, your project automatically uses a default version of the build tools that the plugin specifies

Ref: https://developer.android.com/tools/releases/build-tools

Signed-off-by: Aayush Gupta <aayushgupta219@gmail.com>
  • Loading branch information
theimpulson committed Aug 2, 2023
1 parent d532091 commit 64ecd5c
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 5 deletions.
1 change: 0 additions & 1 deletion app/build.gradle
Expand Up @@ -15,7 +15,6 @@ def gitDescribe = { ->

android {
compileSdkVersion rootProject.ext.compileSdkVersion
buildToolsVersion rootProject.ext.buildToolsVersion

defaultConfig {
minSdkVersion 32 // leave at 32 for robolectric tests
Expand Down
1 change: 0 additions & 1 deletion build.gradle
Expand Up @@ -20,7 +20,6 @@ plugins {
}

ext {
buildToolsVersion = '33.0.0'
compileSdkVersion = 33
minSdkVersion = 32
targetSdkVersion = 33
Expand Down
1 change: 0 additions & 1 deletion contactsbackup/build.gradle
Expand Up @@ -10,7 +10,6 @@ plugins {

android {
compileSdkVersion rootProject.ext.compileSdkVersion
buildToolsVersion rootProject.ext.buildToolsVersion

defaultConfig {
applicationId "org.calyxos.backup.contacts"
Expand Down
1 change: 0 additions & 1 deletion storage/demo/build.gradle
Expand Up @@ -12,7 +12,6 @@ plugins {

android {
compileSdkVersion rootProject.ext.compileSdkVersion
buildToolsVersion rootProject.ext.buildToolsVersion

defaultConfig {
applicationId "de.grobox.storagebackuptester"
Expand Down
1 change: 0 additions & 1 deletion storage/lib/build.gradle
Expand Up @@ -14,7 +14,6 @@ plugins {

android {
compileSdkVersion rootProject.ext.compileSdkVersion
buildToolsVersion rootProject.ext.buildToolsVersion

defaultConfig {
minSdkVersion rootProject.ext.minSdkVersion
Expand Down

0 comments on commit 64ecd5c

Please sign in to comment.