I have converted my application into MultiDex to bear with 64k dex limit. Now it looks like this:
public class App extends MultiDexApplication {
private App
I tried with a lot of solutions a no one worked for me. Finally, I found this:
public class MyApplication extends Application {
@Override
protected void attachBaseContext(Context base) {
super.attachBaseContext(base);
MultiDex.install(this);
}
}
And was the only solution for my problem. Maybe someone is having the same problem and this could help :)