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.
This commit is contained in:
Vishesh Handa
2019-05-27 10:40:24 +02:00
parent f7aeb3527d
commit 0bd37c6312

View File

@ -75,7 +75,7 @@ android {
} }
debug { debug {
ndk { ndk {
abiFilters 'armeabi-v7a', 'x86', 'x86_64' abiFilters 'arm64-v8a', 'armeabi-v7a', 'x86', 'x86_64'
} }
} }
} }