From bdecc2e1b91d06d5d4f86b286c4b62d421ea8295 Mon Sep 17 00:00:00 2001 From: Manuel Fuhr Date: Tue, 24 May 2022 22:56:36 +0200 Subject: [PATCH] Provide only single targetSdkVersion build Remove api19 build and default to api30 because we no longer access files of other apps. --- brouter-routing-app/build.gradle | 16 +--------------- 1 file changed, 1 insertion(+), 15 deletions(-) diff --git a/brouter-routing-app/build.gradle b/brouter-routing-app/build.gradle index aa4c375..3266fd5 100644 --- a/brouter-routing-app/build.gradle +++ b/brouter-routing-app/build.gradle @@ -17,6 +17,7 @@ android { setProperty("archivesBaseName", "BRouterApp." + defaultConfig.versionName) minSdkVersion 14 + targetSdkVersion 30 testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } @@ -73,21 +74,6 @@ android { targetCompatibility JavaVersion.VERSION_1_8 } - - flavorDimensions "api" - productFlavors { - api19 { - dimension "api" - - targetSdkVersion 19 - } - api30 { - dimension "api" - - targetSdkVersion 30 - } - } - applicationVariants.all { variant -> {