Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Xts Acts
提交
f75c8128
X
Xts Acts
项目概览
OpenHarmony
/
Xts Acts
1 年多 前同步成功
通知
9
Star
22
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
X
Xts Acts
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
f75c8128
编写于
2月 24, 2023
作者:
A
anning
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
applications
Signed-off-by:
N
anning
<
anning7@huawei.com
>
上级
7f481963
变更
20
展开全部
隐藏空白更改
内联
并排
Showing
20 changed file
with
381 addition
and
282 deletion
+381
-282
applications/settingsdata/settings_ets/AppScope/app.json
applications/settingsdata/settings_ets/AppScope/app.json
+21
-0
applications/settingsdata/settings_ets/AppScope/resources/base/element/string.json
.../settings_ets/AppScope/resources/base/element/string.json
+12
-0
applications/settingsdata/settings_ets/AppScope/resources/base/media/app_icon.png
...a/settings_ets/AppScope/resources/base/media/app_icon.png
+0
-0
applications/settingsdata/settings_ets/BUILD.gn
applications/settingsdata/settings_ets/BUILD.gn
+16
-11
applications/settingsdata/settings_ets/Test.json
applications/settingsdata/settings_ets/Test.json
+16
-12
applications/settingsdata/settings_ets/entry/src/main/config.json
...ions/settingsdata/settings_ets/entry/src/main/config.json
+0
-107
applications/settingsdata/settings_ets/entry/src/main/ets/Application/AbilityStage.ts
...ttings_ets/entry/src/main/ets/Application/AbilityStage.ts
+9
-0
applications/settingsdata/settings_ets/entry/src/main/ets/MainAbility/MainAbility.ts
...ettings_ets/entry/src/main/ets/MainAbility/MainAbility.ts
+37
-0
applications/settingsdata/settings_ets/entry/src/main/ets/MainAbility/pages/index/index.ets
..._ets/entry/src/main/ets/MainAbility/pages/index/index.ets
+56
-0
applications/settingsdata/settings_ets/entry/src/main/ets/TestAbility/TestAbility.ts
...ettings_ets/entry/src/main/ets/TestAbility/TestAbility.ts
+50
-0
applications/settingsdata/settings_ets/entry/src/main/ets/TestAbility/app.ets
...sdata/settings_ets/entry/src/main/ets/TestAbility/app.ets
+0
-32
applications/settingsdata/settings_ets/entry/src/main/ets/TestAbility/pages/index.ets
...ttings_ets/entry/src/main/ets/TestAbility/pages/index.ets
+3
-4
applications/settingsdata/settings_ets/entry/src/main/ets/TestRunner/OpenHarmonyTestRunner.ts
...ts/entry/src/main/ets/TestRunner/OpenHarmonyTestRunner.ts
+16
-15
applications/settingsdata/settings_ets/entry/src/main/ets/test/List.test.ets
...gsdata/settings_ets/entry/src/main/ets/test/List.test.ets
+1
-0
applications/settingsdata/settings_ets/entry/src/main/ets/test/SettingUiJsunit.test.ets
...ings_ets/entry/src/main/ets/test/SettingUiJsunit.test.ets
+62
-82
applications/settingsdata/settings_ets/entry/src/main/module.json
...ions/settingsdata/settings_ets/entry/src/main/module.json
+45
-0
applications/settingsdata/settings_ets/entry/src/main/resources/base/element/string.json
...ngs_ets/entry/src/main/resources/base/element/string.json
+31
-19
applications/settingsdata/settings_ets/entry/src/main/resources/base/media/icon.png
...settings_ets/entry/src/main/resources/base/media/icon.png
+0
-0
applications/settingsdata/settings_ets/entry/src/main/resources/base/profile/main_pages.json
...ets/entry/src/main/resources/base/profile/main_pages.json
+6
-0
applications/settingsdata/settings_ets/signature/openharmony_sx.p7b
...ns/settingsdata/settings_ets/signature/openharmony_sx.p7b
+0
-0
未找到文件。
applications/settingsdata/settings_ets/AppScope/app.json
0 → 100644
浏览文件 @
f75c8128
{
"app"
:
{
"bundleName"
:
"com.open.harmony.settings"
,
"vendor"
:
"huawei"
,
"versionCode"
:
1000000
,
"versionName"
:
"1.0.0"
,
"debug"
:
false
,
"icon"
:
"$media:icon"
,
"label"
:
"$string:app_name"
,
"description"
:
"$string:description_application"
,
"distributedNotificationEnabled"
:
true
,
"keepAlive"
:
true
,
"singleUser"
:
true
,
"minAPIVersion"
:
9
,
"targetAPIVersion"
:
9
,
"car"
:
{
"apiCompatibleVersion"
:
9
,
"singleUser"
:
false
}
}
}
\ No newline at end of file
applications/settingsdata/settings_ets/AppScope/resources/base/element/string.json
0 → 100644
浏览文件 @
f75c8128
{
"string"
:[
{
"name"
:
"app_name"
,
"value"
:
"ohosProject"
},
{
"name"
:
"description_application"
,
"value"
:
"settings_xts"
}
]
}
\ No newline at end of file
applications/settingsdata/settings_ets/AppScope/resources/base/media/app_icon.png
0 → 100644
浏览文件 @
f75c8128
15.1 KB
applications/settingsdata/settings_ets/BUILD.gn
浏览文件 @
f75c8128
# Copyright (c) 202
2 Huawei Device Co.,
Ltd.
# Copyright (c) 202
3-2030 iSoftStone Information Technology (Group) Co.,
Ltd.
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
...
...
@@ -14,23 +14,28 @@
import("//test/xts/tools/build/suite.gni")
ohos_js_hap_suite("SettingsEtsTest") {
hap_profile = "./entry/src/main/config.json"
hap_profile = "entry/src/main/module.json"
js_build_mode = "debug"
deps = [
":settings_ets_assets",
":settings_ets_
js_
assets",
":settings_ets_resources",
":settings_ets_test_assets",
]
ets2abc = true
certificate_profile = "
./
signature/openharmony_sx.p7b"
certificate_profile = "signature/openharmony_sx.p7b"
hap_name = "ActsSettingsEtsTest"
}
ohos_js_assets("settings_ets_assets") {
source_dir = "./entry/src/main/ets/MainAbility"
ohos_app_scope("settings_ets_app_profile") {
app_profile = "AppScope/app.json"
sources = [ "AppScope/resources" ]
}
ohos_js_assets("settings_ets_test_assets") {
source_dir = "./entry/src/main/ets/TestAbility"
ohos_js_assets("settings_ets_js_assets") {
source_dir = "entry/src/main/ets"
}
ohos_resources("settings_ets_resources") {
sources = [ "./entry/src/main/resources" ]
hap_profile = "./entry/src/main/config.json"
sources = [ "entry/src/main/resources" ]
deps = [ ":settings_ets_app_profile" ]
hap_profile = "entry/src/main/module.json"
}
applications/settingsdata/settings_ets/Test.json
浏览文件 @
f75c8128
...
...
@@ -2,18 +2,22 @@
"description"
:
"Configuration for settings Tests"
,
"driver"
:
{
"type"
:
"OHJSUnitTest"
,
"test-timeout"
:
"
60
0000"
,
"test-timeout"
:
"
18
0000"
,
"bundle-name"
:
"com.open.harmony.settings"
,
"
package-name"
:
"com.open.harmony.settings
"
,
"
module-name"
:
"phone
"
,
"shell-timeout"
:
"600000"
},
"kits"
:
[
{
"test-file-name"
:
[
"ActsSettingsEtsTest.hap"
],
"type"
:
"AppInstallKit"
,
"cleanup-apps"
:
true
}
]
}
"kits"
:
[{
"test-file-name"
:
[
"ActsSettingsEtsTest.hap"
],
"type"
:
"AppInstallKit"
,
"cleanup-apps"
:
true
},
{
"type"
:
"ShellKit"
,
"run-command"
:
[
"power-shell wakeup"
,
"power-shell setmode 602"
]
}]
}
\ No newline at end of file
applications/settingsdata/settings_ets/entry/src/main/config.json
已删除
100644 → 0
浏览文件 @
7f481963
{
"app"
:
{
"bundleName"
:
"com.open.harmony.settings"
,
"vendor"
:
"open"
,
"version"
:
{
"code"
:
1000000
,
"name"
:
"1.0.0"
},
"apiVersion"
:
{
"compatible"
:
7
,
"releaseType"
:
"Release"
,
"target"
:
7
}
},
"deviceConfig"
:
{},
"module"
:
{
"package"
:
"com.open.harmony.settings"
,
"name"
:
".MyApplication"
,
"mainAbility"
:
"com.open.harmony.settings.MainAbility"
,
"srcPath"
:
""
,
"deviceType"
:
[
"tablet"
,
"default"
,
"phone"
],
"distro"
:
{
"deliveryWithInstall"
:
true
,
"moduleName"
:
"entry"
,
"moduleType"
:
"entry"
,
"installationFree"
:
false
},
"abilities"
:
[
{
"skills"
:
[
{
"entities"
:
[
"entity.system.home"
],
"actions"
:
[
"action.system.home"
]
}
],
"orientation"
:
"unspecified"
,
"visible"
:
true
,
"srcPath"
:
"MainAbility"
,
"name"
:
".MainAbility"
,
"srcLanguage"
:
"ets"
,
"icon"
:
"$media:icon"
,
"description"
:
"$string:description_mainability"
,
"formsEnabled"
:
false
,
"label"
:
"$string:entry_MainAbility"
,
"type"
:
"page"
,
"launchType"
:
"standard"
},
{
"orientation"
:
"unspecified"
,
"visible"
:
true
,
"srcPath"
:
"TestAbility"
,
"name"
:
".TestAbility"
,
"srcLanguage"
:
"ets"
,
"icon"
:
"$media:icon"
,
"description"
:
"$string:TestAbility_desc"
,
"formsEnabled"
:
false
,
"label"
:
"$string:TestAbility_label"
,
"type"
:
"page"
,
"launchType"
:
"standard"
}
],
"reqPermissions"
:
[
{
"name"
:
"ohos.permission.MANAGE_SECURE_SETTINGS"
,
"reason"
:
"need use ohos.permission.,MANAGE_SECURE_SETTINGS"
}
],
"js"
:
[
{
"mode"
:
{
"syntax"
:
"ets"
,
"type"
:
"pageAbility"
},
"pages"
:
[
"pages/index"
],
"name"
:
".MainAbility"
,
"window"
:
{
"designWidth"
:
720
,
"autoDesignWidth"
:
false
}
},
{
"mode"
:
{
"syntax"
:
"ets"
,
"type"
:
"pageAbility"
},
"pages"
:
[
"pages/index"
],
"name"
:
".TestAbility"
,
"window"
:
{
"designWidth"
:
720
,
"autoDesignWidth"
:
false
}
}
]
}
}
applications/settingsdata/settings_ets/entry/src/main/ets/Application/AbilityStage.ts
0 → 100644
浏览文件 @
f75c8128
import
AbilityStage
from
"
@ohos.app.ability.AbilityStage
"
export
default
class
MyAbilityStage
extends
AbilityStage
{
onCreate
()
{
console
.
log
(
"
[Demo] MyAbilityStage onCreate
"
)
globalThis
.
stageOnCreateRun
=
1
;
globalThis
.
stageContext
=
this
.
context
;
}
}
applications/settingsdata/settings_ets/entry/src/main/ets/MainAbility/MainAbility.ts
0 → 100644
浏览文件 @
f75c8128
import
Ability
from
'
@ohos.app.ability.UIAbility
'
export
default
class
MainAbility
extends
Ability
{
onCreate
(
want
,
launchParam
){
// Ability is creating, initialize resources for this ability
console
.
log
(
"
[Demo] MainAbility onCreate
"
)
globalThis
.
abilityWant
=
want
;
}
onDestroy
()
{
// Ability is destroying, release resources for this ability
console
.
log
(
"
[Demo] MainAbility onDestroy
"
)
}
onWindowStageCreate
(
windowStage
)
{
// Main window is created, set main page for this ability
console
.
log
(
"
[Demo] MainAbility onWindowStageCreate windowStage=
"
+
windowStage
)
globalThis
.
windowStage
=
windowStage
globalThis
.
abilityContext
=
this
.
context
windowStage
.
setUIContent
(
this
.
context
,
"
MainAbility/pages/index/index
"
,
null
)
}
onWindowStageDestroy
()
{
//Main window is destroyed, release UI related resources
console
.
log
(
"
[Demo] MainAbility onWindowStageDestroy
"
)
}
onForeground
()
{
// Ability has brought to foreground
console
.
log
(
"
[Demo] MainAbility onForeground
"
)
}
onBackground
()
{
// Ability has back to background
console
.
log
(
"
[Demo] MainAbility onBackground
"
)
}
};
\ No newline at end of file
applications/settingsdata/settings_ets/entry/src/main/ets/MainAbility/pages/index.ets
→
applications/settingsdata/settings_ets/entry/src/main/ets/MainAbility/pages/index
/index
.ets
浏览文件 @
f75c8128
// @ts-nocheck
/**
* Copyright (c) 202
1 Huawei Device Co.,
Ltd.
* Copyright (c) 202
3-2030 iSoftStone Information Technology (Group) Co.,
Ltd.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
...
...
@@ -13,25 +12,45 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import router from '@ohos.router';
import AbilityDelegatorRegistry from '@ohos.application.abilityDelegatorRegistry'
import { Hypium } from '@ohos/hypium'
import testsuite from '../../../test/List.test'
@Entry
@Component
struct MyComponent {
aboutToAppear() {
struct Index {
aboutToAppear(){
console.info("aboutToAppear start")
var abilityDelegator: any
abilityDelegator = AbilityDelegatorRegistry.getAbilityDelegator()
var abilityDelegatorArguments: any
abilityDelegatorArguments = AbilityDelegatorRegistry.getArguments()
console.info('start run testcase!!!')
Hypium.hypiumTest(abilityDelegator, abilityDelegatorArguments, testsuite)
}
build() {
Flex({
direction: FlexDirection.Column,
alignItems: ItemAlign.Center,
justifyContent: FlexAlign.Center
}) {
Text('Settings ETS TEST')
Flex({ direction:FlexDirection.Column, alignItems:ItemAlign.Center, justifyContent: FlexAlign.Center }) {
Text('Hello World')
.fontSize(50)
.fontWeight(FontWeight.Bold)
Button() {
Text('next page')
.fontSize(25)
.fontWeight(FontWeight.Bold)
}.type(ButtonType.Capsule)
.margin({
top: 20
})
.backgroundColor('#0D9FFB')
.onClick(() => {
})
}
.width('100%')
.height('100%')
}
}
}
\ No newline at end of file
applications/settingsdata/settings_ets/entry/src/main/ets/
MainAbility/app.e
ts
→
applications/settingsdata/settings_ets/entry/src/main/ets/
TestAbility/TestAbility.
ts
浏览文件 @
f75c8128
/**
* Copyright (c) 202
1 Huawei Device Co.,
Ltd.
* Copyright (c) 202
3-2030 iSoftStone Information Technology (Group) Co.,
Ltd.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
...
...
@@ -12,11 +12,39 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
export default {
onCreate() {
console.info('Application onCreate')
},
onDestroy() {
console.info('Application onDestroy')
},
}
\ No newline at end of file
import
Ability
from
'
@ohos.app.ability.UIAbility
'
export
default
class
TestAbility
extends
Ability
{
onCreate
(
want
,
launchParam
)
{
console
.
log
(
'
TestAbility onCreate
'
)
}
onDestroy
()
{
console
.
log
(
'
TestAbility onDestroy
'
)
}
onWindowStageCreate
(
windowStage
)
{
console
.
log
(
'
TestAbility onWindowStageCreate
'
)
windowStage
.
loadContent
(
"
TestAbility/pages/index
"
,
(
err
,
data
)
=>
{
if
(
err
.
code
)
{
console
.
error
(
'
Failed to load the content. Cause:
'
+
JSON
.
stringify
(
err
));
return
;
}
console
.
info
(
'
Succeeded in loading the content. Data:
'
+
JSON
.
stringify
(
data
))
});
globalThis
.
abilityContext
=
this
.
context
;
}
onWindowStageDestroy
()
{
console
.
log
(
'
TestAbility onWindowStageDestroy
'
)
}
onForeground
()
{
console
.
log
(
'
TestAbility onForeground
'
)
}
onBackground
()
{
console
.
log
(
'
TestAbility onBackground
'
)
}
};
\ No newline at end of file
applications/settingsdata/settings_ets/entry/src/main/ets/TestAbility/app.ets
已删除
100644 → 0
浏览文件 @
7f481963
/*
* Copyright (C) 2022 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import AbilityDelegatorRegistry from '@ohos.application.abilityDelegatorRegistry'
import { Hypium } from 'hypium/index'
import testsuite from '../test/List.test'
export default {
onCreate() {
console.info('Application onCreate')
var abilityDelegator: any
abilityDelegator = AbilityDelegatorRegistry.getAbilityDelegator()
var abilityDelegatorArguments: any
abilityDelegatorArguments = AbilityDelegatorRegistry.getArguments()
console.info('start run testcase!!!')
Hypium.hypiumTest(abilityDelegator, abilityDelegatorArguments, testsuite)
},
onDestroy() {
console.info('Application onDestroy')
},
}
\ No newline at end of file
applications/settingsdata/settings_ets/entry/src/main/ets/TestAbility/pages/index.ets
浏览文件 @
f75c8128
/*
* Copyright (
C) 2022 Huawei Device Co.,
Ltd.
/*
*
* Copyright (
c) 2023-2030 iSoftStone Information Technology (Group) Co.,
Ltd.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
...
...
@@ -12,7 +12,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import router from '@
system
.router';
import router from '@
ohos
.router';
@Entry
@Component
...
...
@@ -20,7 +20,6 @@ struct Index {
aboutToAppear() {
console.info('TestAbility index aboutToAppear')
}
@State message: string = 'Hello World'
build() {
Row() {
...
...
applications/settingsdata/settings_ets/entry/src/main/ets/TestRunner/OpenHarmonyTestRunner.ts
浏览文件 @
f75c8128
/*
* Copyright (
C) 2022 Huawei Device Co.,
Ltd.
/*
*
* Copyright (
c) 2023-2030 iSoftStone Information Technology (Group) Co.,
Ltd.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
...
...
@@ -20,25 +20,25 @@ var abilityDelegatorArguments = undefined
function
translateParamsToString
(
parameters
)
{
const
keySet
=
new
Set
([
'
-s class
'
,
'
-s notClass
'
,
'
-s suite
'
,
'
-s it
Name
'
,
'
-s class
'
,
'
-s notClass
'
,
'
-s suite
'
,
'
-s it
'
,
'
-s level
'
,
'
-s testType
'
,
'
-s size
'
,
'
-s timeout
'
,
'
-s
package
'
'
-s
dryRun
'
])
let
targetParams
=
''
;
for
(
const
key
in
parameters
)
{
if
(
keySet
.
has
(
key
))
{
targetParams
+=
'
'
+
key
+
'
'
+
parameters
[
key
]
targetParams
=
`
${
targetParams
}
${
key
}
${
parameters
[
key
]}
`
}
}
return
targetParams
.
trim
()
}
async
function
onAbilityCreateCallback
()
{
console
.
log
(
'
onAbilityCreateCallback
'
);
console
.
log
(
"
onAbilityCreateCallback
"
);
}
async
function
addAbilityMonitorCallback
(
err
:
any
)
{
console
.
info
(
'
addAbilityMonitorCallback :
'
+
JSON
.
stringify
(
err
))
console
.
info
(
"
addAbilityMonitorCallback :
"
+
JSON
.
stringify
(
err
))
}
export
default
class
OpenHarmonyTestRunner
implements
TestRunner
{
...
...
@@ -46,22 +46,26 @@ export default class OpenHarmonyTestRunner implements TestRunner {
}
onPrepare
()
{
console
.
info
(
'
OpenHarmonyTestRunner OnPrepare
'
)
console
.
info
(
"
OpenHarmonyTestRunner OnPrepare
"
)
}
onRun
()
{
async
onRun
()
{
console
.
log
(
'
OpenHarmonyTestRunner onRun run
'
)
abilityDelegatorArguments
=
AbilityDelegatorRegistry
.
getArguments
()
abilityDelegator
=
AbilityDelegatorRegistry
.
getAbilityDelegator
()
var
testAbilityName
=
abilityDelegatorArguments
.
bundleName
+
'
.MainAbility
'
let
lMonitor
=
{
abilityName
:
testAbilityName
,
onAbilityCreate
:
onAbilityCreateCallback
,
};
var
testAbilityName
=
abilityDelegatorArguments
.
parameters
[
'
-p
'
]
+
'
.TestAbility
'
abilityDelegator
.
addAbilityMonitor
(
lMonitor
,
addAbilityMonitorCallback
)
var
cmd
=
'
aa start -d 0 -a
'
+
testAbilityName
+
'
-b
'
+
abilityDelegatorArguments
.
bundleName
var
cmd
=
'
aa start -d 0 -a
com.open.harmony.settings.MainAbility
'
+
'
-b
'
+
abilityDelegatorArguments
.
bundleName
cmd
+=
'
'
+
translateParamsToString
(
abilityDelegatorArguments
.
parameters
)
var
debug
=
abilityDelegatorArguments
.
parameters
[
"
-D
"
]
if
(
debug
==
'
true
'
)
{
cmd
+=
'
-D
'
}
console
.
info
(
'
cmd :
'
+
cmd
)
abilityDelegator
.
executeShellCommand
(
cmd
,
(
err
:
any
,
d
:
any
)
=>
{
...
...
@@ -69,9 +73,6 @@ export default class OpenHarmonyTestRunner implements TestRunner {
console
.
info
(
'
executeShellCommand : data :
'
+
d
.
stdResult
);
console
.
info
(
'
executeShellCommand : data :
'
+
d
.
exitCode
);
})
console
.
info
(
'
OpenHarmonyTestRunner onRun call abilityDelegator.getAppContext
'
)
var
context
=
abilityDelegator
.
getAppContext
()
console
.
info
(
'
getAppContext :
'
+
JSON
.
stringify
(
context
))
console
.
info
(
'
OpenHarmonyTestRunner onRun end
'
)
}
};
\ No newline at end of file
applications/settingsdata/settings_ets/entry/src/main/ets/test/List.test.ets
浏览文件 @
f75c8128
...
...
@@ -15,5 +15,6 @@
import settingUiJsunit from './SettingUiJsunit.test.ets';
export default function testsuite() {
console.log("testsuite start")
settingUiJsunit();
}
\ No newline at end of file
applications/settingsdata/settings_ets/entry/src/main/ets/test/SettingUiJsunit.test.ets
浏览文件 @
f75c8128
此差异已折叠。
点击以展开。
applications/settingsdata/settings_ets/entry/src/main/module.json
0 → 100644
浏览文件 @
f75c8128
{
"module"
:
{
"name"
:
"phone"
,
"type"
:
"entry"
,
"srcEntrance"
:
"./ets/Application/AbilityStage.ts"
,
"description"
:
"$string:phone_entry_dsc"
,
"mainElement"
:
"MainAbility"
,
"deviceTypes"
:
[
"tablet"
,
"default"
,
"phone"
],
"deliveryWithInstall"
:
true
,
"installationFree"
:
false
,
"uiSyntax"
:
"ets"
,
"pages"
:
"$profile:main_pages"
,
"abilities"
:
[{
"name"
:
"com.open.harmony.settings.MainAbility"
,
"srcEntrance"
:
"./ets/MainAbility/MainAbility.ts"
,
"description"
:
"$string:phone_entry_main"
,
"icon"
:
"$media:icon"
,
"label"
:
"$string:entry_label"
,
"visible"
:
true
,
"orientation"
:
"portrait"
,
"skills"
:
[{
"actions"
:
[
"action.system.home"
],
"entities"
:
[
"entity.system.home"
]
}]
}],
"metadata"
:[{
"name"
:
"ArkTSPartialUpdate"
,
"value"
:
"true"
}],
"requestPermissions"
:
[
{
"name"
:
"ohos.permission.MANAGE_SECURE_SETTINGS"
,
"reason"
:
"need permission to write settingsdata"
}
]
}
}
\ No newline at end of file
applications/settingsdata/settings_ets/entry/src/main/resources/base/element/string.json
浏览文件 @
f75c8128
{
"string"
:
[
{
"name"
:
"entry_MainAbility"
,
"value"
:
"entry_MainAbility"
},
{
"name"
:
"description_mainability"
,
"value"
:
"ETS_Empty Ability"
},
{
"name"
:
"TestAbility_desc"
,
"value"
:
"description"
},
{
"name"
:
"TestAbility_label"
,
"value"
:
"label"
}
]
}
\ No newline at end of file
"string"
:
[
{
"name"
:
"phone_entry_dsc"
,
"value"
:
"i am an entry for phone"
},
{
"name"
:
"phone_entry_main"
,
"value"
:
"the phone entry ability"
},
{
"name"
:
"entry_label"
,
"value"
:
"ActsContextTest"
},
{
"name"
:
"form_description"
,
"value"
:
"my form"
},
{
"name"
:
"serviceability_description"
,
"value"
:
"my whether"
},
{
"name"
:
"description_application"
,
"value"
:
"demo for test"
},
{
"name"
:
"app_name"
,
"value"
:
"Demo"
}
]
}
applications/settingsdata/settings_ets/entry/src/main/resources/base/media/icon.png
查看替换文件 @
7f481963
浏览文件 @
f75c8128
6.6 KB
|
W:
|
H:
15.1 KB
|
W:
|
H:
2-up
Swipe
Onion skin
applications/settingsdata/settings_ets/entry/src/main/resources/base/profile/main_pages.json
0 → 100644
浏览文件 @
f75c8128
{
"src"
:
[
"MainAbility/pages/index/index"
,
"TestAbility/pages/index"
]
}
\ No newline at end of file
applications/settingsdata/settings_ets/signature/openharmony_sx.p7b
浏览文件 @
f75c8128
无法预览此类型文件
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录