I want use Calligraphy library in my project, but in my application is use this code for change google map language :
@Override
protected void attachBaseContext(Context newBase) {
}
for use calligraphy i should use this code :
@Override
protected void attachBaseContext(Context newBase) {
super.attachBaseContext(CalligraphyContextWrapper.wrap(newBase));
}
How can i use two attachBaseContext
in my project?