Conflict With Android Support Version On Cordova Build Android
this is a common error, but in this case don't know how to solve this. What I do: cordova build android And it return this: $ cordova build android Running command: '/app/platfor
Solution 1:
I will bet that it's the Facebook plugin that's causing the collision. Try adding this to your platforms/android/build.gradle
file:
configurations {
all*.exclude group: 'com.android.support', module: 'support-v4'
}
Post a Comment for "Conflict With Android Support Version On Cordova Build Android"