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
| // 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}" |
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
| private void showMessage(String msg) { | |
| Toast.makeText(getApplicationContext(), msg, Toast.LENGTH_SHORT).show(); | |
| } |