0

while running android application i got error

"Unable to execute dex: Multiple dex files define Lcom/flurry/android/Constants" and "Conversion to Dalvik format failed: Unable to execute dex: Multiple dex files define Lcom/flurry/android/Constants"

OneCricketeer
  • 179,855
  • 19
  • 132
  • 245
Ani
  • 21
  • 3

1 Answers1

0

In dependency of your app level build.gradle add :

compile 'com.android.support:multidex:1.0.0'

and in default config :

defaultConfig {
        multiDexEnabled = true
    }
Nidhi
  • 777
  • 7
  • 17