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]
Asked
Active
Viewed 35 times
1 Answers
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

Community
- 1
- 1

Kirill Shalnov
- 2,216
- 1
- 19
- 21
-
-
-
@jr.abhi you should to create application class as in your example, use it in your manifest and add method `@Override protected void attachBaseContext(Context base) { super.attachBaseContext(base); MultiDex.install(this); }` to this class – Kirill Shalnov Apr 20 '16 at 10:07
-
-
-
-
-