I'm building an apk and I use Toast to show some information.
Toast works correctly in 4.2.2 but it does not work (no Toast message is displayed) in Android 4.3.
Ex:
Toast.makeText(getApplicationContext(), "My Message!", Toast.LENGTH_SHORT).show();
How can I solve this problem?