diff --git a/app/src/main/java/org/autojs/autojs/io/Zip.kt b/app/src/main/java/org/autojs/autojs/io/Zip.kt index 9639abfe..b73e2e59 100644 --- a/app/src/main/java/org/autojs/autojs/io/Zip.kt +++ b/app/src/main/java/org/autojs/autojs/io/Zip.kt @@ -19,10 +19,10 @@ object Zip { var zis: ZipInputStream? = null try { zis = ZipInputStream(stream) - var entry: ZipEntry + var entry: ZipEntry? while (zis.nextEntry.also { entry = it } != null) { - val file = File(dir, entry.name) - if (entry.isDirectory) { + val file = File(dir, entry!!.name) + if (entry!!.isDirectory) { file.mkdirs() } else { ensureDir(file.path) diff --git a/version.properties b/version.properties index 195be774..2f7d96fb 100644 --- a/version.properties +++ b/version.properties @@ -1,5 +1,5 @@ -#Sat Dec 02 13:50:55 CST 2023 -BUILD_TIME=1701496255635 +#Sat Dec 02 18:41:43 CST 2023 +BUILD_TIME=1701513703937 CMAKE_VERSION=3.10.2 COMPILE_SDK_VERSION=34 JAVA_VERSION=22 @@ -11,6 +11,6 @@ NDK_VERSION=21.1.6352462 OPENCV_VERSION=4.8.0 TARGET_SDK_VERSION=34 TARGET_SDK_VERSION_INRT=29 -VERSION_BUILD=2222 +VERSION_BUILD=2223 VERSION_NAME=6.5.0 VSCODE_EXT_REQUIRED_VERSION=1.0.8