From 04277eda045386b93f5e8d9d7b71cedd5f7f1c64 Mon Sep 17 00:00:00 2001 From: SuperMonster003 Date: Sat, 2 Dec 2023 18:43:31 +0800 Subject: [PATCH] =?UTF-8?q?6.5.0=20-=20Fix=20-=20=E4=BF=AE=E5=A4=8D=20VSCo?= =?UTF-8?q?de=20=E6=8F=92=E4=BB=B6=E4=BF=9D=E5=AD=98=E9=A1=B9=E7=9B=AE?= =?UTF-8?q?=E5=BC=82=E5=B8=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/src/main/java/org/autojs/autojs/io/Zip.kt | 6 +++--- version.properties | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) 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