-3

Error:

The number of method references in a .dex file cannot exceed 64K. Learn how to resolve this issue at https://developer.android.com/tools/building/multidex.html

earthw0rmjim
  • 19,027
  • 9
  • 49
  • 63

1 Answers1

1

In your Gradle do this

 defaultConfig {
    .....
    ......
    multiDexEnabled true
    .......
}

dependencies {
 .........
compile 'com.android.support:multidex:1.0.1'
.............

} And in your manifest in your Application tag

<application
    android:name="android.support.multidex.MultiDexApplication"
    .......
   .........

Happy to help

Rishikesh pathak
  • 423
  • 4
  • 18