-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Home
jamie-beardedhen edited this page Dec 8, 2015
·
14 revisions
Welcome to the Android-Bootstrap wiki!
If you have any questions, issues, or just want to let us know where you're using Android Bootstrap, tweet us at @BeardedHen or email [email protected]
Add the following dependency to your build.gradle:
dependencies {
compile 'com.beardedhen:androidbootstrap:2.0.1'
}
You should also override your application class with the following:
public class SampleApplication extends Application {
@Override public void onCreate() {
super.onCreate();
TypefaceProvider.registerDefaultIconSets();
}
}
You should then checkout the library and investigate the sample code, which covers most of the features. The sample app is also available on Google Play.
#Quick Guides