Skip to content

Instantly share code, notes, and snippets.

View jlouisperez's full-sized avatar

JL jlouisperez

  • Pointwest
View GitHub Profile
// error caused by long file names, i've only encountered this on windows
// to solve the error, add this to your project build.gradle file
buildDir = "C:/tmp/${rootProject.name}/${project.name}"
private void showMessage(String msg) {
Toast.makeText(getApplicationContext(), msg, Toast.LENGTH_SHORT).show();
}