无法从导入的 flutter 项目中找到 main.dart 和 lib 文件夹

unable to find main.dart and lib folder from imported flutter project

hi there! i backed up my flutter project folder due to some issues with my drive, i fixed the issues only for me to try importing the project and continuing my work and it turns out i can't find my main.dart file along with my entire lib folder the only recognizable thing left in the project seems to be the assets folder

请帮帮我 这真的让我远远落后于计划

另外,如果我能得到一个反编译 flutter apks 的应用程序,我将不胜感激 因为我的代码仍处于调试模式并且我有 apk 文件。

谢谢

enter image description here

获取 apk 文件的源代码(调试):-

第 1 步 - 下载 Windows 的字符串(在您的情况下)

https://docs.microsoft.com/en-us/sysinternals/downloads/strings

第 2 步- 由于 kernel_blob.bin 拥有您应用的所有源代码, 运行这个命令,

strings /path/to/extracted/apk/assets/flutter_assets/kernel_blob.bin > extracted_code.dart

在这里,将“要提取的路径”替换为您自己的路径。

第 3 步

您需要清理extract_code文件,'extracted_code.dart'中的“dart”、“import”、“void”等关键字字符串将帮助您找到代码本身。(搜索它们以获取您的代码)