下記のエラーが発生してしまい、Android EmulatorにてFlutterのアプリが動きません。
使用しているOSと動かそうとしているAndroid Emulatorを記載します。
【os】
Windows10 Pro 1909
ビルド番号:18:363.1316
【Android Emulator】
Nexus 10 API28
Android 9.0(Google APIs)
//build.gradileの一部を記載しておきます。 android { compileSdkVersion 28 sourceSets { main.java.srcDirs += 'src/main/kotlin' } lintOptions { disable 'InvalidPackage' } defaultConfig { // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). applicationId "com.example.project" minSdkVersion 21 targetSdkVersion 28 versionCode flutterVersionCode.toInteger() versionName flutterVersionName ndk { abiFilters 'x86', 'x86_64', 'armeabi', 'armeabi-v7a', 'arm64-v8a', 'arm64' } } buildTypes { release { // TODO: Add your own signing config for the release build. // Signing with the debug keys for now, so `flutter run --release` works. signingConfig signingConfigs.debug } } externalNativeBuild { cmake { path file('/src/main/cpp/21mm/CMakeLists.txt') } } }
こちらやこちらやことらに掲載されていた方法など色々試したのですがエラーの解決にはなりませんでした。
大変申し訳ないのですが助けて頂けると幸いです。
C:\Users\HOGEHOGE\flutter_app>flutter drive --driver=test_driver//test1.dart --target=test_driver/app_main.dart Using device AOSP on IA Emulator. Starting application: test_driver/app_main.dart Installing build\app\outputs\flutter-apk\app.apk... 9.2s Error: ADB exited with exit code 1 Performing Streamed Install adb: failed to install C:\Users\HOGEHOGE\flutter_app\build\app\outputs\flutter-apk\app.apk: Failure [INSTALL_FAILED_NO_MATCHING_ABIS: Failed to extract native libraries, res=-113] ABIs [arm64, armeabi] are not supported for platform. Supported ABIs are [arm64-v8a, armeabi-v7a, x86, x86_64]. ABIs [arm64, armeabi] are not supported for platform. Supported ABIs are [arm64-v8a, armeabi-v7a, x86, x86_64]. FAILURE: Build failed with an exception. * What went wrong: Could not determine the dependencies of task ':app:mergeDebugNativeLibs'. > ABIs [arm64, armeabi] are not supported for platform. Supported ABIs are [arm64-v8a, armeabi-v7a, x86, x86_64]. * Try: Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights. * Get more help at https://help.gradle.org BUILD FAILED in 3s Running Gradle task 'assembleDebug'... Running Gradle task 'assembleDebug'... Done 3.9s Gradle task assembleDebug failed with exit code 1
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。