From f0c3ff1a800e96ddbbaf6b2460cc9c0e9cf3e91e Mon Sep 17 00:00:00 2001 From: Chad Curtis Date: Tue, 2 Jun 2026 03:21:22 -0500 Subject: [PATCH] android: raise minSdk to 26 for barcode-scanner plugin @capacitor/barcode-scanner v3 pulls in ionbarcode-android:2.0.1, which declares minSdk 26. The inherited Ditto minSdk of 24 fails the manifest merger. Raise the floor to 26 (Android 8.0) as the merger recommends. --- android/variables.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/variables.gradle b/android/variables.gradle index ee4ba41c..0c479ae7 100644 --- a/android/variables.gradle +++ b/android/variables.gradle @@ -1,5 +1,5 @@ ext { - minSdkVersion = 24 + minSdkVersion = 26 compileSdkVersion = 36 targetSdkVersion = 36 androidxActivityVersion = '1.11.0'