0

i'm having the following issue on building an Android Cordova.

UNEXPECTED TOP-LEVEL EXCEPTION:
com.android.dex.DexException: Multiple dex files define Landroid/support/annotation/AnimRes;

The problem only happens when i use Wizcorp/Facebook with AdMob-Pro.

bobsouza
  • 96
  • 5

1 Answers1

1

You need to exclude android-support-v4.jar that got included by Wizcorp Facebook plugin. Trick is simple you need to create build-extras.gradle inside platforms/android and add following:

configurations {
   all*.exclude group: 'com.android.support', module: 'support-v4'
}

the solution is in this post, but doesn't work in my case. @mladen5 solution, not mine.

Community
  • 1
  • 1
Braian Mellor
  • 1,934
  • 3
  • 31
  • 50