我有离子项目我正在
/home/manish/Softwares/cordova/maApp/platforms/android/build/intermediates/res/merged/debug/values-v24/values-v24.xml:3 : AAPT: Error retrieving parent for item: No resource found that matches the given name 'android:TextAppearance.Material.Widget.Button.Borderless.Colored'.
/home/manish/Softwares/cordova/maApp/platforms/android/build/intermediates/res/merged/debug/values-v24/values-v24.xml:4 : AAPT: Error retrieving parent for item: No resource found that matches the given name 'android:TextAppearance.Material.Widget.Button.Colored'.
FAILURE: FAILED
Build failed with an exception.
* What went wrong:
Execution failed for task ':processDebugResources'.
> com.android.ide.common.process.ProcessException: org.gradle.process.internal.ExecException: Process 'command '/home/manish/android-sdk/build-tools/23.0.2/aapt'' finished with non-zero exit value 1
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.
升级到Android SDk Tools
25.2.5
后,我收到此错误消息。
ionic -v
1.7.14
Cordova 1.6.0
答案 0 :(得分:1)
在您模块的应用中,查看build.gradle
区块中的dependencies
:
compile 'com.android.support:appcompat-v7:25.0.0'
确保它与compileSdkVersion
块中的android
匹配:
compileSdkVersion 25
答案 1 :(得分:-1)