From 2076c9d6a0a5b7e091d965ad99f2533c9bf55930 Mon Sep 17 00:00:00 2001 From: duqingquan Date: Tue, 26 Sep 2023 20:14:23 +0800 Subject: [PATCH] =?UTF-8?q?=E6=95=B0=E7=BB=84=E8=BD=AC=E6=8D=A2=E7=A4=BA?= =?UTF-8?q?=E4=BE=8B=20=E8=AF=AD=E6=B3=95=E7=BA=A0=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- uni_modules/uts-advance/utssdk/app-android/index.uts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/uni_modules/uts-advance/utssdk/app-android/index.uts b/uni_modules/uts-advance/utssdk/app-android/index.uts index 0f8a2f5..1169d57 100644 --- a/uni_modules/uts-advance/utssdk/app-android/index.uts +++ b/uni_modules/uts-advance/utssdk/app-android/index.uts @@ -508,27 +508,27 @@ export class User { export function arrayConvert():boolean{ let b1 = byteArrayOf(-1,2,0,3,4,5) - let c1 = UTSArray.fromNative(b1) + let c1 = Array.fromNative(b1) if(!(c1 instanceof UTSArray)){ return false } let b2 = longArrayOf(-1,2,0,3,4,5) - let c2 = UTSArray.fromNative(b2) + let c2 = Array.fromNative(b2) if(!(c2 instanceof UTSArray)){ return false } let b3 = shortArrayOf(-1,2,0,3,4,5) - let c3 = UTSArray.fromNative(b3) + let c3 = Array.fromNative(b3) if(!(c3 instanceof UTSArray)){ return false } let b4 = intArrayOf(-1,2,0,3,4,5) - let c4 = UTSArray.fromNative(b4) + let c4 = Array.fromNative(b4) if(!(c4 instanceof UTSArray)){ return false } -- GitLab