How to compile forked library in Gradle?

Issue I want to compile the following library in my project in build.gradle: https://github.com/theDazzler/Android-Bootstrap It is forked from https://github.com/Bearded-Hen/Android-Bootstrap, but no documentation in the repository explains how to include in in project. I tried something like this: compile ‘com.theDazzler:androidbootstrap:+’ but

Continue reading

Android Studio App Crashes when CheckBox is checked

Issue Hi the app crashes when I check the checkbox, but it otherwise the program works XML: <CheckBox android:layout_width=”wrap_content” android:layout_height=”wrap_content” android:id=”@+id/whippedCreamTopping” android:onClick=”onCheckboxClicked” /> Java: //This method is called when the order button is clicked. public void submitOrder(View view) { CheckBox

Continue reading