Skip to content

Commit

Permalink
Update GdxSetupUI.java with a new error message and changed build gra…
Browse files Browse the repository at this point in the history
…dle (libgdx#7315)
  • Loading branch information
LoopingMobiusStrip authored Jan 20, 2024
1 parent 08a12e8 commit 7d1a149
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,8 @@ void generate () {
boolean matches = matcher.matches();

if (!matches) {
JOptionPane.showMessageDialog(this, "Invalid package name");
JOptionPane.showMessageDialog(this,
"Invalid package name. Please check the following:\nMake sure there are at least 2 separate segments in the package name (1 or more dots).\nEnsure that the first segment does NOT start with a number or underscore.\nEnsure all characters are lowercase a-z, numbers, or an underscore.");
return;
}

Expand Down

0 comments on commit 7d1a149

Please sign in to comment.