hello, I've gone over the docs and tried everything but the fonts still don't show.
This is what I've done so far:
-
Copied and pasted the fonts to assets/fonts (mind you, if I double click the ttf in Android Studio, it says "Unable to open font barlowregular.ttf")
-
Application class -> added
ViewPump.init(ViewPump.builder()
.addInterceptor(new CalligraphyInterceptor(
new CalligraphyConfig.Builder()
.setDefaultFontPath("fonts/barlowregular.ttf")
.setFontAttrId(R.attr.fontPath)
.build()))
.build());
-
Added to every activity -> @OverRide
protected void attachBaseContext(Context newBase) {
super.attachBaseContext(ViewPumpContextWrapper.wrap(newBase));
}
thanks for any help!
hello, I've gone over the docs and tried everything but the fonts still don't show.
This is what I've done so far:
Copied and pasted the fonts to assets/fonts (mind you, if I double click the ttf in Android Studio, it says "Unable to open font barlowregular.ttf")
Application class -> added
ViewPump.init(ViewPump.builder()
.addInterceptor(new CalligraphyInterceptor(
new CalligraphyConfig.Builder()
.setDefaultFontPath("fonts/barlowregular.ttf")
.setFontAttrId(R.attr.fontPath)
.build()))
.build());
Added to every activity -> @OverRide
protected void attachBaseContext(Context newBase) {
super.attachBaseContext(ViewPumpContextWrapper.wrap(newBase));
}
thanks for any help!