From 698a7513b8132e5a76c39c2fd4185d2071d30573 Mon Sep 17 00:00:00 2001 From: Jon Staab Date: Tue, 6 May 2025 18:07:30 -0700 Subject: [PATCH] Tweak some gradle stuff --- android/app/build.gradle | 4 ++-- android/variables.gradle | 6 ++++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/android/app/build.gradle b/android/app/build.gradle index 6a4e67e..95285ce 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -5,8 +5,8 @@ android { compileSdk rootProject.ext.compileSdkVersion defaultConfig { applicationId "social.flotilla" - minSdkVersion rootProject.ext.minSdkVersion - targetSdkVersion rootProject.ext.targetSdkVersion + minSdk rootProject.ext.minSdkVersion + targetSdk rootProject.ext.targetSdkVersion versionCode 14 versionName "1.0.0" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" diff --git a/android/variables.gradle b/android/variables.gradle index 2c8e408..8c75136 100644 --- a/android/variables.gradle +++ b/android/variables.gradle @@ -3,7 +3,9 @@ ext { compileSdkVersion = 35 targetSdkVersion = 35 androidxActivityVersion = '1.9.2' - androidxAppCompatVersion = '1.7.0' + //https://github.com/ionic-team/capacitor/issues/7866 + // androidxAppCompatVersion = '1.7.0' + androidxAppCompatVersion = '1.6.1' androidxCoordinatorLayoutVersion = '1.2.0' androidxCoreVersion = '1.15.0' androidxFragmentVersion = '1.8.4' @@ -13,4 +15,4 @@ ext { androidxJunitVersion = '1.2.1' androidxEspressoCoreVersion = '3.6.1' cordovaAndroidVersion = '10.1.1' -} \ No newline at end of file +}