flutter应用中libapp.so的路径是哪个?

问题描述 投票:0回答:1

我正在尝试反编译我自己的应用程序,在flutter中构建;正如我在这里读到的 libapp.so 和 libflutter.so 是什么? 我的代码应该在 libapp.so 中,但我找不到它,只有 libflutter.so 存在。构建配置中是否需要进行任何设置?中间有什么变化吗?

flutter dart reverse-engineering decompiling
1个回答
0
投票

您可以使用 Android Studio 分析 Flutter 应用程序的 apk,然后您会看到

libapp.so
libflutter.so

  • 通过 Android Studio 作为 Android 项目(而不是 Flutter 项目)打开根文件夹内的文件夹
    /android
  • 菜单 -> 构建 -> 分析 APK -> 选择你的 APK

enter image description here

© www.soinside.com 2019 - 2024. All rights reserved.