web-dev-qa-db-ja.com

com.Android.ide.common.process.ProcessException:aaptの実行に失敗しました!私に何ができる?

Android Device!何が起こっているのかわからない!

それを解決するために何ができますか?

FAILURE:ビルドは例外で失敗しました。

ビルド失敗

Total time: 7.791 secs

* What went wrong:
Execution failed for task ':processDebugResources'.
> com.Android.ide.common.process.ProcessException: Failed to execute aapt

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.
Error: cmd: Command failed with exit code 1 Error output:
C:\tmp\myproj\platforms\Android\build\intermediates\res\merged\debug\values\values.xml:373: AAPT: Attribute "theme" already defined with incompatible format.

C:\tmp\myproj\platforms\Android\build\intermediates\res\merged\debug\values\values.xml:359: AAPT: Original attribute defined here.

C:\tmp\myproj\platforms\Android\build\intermediates\res\merged\debug\values-v26\values-v26.xml:15:21-54: AAPT: No resource found that matches the given name: attr 'Android:keyboardNavigationCluster'.

C:\tmp\myproj\platforms\Android\build\intermediates\res\merged\debug\values\values.xml:373: error: Attribute "theme" already defined with incompatible format.
C:\tmp\myproj\platforms\Android\build\intermediates\res\merged\debug\values\values.xml:359: Original attribute defined here.
C:\tmp\myproj\platforms\Android\build\intermediates\res\merged\debug\values-v26\values-v26.xml:15: error: Error: No resource found that matches the given name: attr 'Android:keyboardNavigationCluster'.



FAILURE: Build failed with an exception.

* What went wrong:
Execution failed for task ':processDebugResources'.
> com.Android.ide.common.process.ProcessException: Failed to execute aapt

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.

[ERROR] An error occurred while running cordova run Android (exit code 1).

解決済み

解決済み:プロジェクトを再作成し、機能を再度追加してください!

13
Caio Frota

このコードを最後の部分のbuild.gradleに入れるだけです

configurations.all {
    resolutionStrategy {
        force 'com.Android.support:support-v4:27.1.0'
    }
}
19
JocReciñacx

V4 v7バージョンを26.0.0に更新する場合、CompileSdkVersionおよびBuildToolsVersionも26.0.0に変更する必要があります。

4
Strong

私にとってこのエラーの奇妙な原因は、レイアウトからドロアブルが欠落していることでした。別のプロジェクトからレイアウトをコピーし、プロジェクトを実行する前にドロウアブルをコピーするのを忘れました。また、レイアウトのアクティビティ名にスペースが含まれていないことを確認してください。

1