I have updated my application to the new firebase using the this and now when i compile my project i get the following exception.
Here is my logcat:
This worked for me:
And then add the line compile 'com.android.support:multidex:1.0.1'
to your dependancies (or simply remove multiDexEnabled true
if not required)
Add this attribute to the application tag in manifest: android:name="android.support.multidex.MultiDexApplication"
If you already have a custom application class defined in Android Manifest, extend it from MultiDexApplication
instead of Application
Hope it helped!