From 4377642088f01ef9ded446fdbb9203049b9218a7 Mon Sep 17 00:00:00 2001 From: Quantme Date: Wed, 17 Nov 2021 13:14:41 -0600 Subject: [PATCH] =?UTF-8?q?Actualizar=20build.gradle,=20l=C3=ADmite=20de?= =?UTF-8?q?=2064K.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Habilita multidex para evitar el límite de 64 K, que causa error al ejecutar 'Hot Reload' después de agregar los paquetes 'path_provider' y/o 'sqflite'. Info: https://developer.android.com/studio/build/multidex#about --- android/app/build.gradle | 1 + 1 file changed, 1 insertion(+) diff --git a/android/app/build.gradle b/android/app/build.gradle index b18227b..9e15fe3 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -42,6 +42,7 @@ android { applicationId "com.example.qrreaderapp" minSdkVersion 21 targetSdkVersion 28 + multiDexEnabled true versionCode flutterVersionCode.toInteger() versionName flutterVersionName testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"