6.0.2 - 新增images.bilateralFilter() 修复toast多次调用/客户端及服务端模式开关/安卓7无法使用UI模式 部分插件及工具版本更新

This commit is contained in:
SuperMonster003
2022-02-05 16:45:25 +08:00
parent 3ce51e4a01
commit ec61eb5000
40 changed files with 1003 additions and 847 deletions

View File

@@ -10,15 +10,14 @@ public class SdkVersionUtil {
"1.0", "1.1", "1.5", "1.6", "2.0", "2.0.1", "2.1.x", "2.2.x",
"2.3", "2.3.3", "3.0.x", "3.1.x", "3.2", "4.0", "4.0.3", "4.1",
"4.2", "4.3", "4.4.2", "4.4W", "5.0", "5.1", "6.0", "7.0", "7.1",
"8.0"
"8.0", "8.1", "9", "10", "11", "12"
};
public static String sdkIntToString(int i) {
if (i > 26) {
if (i > 31) {
return "Unknown";
}
return SDK_VERSIONS[i - 1];
}
}