Created
June 25, 2015 09:38
-
-
Save wayanjimmy/ebb51f404241c787df84 to your computer and use it in GitHub Desktop.
Sample Android Application Class
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package io.jirra.android.managers; | |
import android.app.Application; | |
import com.mikepenz.community_material_typeface_library.CommunityMaterial; | |
import com.mikepenz.iconics.Iconics; | |
public class JirraApp extends Application { | |
public JirraApp() { | |
} | |
@Override | |
public void onCreate() { | |
super.onCreate(); | |
Iconics.registerFont(new CommunityMaterial()); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment