Unsupported Type 'add-resource' In Android Studio
I encountered a resource merging issue when running a gradle build command. Logs as below: Error:Execution failed for task ':frameworks:base:core:res:res-common:packageReleaseReso
Solution 1:
I've solved this problem myself, here is the result: add-resource node is not supported when using android plugin 0.8.+ or later If we change
dependencies {
classpath 'com.android.tools.build:gradle:0.9.+'
}
to
dependencies {
classpath 'com.android.tools.build:gradle:0.5.+'
}
and use gradle 1.8 instead of the later versions
run gradle tasks in terminal, and all tasks turn to success
but the 'Gradle Sync' function will not work properly in the latest Android Studio,
Hope google deals with it soon.
Post a Comment for "Unsupported Type 'add-resource' In Android Studio"