Skip to content

Commit c8644c6

Browse files
committed
Really enable multidex
1 parent 4755d44 commit c8644c6

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

app/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ android {
3535
dependencies {
3636
compile fileTree(dir: 'libs', include: ['*.jar'])
3737
compile "com.android.support:design:$supportLibraryVersion"
38+
compile 'com.android.support:multidex:1.0.1'
3839

3940
compile project(path: ':auth')
4041
compile project(path: ':database')

app/src/main/java/com/firebase/uidemo/auth/FirebaseUIDemo.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
package com.firebase.uidemo.auth;
22

3-
import android.app.Application;
43
import android.content.Context;
4+
import android.support.multidex.MultiDexApplication;
55
import android.support.v7.app.AppCompatDelegate;
66

77
import com.squareup.leakcanary.LeakCanary;
88
import com.squareup.leakcanary.RefWatcher;
99

10-
public class FirebaseUIDemo extends Application {
10+
public class FirebaseUIDemo extends MultiDexApplication {
1111
private RefWatcher mRefWatcher;
1212

1313
static {

0 commit comments

Comments
 (0)