离子电容器(& C)-...\android\capacitor-cordova-android-plugins\src\main\libs(系统找不到指定的文件)

z0qdvdin  于 2022-11-15  发布在  Android
关注(0)|答案(1)|浏览(98)

当生成Android应用程序包时,我会得到以下内容

...\android\capacitor-cordova-android-plugins\src\main\libs (The system cannot find the file specified)

我看了一下capacitor-cordova-android-plugins文件夹,这就是我所拥有的。

有人知道为什么libs文件夹不存在吗?

omjgkv6w

omjgkv6w1#

问题来自我添加到Fastfile配置中的代码。

platform :android do
  desc "Build the app and send it to Google Play for testing"

  before_all do
    gradle(
      task: "clean",
      project_dir: 'android/'
    )
  end

  lane :build do

我正在清理android目录,它删除了所需的文件.

相关问题