[2024 Latest] [Code Factory] [Beginner] Flutter 3.0 App Development - Escape from beginner level today with 10 projects!
Written on
·
17
0
IOS는 빌드가 정상적으로 실행되는데,
안드로이드는 아래와 같은 메시지와 함께 실행이 안됩니다.
어떤 문제인지 감을 잡기가 어렵습니다
Mac을 사용중입니다
어떻게 고쳐야 할지 답변 부탁드립니다
You are applying Flutter's app_plugin_loader Gradle plugin imperatively using the apply script method, which is deprecated and will be removed in a future release. Migrate to applying Gradle plugins with the declarative plugins block: https://flutter.dev/go/flutter-gradle-plugin-apply
You are applying Flutter's main Gradle plugin imperatively using the apply script method, which is deprecated and will be removed in a future release. Migrate to applying Gradle plugins with the declarative plugins block: https://flutter.dev/go/flutter-gradle-plugin-apply
Could not find a command named "bin/build_tool_runner.dill".
Usage: dart <command|dart-file> [arguments]
Global options:
-v, --verbose Show additional command output.
--version Print the Dart SDK version.
--enable-analytics Enable analytics.
--disable-analytics Disable analytics.
--suppress-analytics Disallow analytics for this dart *
run without changing the analytics configuration.
-h, --help Print this usage information.
Available commands:
analyze Analyze Dart code in a directory.
compile Compile Dart to various formats.
create Create a new Dart project.
devtools Open DevTools (optionally connecting to an existing application).
doc Generate API documentation for Dart projects.
fix Apply automated fixes to Dart source code.
format Idiomatically format Dart source code.
info Show diagnostic information about the installed tooling.
pub Work with packages.
run Run a Dart program.
test Run tests for a project.
Run "dart help <command>" for more information about a command.
See https://dart.dev/tools/dart-tool for detailed documentation.
FAILURE: Build failed with an exception.
* Where:
Script '/Users/jjh/.pub-cache/hosted/pub.dev/irondash_engine_context-0.5.4/cargokit/gradle/plugin.gradle' line: 65
* What went wrong:
Execution failed for task ':irondash_engine_context:cargokitCargoBuildIrondash_engine_context_nativeDebug'.
> Process 'command '/Users/jjh/.pub-cache/hosted/pub.dev/irondash_engine_context-0.5.4/cargokit/gradle/../run_build_tool.sh'' finished with non-zero exit value 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 6s
Error: Gradle task assembleDebug failed with exit code 1
Answer 2
0
0
안녕하세요, 인프런 AI 인턴입니다. 이윤주님께서 겪고 계신 안드로이드 빌드 오류 문제에 대해 도움을 드리겠습니다.
현재 발생하는 오류는 두 가지 주요 문제로 나뉘어져 있습니다: Flutter Gradle 플러그인의 비추천된 사용 방식과 irondash_engine_context
플러그인 관련 오류입니다. 아래에서 이를 해결하기 위한 방법을 제안드립니다.
Gradle 플러그인 선언 방식 변경:
apply plugin: '...'
방식 대신 plugins { ... }
블록을 사용하는 방식을 권장하고 있습니다. 따라서 프로젝트의 android/build.gradle
파일에서 해당 플러그인 선언 부분을 수정해 주세요.irondash_engine_context
플러그인 오류 해결:
Execution failed for task ':irondash_engine_context:cargokitCargoBuildIrondash_engine_context_nativeDebug'
오류는 특정 플러그인의 빌드 도구에서 발생한 문제입니다. 이 오류는 Unix 계열 시스템(Mac 포함)에서 스크립트가 실행될 때 발생할 수 있습니다./Users/jjh/.pub-cache/hosted/pub.dev/irondash_engine_context-0.5.4/cargokit/gradle/plugin.gradle
로 이동하여 run_build_tool.sh
스크립트가 올바르게 실행되는지 재확인해 주세요..pub-cache
를 정리하시고, 해당 패키지를 다시 설치해 보시기 바랍니다. 터미널에서 아래 명령어로 캐시를 정리할 수 있습니다:
flutter pub cache repair
기타 해결 방법:
Android
설정 및 Flutter SDK 설치 상태를 재점검하세요. Flutter와 Dart SDK가 최신 버전인지 확인해 보세요.File > Invalidate Caches / Restart
메뉴를 통해 캐시를 무효화하고, 스튜디오를 재시작하세요.관련된 기존 답변들도 도움이 될 수 있습니다. 아래 링크에서 유사한 문제 해결 방법을 확인해 보세요:
이와 같은 방법을 시도해 보시고, 문제가 계속되면 추가적인 정보를 포함하여 재질문해 주시면 더 구체적인 도움을 드릴 수 있습니다.
저는 질문자님의 이해를 돕고자 지식공유자님의 기존 답변을 참고하여 유사한 답변 링크를 추천해드리고 있습니다. 현재 베타 기능으로 답변이 만족스럽지 않을 수 있는 점 양해 부탁드립니다. 🙏 추가적으로 궁금한 점이 있으시면, 이어서 질문해 주세요. 곧 지식공유자께서 답변해 주실 것입니다.