1、升级umeng push到3.1.1a,解决通知栏持续运行中的问题

2、fix game adapter
This commit is contained in:
CsHeng
2017-05-09 18:17:28 +08:00
parent a88c920ef0
commit bd2ce2e82d
22 changed files with 586 additions and 490 deletions

View File

@ -9,13 +9,13 @@ public class StringUtils {
public static String buildString(String... arrStr) {
int strCount = 0;
for(int i = 0; i < arrStr.length; ++i) {
strCount += arrStr[i] == null?0:arrStr[i].length();
for (int i = 0; i < arrStr.length; ++i) {
strCount += arrStr[i] == null ? 0 : arrStr[i].length();
}
StringBuilder result = new StringBuilder(strCount);
for(int j = 0; j < arrStr.length; ++j) {
for (int j = 0; j < arrStr.length; ++j) {
result.append(arrStr[j]);
}