From 245ffecca1976576f3c87a69efb4661159bad994 Mon Sep 17 00:00:00 2001 From: Fabien MILLERAND Date: Thu, 2 May 2024 23:19:25 +0200 Subject: [PATCH] Update INSTALL-ANDROID.md --- help/INSTALL-ANDROID.md | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/help/INSTALL-ANDROID.md b/help/INSTALL-ANDROID.md index e4ba58e7..0b0cc71b 100644 --- a/help/INSTALL-ANDROID.md +++ b/help/INSTALL-ANDROID.md @@ -50,13 +50,18 @@ allprojects { // <-- IMPORTANT: allprojects - #### If you're using `flutter >= 3.19.0` ([New Android Architecture](https://docs.flutter.dev/release/breaking-changes/flutter-gradle-plugin-apply)): ```diff -+ext { -+ compileSdkVersion = 33 // or higher / as desired -+ targetSdkVersion = 33 // or higher / as desired -+ minSdkVersion = 21 // Required minimum -+ appCompatVersion = "1.4.2" // or higher / as desired -+ playServicesLocationVersion = "21.0.1" // or higher / as desired +allprojects { +. +. +. ++ ext { ++ compileSdkVersion = 33 // or higher / as desired ++ targetSdkVersion = 33 // or higher / as desired ++ minSdkVersion = 21 // Required minimum ++ appCompatVersion = "1.4.2" // or higher / as desired ++ playServicesLocationVersion = "21.0.1" // or higher / as desired +} +} ``` - #### Otherwise for `flutter < 3.19.0` (Old Android Architecture):