We are getting build error DexIndexOverflowException while building our app code.
Seems some of our code in app or included libs in app is calling functions in Google Play service upto limit of 65536 calls.
To trace it further can you tell us a way to drill down to the dependencies which might be responsible for above error.
dependencies { compile fileTree(include: ['*.jar'], dir: 'libs') //compile files('libs/commons-collections-3.2.1.jar') compile(name: 'HERE-sdk', ext: 'aar') compile('com.crashlytics.sdk.android:crashlytics:2.6.8@aar') { transitive = true; } compile 'com.android.support:appcompat-v7:25.3.1' compile 'com.android.support:design:25.3.1' compile 'com.android.support:support-v4:25.3.1' compile 'com.android.support:recyclerview-v7:25.3.1' compile 'com.google.android.gms:play-services-location:11.0.4' compile 'com.bugfender.sdk:android:0.8.4' compile 'com.google.code.gson:gson:2.2.4' compile 'com.squareup.okhttp3:logging-interceptor:3.8.0' compile 'com.squareup.retrofit2:retrofit:2.0.2' compile 'com.squareup.retrofit2:converter-gson:2.0.2' compile 'com.github.lzyzsd:circleprogress:1.2.1' compile 'com.google.firebase:firebase-core:11.0.4' compile 'com.google.firebase:firebase-auth:11.0.4' } apply plugin: 'com.google.gms.google-services'