离子2构建APK@mipmap/图标错误



我可以在 android@6.1.2 中构建 apk,但是当我想ionic add platform android@4.4.2并运行ionic build android控制台输出时

C:\用户\ ...\platforms\android\build\intermediates\res\armv7\debug\xml\authenticator.xml:2: 错误:错误:找不到与给定名称匹配的资源(在"图标"处( 值为"@mipmap/图标"(。

C:\用户\ ...\platforms\android\build\intermediates\res\armv7\debug\xml\authenticator.xml:2: 错误:错误:找不到与给定名称匹配的资源(在 值为"@mipmap/图标"的"小图标"(。

不知道如何解决它,谷歌搜索/搜索堆栈溢出对我没有帮助......

这是由于

AndroidManifest 中名称的差异而导致的错误.xml要解决此问题

  1. 转到安卓
  2. 点击应用程序
  3. 点击 src
  4. 点击主
  5. 点击 res
  6. 打开安卓清单.xml
  7. 将 android:icon="@mipmap/ic_launcher"> 编辑为图标的 png 文件名例如:如果您的图标文件名是 POTATO.png,您将编辑安卓图标android:icon="@mipmap/potato">
  8. 转到文件,然后单击全部保存
  9. 再次运行应用

检查图标在mipmap文件夹中是否可用,并检查config.xml文件。

相关内容

  • 没有找到相关文章

最新更新