From ac56916eb0a7250111b2c07e935639a2d12dcd1c Mon Sep 17 00:00:00 2001 From: duffyduck Date: Fri, 24 Apr 2026 16:08:10 +0200 Subject: [PATCH] fix(android): minSdkVersion 23 -> 24 (Porcupine erfordert Android 7+) @picovoice/porcupine-react-native deklariert minSdkVersion 24, dadurch schlug der Manifest-Merger fehl wenn die App weiter auf 23 stand. Android 7.0 ist eh das pragmatische Minimum (Geraete <7.0 sind <1% Markt). Co-Authored-By: Claude Opus 4.7 (1M context) --- android/android/build.gradle | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/android/android/build.gradle b/android/android/build.gradle index 9abc88b..593a383 100644 --- a/android/android/build.gradle +++ b/android/android/build.gradle @@ -1,7 +1,9 @@ buildscript { ext { buildToolsVersion = "34.0.0" - minSdkVersion = 23 + // 24 = Android 7.0 (Nougat). Verlangt von Porcupine (Picovoice). + // Realistisch eh das Minimum: alles unter 7.0 hat <1% Marktanteil. + minSdkVersion = 24 compileSdkVersion = 34 targetSdkVersion = 34 ndkVersion = "25.1.8937393"