Back to project page simple-dash.
The source code is released under:
MIT License
If you think the Android project simple-dash listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package org.bmdtech.simpledash; // ww w . j a v a2s .co m import android.app.Application; import uk.co.chrisjenx.calligraphy.CalligraphyConfig; public class SimpleDashApp extends Application { @Override public void onCreate() { super.onCreate(); CalligraphyConfig.initDefault("fonts/roboto.ttf", R.attr.fontPath); } }