简体   繁体   中英

Flutter: I have changed the Dart entrypoint to Login.dart , while building apks error shows that lib\main.dart not found

C:\flutter\flutter_windows_v1.9.1+hotfix.2-stable\flutter\bin\flutter.bat --no-color build apk
Target file "lib\main.dart" not found.
Process finished with exit code 1

You can set an entry point like this:

flutter run --target=lib/Login.dart
flutter build apk --target=lib/Login.dart

This article shows you how to set up IDE (VSCode/AS) to build another target file.

I don't think you should be changing the entry file, you can always use the main.dart without issues and then set the Entry class there. This doesn't stop your app from working.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM