From 8a4462dcf03c17b65fd8b17e55e603d6b74eab23 Mon Sep 17 00:00:00 2001 From: lfl <15188787339@163.com> Date: Fri, 16 Aug 2024 15:58:02 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E5=BC=95=E7=94=A8=E6=8A=A5?= =?UTF-8?q?=E9=94=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- entry/oh-package.json5 | 5 +++-- entry/src/main/cpp/types/libentry/oh-package.json5 | 2 +- entry/src/ohosTest/ets/test/LoginFunction.test.ets | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/entry/oh-package.json5 b/entry/oh-package.json5 index 38bfd40..d3046f6 100644 --- a/entry/oh-package.json5 +++ b/entry/oh-package.json5 @@ -1,12 +1,13 @@ { "license": "", "devDependencies": { - "@types/libentry.so": "file:./src/main/cpp/types/libentry" }, "author": "", "name": "entry", "description": "Please describe the basic information.", "main": "", "version": "1.0.0", - "dependencies": {} + "dependencies": { + "libentry.so": "file:./src/main/cpp/types/libentry" + } } diff --git a/entry/src/main/cpp/types/libentry/oh-package.json5 b/entry/src/main/cpp/types/libentry/oh-package.json5 index 8c49cae..17f2fec 100644 --- a/entry/src/main/cpp/types/libentry/oh-package.json5 +++ b/entry/src/main/cpp/types/libentry/oh-package.json5 @@ -1,6 +1,6 @@ { "name": "libentry.so", "types": "./index.d.ts", - "version": "", + "version": "1.0.0", "description": "Please describe the basic information." } \ No newline at end of file diff --git a/entry/src/ohosTest/ets/test/LoginFunction.test.ets b/entry/src/ohosTest/ets/test/LoginFunction.test.ets index 981450d..7c44424 100644 --- a/entry/src/ohosTest/ets/test/LoginFunction.test.ets +++ b/entry/src/ohosTest/ets/test/LoginFunction.test.ets @@ -13,7 +13,7 @@ * limitations under the License. */ -import { inputMethod } from '@kit.InputMethodKit'; +import { inputMethod } from '@kit.IMEKit'; import { abilityDelegatorRegistry, Driver, ON } from '@kit.TestKit'; import { describe, expect, it } from '@ohos/hypium'; import { loginCheck } from '../testability/pages/Index'; -- Gitee