Ionic Android Build Fails, No Matches Found
I'm trying to build android using ionic, but I get the following error: /Users/xxx/dev/workspace/project/platforms/android/build/intermediates/res/merged/armv7/debug/values-v24/val
Solution 1:
The build problem is due to compatibility issue with Cordova diagnostic plugin.
As per my analysis, I came across this issue in the official issue tracking section of the plugin page. There are two possible solutions to resolve the build issue as follows:
- Downgrading the diagnostic plugin to version 3.0.0 as suggested by the users
- Upgrading Cordova android version to the latest compatible version of the plugin as suggested by the plugin author.
Hope it helps. Cheers.
Solution 2:
This worked for me, as of 6/16/2017
In the plugin.xml for diagnostic
Change these 2 lines:
<frameworksrc="com.android.support:support-v4:25.+" /><frameworksrc="com.android.support:appcompat-v7:25.+" />
to
<frameworksrc="com.android.support:support-v13:23+"/><frameworksrc="com.android.support:appcompat-v7:23+" />
Post a Comment for "Ionic Android Build Fails, No Matches Found"