We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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!
The text was updated successfully, but these errors were encountered:
You tried with another ttf? ideally finding a "mobile" friendly one.
Sorry, something went wrong.
No branches or pull requests
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!
The text was updated successfully, but these errors were encountered: