From 0bd37c631212c45b3b1740a1951036cf9ae70fe5 Mon Sep 17 00:00:00 2001 From: Vishesh Handa Date: Mon, 27 May 2019 10:40:24 +0200 Subject: [PATCH] build.gradle: Allow debug builds for armv8 Otherwise we get a nasty libflutter.so missing error when running a debug build on an actual armv8 device. --- android/app/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/app/build.gradle b/android/app/build.gradle index aa3fa2e2..038dd998 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -75,7 +75,7 @@ android { } debug { ndk { - abiFilters 'armeabi-v7a', 'x86', 'x86_64' + abiFilters 'arm64-v8a', 'armeabi-v7a', 'x86', 'x86_64' } } }