gpt4 book ai didi

android - Ionic 3 - 任务 ':app:processDebugManifest' 执行失败

转载 作者:行者123 更新时间:2023-11-29 18:46:19 26 4
gpt4 key购买 nike

当我试图通过运行这个 ionic cordova build android 构建一个 android apk 时,它给我一个错误 Execution failed for task ':app :processDebugManifest'

最近,我在我的项目中添加了一些codova插件文件、文件选择器和文件路径。

任务“:app:processDebugManifest”执行失败。

Manifest merger failed : Attribute meta-data#android.support.VERSION@value value=(25.4.0) from [com.android.support:appcompat-v7:25.4.0] AndroidManifest.xml:28:13-35 is also present at [com.android.support:support-v4:26.1.0] AndroidManifest.xml:28:13-35 value=(26.1.0). Suggestion: add 'tools:replace="android:value"' to element at AndroidManifest.xml:26:9-28:38 to override.

这是我的插件列表

<plugin name="cordova-plugin-whitelist" spec="1.3.3" />
<plugin name="cordova-plugin-device" spec="2.0.2" />
<plugin name="cordova-plugin-splashscreen" spec="5.0.2" />
<plugin name="cordova-plugin-ionic-webview" spec="1.1.19" />
<plugin name="cordova-plugin-ionic-keyboard" spec="2.0.5" />
<plugin name="cordova-plugin-firebase" spec="^1.0.5" />
<plugin name="cordova-plugin-inappbrowser" spec="^3.0.0" />
<plugin name="cordova-plugin-camera" spec="^4.0.3" />
<plugin name="com-sarriaroman-photoviewer" spec="^1.1.18" />
<plugin name="mx.ferreyra.callnumber" spec="~0.0.2" />
<plugin name="cordova-plugin-x-toast" spec="^2.6.2" />
<plugin name="cordova-plugin-filechooser" spec="^1.0.1" />
<plugin name="cordova-plugin-filepath" spec="^1.4.2" />
<plugin name="cordova-plugin-file" spec="^6.0.1" />

可能是什么问题?请帮忙。提前致谢。

最佳答案

转到您的项目 platforms/android/app/src/main/androidmanifes.xml 文件。然后将此行添加到您的 list 标签中:

<manifest .....  xmlns:tools="http://schemas.android.com/tools" >

然后在应用程序标签开始后添加下面的代码,如下所示

<application>
<meta-data
tools:replace="android:value"
android:name="android.support.VERSION"
android:value="25.4.0" />
......
......
</application>

这就是你所要做的......

关于android - Ionic 3 - 任务 ':app:processDebugManifest' 执行失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51747801/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com