Tweak some gradle stuff

This commit is contained in:
Jon Staab
2025-05-06 18:07:30 -07:00
parent ea3f5a6779
commit 698a7513b8
2 changed files with 6 additions and 4 deletions

View File

@@ -5,8 +5,8 @@ android {
compileSdk rootProject.ext.compileSdkVersion compileSdk rootProject.ext.compileSdkVersion
defaultConfig { defaultConfig {
applicationId "social.flotilla" applicationId "social.flotilla"
minSdkVersion rootProject.ext.minSdkVersion minSdk rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion targetSdk rootProject.ext.targetSdkVersion
versionCode 14 versionCode 14
versionName "1.0.0" versionName "1.0.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

View File

@@ -3,7 +3,9 @@ ext {
compileSdkVersion = 35 compileSdkVersion = 35
targetSdkVersion = 35 targetSdkVersion = 35
androidxActivityVersion = '1.9.2' 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' androidxCoordinatorLayoutVersion = '1.2.0'
androidxCoreVersion = '1.15.0' androidxCoreVersion = '1.15.0'
androidxFragmentVersion = '1.8.4' androidxFragmentVersion = '1.8.4'
@@ -13,4 +15,4 @@ ext {
androidxJunitVersion = '1.2.1' androidxJunitVersion = '1.2.1'
androidxEspressoCoreVersion = '3.6.1' androidxEspressoCoreVersion = '3.6.1'
cordovaAndroidVersion = '10.1.1' cordovaAndroidVersion = '10.1.1'
} }