Hello guys My application was all working fine till yesterday, i updated my SDK yesterday and it started giving error first it gave an error
No resou
Write a class EnableMultiDex
like below
public class EnableMultiDex extends MultiDexApplication {
private static EnableMultiDex enableMultiDex;
public static Context context;
public EnableMultiDex(){
enableMultiDex=this;
}
public static EnableMultiDex getEnableMultiDexApp() {
return enableMultiDex;
}
@Override
public void onCreate() {
super.onCreate();
context = getApplicationContext();
}
}
and in AndroidManifest.xml
write this class inside Application tag