Commit 6e99bd6e by jinfeng.wang

fix

parent 161a1702
......@@ -30,7 +30,7 @@ public class MySqlUtil {
Pattern iosPkgPtn = Pattern.compile("^\\d+$");
Pattern adrPkgPtn = Pattern.compile("^[0-9a-zA-Z\\.]+$");
if (iosPkgPtn.matcher(packageName).matches() || adrPkgPtn.matcher(packageName).matches()) {
if (adrPkgPtn.matcher(packageName).matches()) {
if (packageName.contains(".")) {
platform = "Android";
} else {
platform = "IOS";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment