0

Hello Everyone i am integrating google analytical in my android app.I got reference/help from androidhive [I just got help from below link and all are perfecr][1]

jr.abhi
  • 25
  • 7

1 Answers1

2

Problem is caused by improper use of the multidexing library. You should create your own application class and use it name in manifest and other places. You have to call MultiDex.install(this) inside it to use multidex

public class YouApplication extends Application {

    @Override
    protected void attachBaseContext(Context base) {
        super.attachBaseContext(base);
        MultiDex.install(this);
    }

}

or extend MultiDexApplication by your custom Application class

Read more about multidexing

Community
  • 1
  • 1
Kirill Shalnov
  • 2,216
  • 1
  • 19
  • 21