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:
I solved by adding this and lowering the play-service dependancy to 8.4.0 compile 'com.google.android.gms:play-services:8.4.0'
@Override
protected void attachBaseContext(Context newBase) {
super.attachBaseContext(newBase);
MultiDex.install(this);
}
and add the following to the manifest
android:name="android.support.multidex.MultiDexApplication"