From a30d179f252a04033c2a3b4fd5bc743a92b05235 Mon Sep 17 00:00:00 2001 From: Dor Blayzer Date: Thu, 9 May 2024 23:52:17 +0300 Subject: [PATCH] Target SDK 33 Remove deprecated `buildToolsVersion` and replace `compileSdkVersion` with `compileSdk` Target SDK 33 Bump `appcompat` from 1.4.2 to 1.6.1 --- app/build.gradle | 9 ++++----- app/src/main/AndroidManifest.xml | 4 ++++ 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 2dac51e..7f18e35 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -1,23 +1,22 @@ apply plugin: 'com.android.application' android { - compileSdkVersion 31 - buildToolsVersion "30.0.3" + compileSdk 33 defaultConfig { applicationId "io.appium.android.apis" minSdkVersion 17 - targetSdkVersion 31 + targetSdkVersion 33 versionCode 24 - versionName '4.1.1' + versionName '4.1.5' testApplicationId "io.appium.android.apis.test" testInstrumentationRunner ".app.LocalSampleInstrumentation" } dependencies { - implementation 'androidx.appcompat:appcompat:1.4.2' + implementation 'androidx.appcompat:appcompat:1.6.1' } buildTypes { diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index 7fdd429..a5db947 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -32,6 +32,7 @@ + @@ -41,6 +42,9 @@ +