diff --git a/aafwk/aafwk_standard/BUILD.gn b/aafwk/aafwk_standard/BUILD.gn index afcb0d23e193ca81a1fb11ad45d740b31949d62d..2b4a2beb336235cdbbb9cc698b156cb391d2dfae 100755 --- a/aafwk/aafwk_standard/BUILD.gn +++ b/aafwk/aafwk_standard/BUILD.gn @@ -32,7 +32,6 @@ group("aafwk_standard") { "context:context", "featureability:featureability", "formmanager:formmanager", - "setshowonlockscreen:setshowonlockscreen", "want:want", ] } diff --git a/aafwk/aafwk_standard/actsabilitydelegatorcase/entry/src/main/js/test/ActsAbilityDelegatorCaseTest.test.js b/aafwk/aafwk_standard/actsabilitydelegatorcase/entry/src/main/js/test/ActsAbilityDelegatorCaseTest.test.js index 9a8eb59c1484c4c243024ce5880d273d15240d1b..e3574ea97a597727ca7e16ae472fedfbbc0a9d21 100644 --- a/aafwk/aafwk_standard/actsabilitydelegatorcase/entry/src/main/js/test/ActsAbilityDelegatorCaseTest.test.js +++ b/aafwk/aafwk_standard/actsabilitydelegatorcase/entry/src/main/js/test/ActsAbilityDelegatorCaseTest.test.js @@ -85,52 +85,12 @@ describe('ActsStServiceAbilityTest', function () { }) - /** - * @tc.number: ACTS_AExecuteShellCommand_0200 - * @tc.name: Execute a shell command with arguments (AsyncCallback). - * @tc.desc: Verify that the interface executes the Shell command successfully. - */ - it('ACTS_AExecuteShellCommand_Callback_0200', 0, async function (done) { - console.log("ACTS_AExecuteShellCommand_Callback_0200 --- start") - var currentAlertTimeout = 0; - try { - currentAlertTimeout = setTimeout(mySetTimeout, gSetTimeout); - function mySetTimeout() { - console.log('ACTS_AExecuteShellCommand_Callback_0200==== { - clearTimeout(currentAlertTimeout); - console.log('ACTS_AExecuteShellCommand_Callback_0200 - executeShellCommand: start ') - - console.log('ACTS_AExecuteShellCommand_Callback_0200 stdResult = ' + data.stdResult) - var i = data.stdResult.indexOf('start ability successfully.'); - console.log('ACTS_AExecuteShellCommand_Callback_0200 query string i = ' + i); - expect(i == -1).assertEqual(false); - - console.log('ACTS_AExecuteShellCommand_Callback_0200 exitCode = ' + data.exitCode) - expect(data.exitCode).assertEqual(0); - - done() - }) - } catch (error) { - clearTimeout(currentAlertTimeout); - console.log("ACTS_AExecuteShellCommand_Callback_0200 : error = " + error); - console.debug('ACTS_AExecuteShellCommand_Callback_0200====" - + JSON.stringify(DisplayOrientation) + " , err= " + err); expect(DisplayOrientation == bundle.DisplayOrientation.UNSPECIFIED || (DisplayOrientation != bundle.DisplayOrientation.LANDSCAPE || DisplayOrientation != bundle.DisplayOrientation.PORTRAIT @@ -306,8 +262,6 @@ describe('ActsStServiceAbilityTest', function () { var result = context.setDisplayOrientation(bundle.DisplayOrientation.UNSPECIFIED, (err) => { clearTimeout(currentAlertTimeout); - console.debug("ACTS_ASetDisplayOrientation_0100====err>" - + JSON.stringify(err) + " , err= " + err); done() } ); @@ -330,7 +284,6 @@ describe('ActsStServiceAbilityTest', function () { try { currentAlertTimeout = setTimeout(mySetTimeout, gSetTimeout); function mySetTimeout() { - console.log('ACTS_ASetDisplayOrientation_0200==== { clearTimeout(currentAlertTimeout); - console.debug("ACTS_ASetShowOnLockScreen_0100====err>" - + JSON.stringify(err) + " , err= " + err); done() } ); @@ -389,7 +340,6 @@ describe('ActsStServiceAbilityTest', function () { try { currentAlertTimeout = setTimeout(mySetTimeout, gSetTimeout); function mySetTimeout() { - console.log('ACTS_ASetShowOnLockScreen_0200====" - + JSON.stringify(err) + " , err= " + err); done() } ); @@ -479,18 +426,14 @@ describe('ActsStServiceAbilityTest', function () { console.debug("ACTS_ATestRunner_0200====>getArguments is====>" + JSON.stringify(AbilityDelegatorArgs)); console.debug("ACTS_ATestRunner_0200====bundleName>" + JSON.stringify(AbilityDelegatorArgs.bundleName)); expect(AbilityDelegatorArgs.bundleName).assertEqual(undefined) - console.debug("ACTS_ATestRunner_0200====parameters>" + JSON.stringify(AbilityDelegatorArgs.parameters)); expect(AbilityDelegatorArgs.parameters).assertEqual(undefined) console.debug("ACTS_ATestRunner_0200====testCaseNames>" + JSON.stringify(AbilityDelegatorArgs.testCaseNames)); expect(AbilityDelegatorArgs.testCaseNames).assertEqual(undefined) - console.debug("ACTS_ATestRunner_0200====testRunnerClassName>" - + JSON.stringify(AbilityDelegatorArgs.testRunnerClassName)); expect(AbilityDelegatorArgs.testRunnerClassName).assertEqual(undefined) console.debug('ACTS_ATestRunner_0200==== setTimeout(resolve, time)) } - - /** - * @tc.number: SUB_AA_OpenHarmony_StateListener_0300 - * @tc.name: Find all foreground application validations - * @tc.desc: Function test - * @tc.level 0 - */ - it("SUB_AA_OpenHarmony_StateListener_0300", 0, async function (done) { - await appManager.getForegroundApplications().then((data) => { - console.log("---appM- starting---"); - for (var i = 0; i < data.length; i++) { - if (data[i].bundleName == "com.example.statelistener") { - appbefore = data[i] - } - } - checkAppBefore(appbefore) - }).catch(()=>{ - expect().assertFail() - }) - var want = { - "bundleName": "com.example.fzgc", - "abilityName": "com.example.fzgc.MainAbility" - } - await featureAbility.startAbility({ want }).then().catch(); - await sleep(1000) - await appManager.getForegroundApplications().then((data) => { - for (var i = 0; i < data.length; i++) { - if (data[i].bundleName == "com.example.fzgc") { - appafter = data[i] - } - } - checkAppAfter(appafter) - }).catch(()=>{ - expect().assertFail() - }) - await sleep(2000) - done(); - }) - - function checkAppAfter(app) { - expect(app.state == 2).assertTrue(); - expect(app.uid > 0).assertTrue(); - expect(app.bundleName).assertEqual('com.example.fzgc'); - } - function checkAppBefore(app) { - expect(app.state == 2).assertTrue(); - expect(app.uid > 0).assertTrue(); - expect(app.bundleName).assertEqual('com.example.statelistener'); - } -}) - - - - - - +}) \ No newline at end of file diff --git a/aafwk/aafwk_standard/featureability/actsfeatureabilitytest/entry/src/main/js/test/FeatureAbilityJsunit.test.js b/aafwk/aafwk_standard/featureability/actsfeatureabilitytest/entry/src/main/js/test/FeatureAbilityJsunit.test.js index 2ea1b80016f2d233a603d9811090d48a226a5918..396606c69a16d5095dace449975ebb1c608a3e6d 100755 --- a/aafwk/aafwk_standard/featureability/actsfeatureabilitytest/entry/src/main/js/test/FeatureAbilityJsunit.test.js +++ b/aafwk/aafwk_standard/featureability/actsfeatureabilitytest/entry/src/main/js/test/FeatureAbilityJsunit.test.js @@ -2157,42 +2157,4 @@ describe('ActsFeatureAbilityTest', function () { done(); } }); - - /* - * @tc.number: ACTS_StartAbility_0100 - * @tc.name: featureAbility.getWindow : Get an ability window. - * @tc.desc: Check the return window of the interface (by AsyncCallback) - */ - it('ACTS_StartAbility_0100', 0, async function (done) { - console.log('ACTS_StartAbility_0100===={ - console.log('getWindow call back'); - done(); - }); - done(); - } catch (err) { - console.log('ACTS_StartAbility_0100==== { - console.log('testAbility0600 data: ' + JSON.stringify(data)) - expect().assertFail() - }).catch((error) => { - console.log('testAbility0600 error: ' + JSON.stringify(error)) - expect(errCode1).assertEqual(error.code) - }) - done() - }) - /* * @tc.number: SUB_AA_JsApi_Ability_0500 * @tc.name: testAblity0500. diff --git a/aafwk/aafwk_standard/setshowonlockscreen/BUILD.gn b/aafwk/aafwk_standard/setshowonlockscreen/BUILD.gn deleted file mode 100644 index e3f3bb0f2609afb6c9846570c935a61c365e66c6..0000000000000000000000000000000000000000 --- a/aafwk/aafwk_standard/setshowonlockscreen/BUILD.gn +++ /dev/null @@ -1,24 +0,0 @@ -# Copyright (c) 2021 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("//test/xts/tools/build/suite.gni") - -group("setshowonlockscreen") { - testonly = true - if (is_standard_system) { - deps = [ - "setshowonlock:ActsSetshowonlockTest", - "showsethown:ActsShowsethownTest", - ] - } -} diff --git a/aafwk/aafwk_standard/setshowonlockscreen/setshowonlock/BUILD.gn b/aafwk/aafwk_standard/setshowonlockscreen/setshowonlock/BUILD.gn deleted file mode 100644 index 61d77d7c97372a6edfbc7af4041100c14a2da9c2..0000000000000000000000000000000000000000 --- a/aafwk/aafwk_standard/setshowonlockscreen/setshowonlock/BUILD.gn +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright (c) 2021 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("//test/xts/tools/build/suite.gni") - -ohos_js_hap_suite("ActsSetshowonlockTest") { - hap_profile = "./entry/src/main/config.json" - deps = [ - ":hjs_demo_js_assets", - ":hjs_demo_resources", - ] - certificate_profile = "./signature/openharmony_sx.p7b" - hap_name = "ActsSetshowonlockTest" -} -ohos_js_assets("hjs_demo_js_assets") { - source_dir = "./entry/src/main/js/default" -} -ohos_resources("hjs_demo_resources") { - sources = [ "./entry/src/main/js/resources" ] - hap_profile = "./entry/src/main/config.json" -} diff --git a/aafwk/aafwk_standard/setshowonlockscreen/setshowonlock/Test.json b/aafwk/aafwk_standard/setshowonlockscreen/setshowonlock/Test.json deleted file mode 100644 index 26909f2889de98a479f076f87725fed805c7a343..0000000000000000000000000000000000000000 --- a/aafwk/aafwk_standard/setshowonlockscreen/setshowonlock/Test.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "description": "Configuration for hjunit demo Tests", -} - diff --git a/aafwk/aafwk_standard/setshowonlockscreen/setshowonlock/entry/src/main/config.json b/aafwk/aafwk_standard/setshowonlockscreen/setshowonlock/entry/src/main/config.json deleted file mode 100644 index 6472499ea06593935e5d31c9d08736ab5f5345ce..0000000000000000000000000000000000000000 --- a/aafwk/aafwk_standard/setshowonlockscreen/setshowonlock/entry/src/main/config.json +++ /dev/null @@ -1,83 +0,0 @@ -{ - "app": { - "bundleName": "com.example.setshowonlock", - "vendor": "example", - "version": { - "code": 1, - "name": "1.0" - }, - "apiVersion": { - "compatible": 4, - "target": 5, - "releaseType": "Beta1" - } - }, - "deviceConfig": {}, - "module": { - "package": "com.example.setshowonlock", - "name": ".MyApplication", - "deviceType": [ - "phone" - ], - "distro": { - "deliveryWithInstall": true, - "moduleName": "entry", - "moduleType": "entry" - }, - "abilities": [ - { - "skills": [ - { - "entities": [ - "entity.system.home" - ], - "actions": [ - "action.system.home" - ] - } - ], - "name": "com.example.setshowonlock.MainAbility", - "icon": "$media:icon", - "description": "$string:mainability_description", - "label": "$string:app_name", - "type": "page", - "launchType": "standard", - "visible": true - } - ], - "reqPermissions": [ - { - "name": "ohos.permission.INSTALL_BUNDLE", - "reason": "need use ohos.permission.INSTALL_BUNDLE" - }, - { - "name":"ohos.permission.GET_BUNDLE_INFO_PRIVILEGED", - "reason":"need use ohos.permission.GET_BUNDLE_INFO_PRIVILEGED" - }, - { - "name":"ohos.permission.CHANGE_ABILITY_ENABLED_STATE", - "reason":"need use ohos.permission.CHANGE_ABILITY_ENABLED_STATE" - }, - { - "name":"ohos.permission.REMOVE_CACHE_FILES", - "reason":"need use ohos.permission.REMOVE_CACHE_FILES" - }, - { - "name":"ohos.permission.LISTEN_BUNDLE_CHANGE", - "reason":"need use ohos.permission.LISTEN_BUNDLE_CHANGE" - } - ], - "js": [ - { - "pages": [ - "pages/index/index" - ], - "name": "default", - "window": { - "designWidth": 720, - "autoDesignWidth": false - } - } - ] - } -} \ No newline at end of file diff --git a/aafwk/aafwk_standard/setshowonlockscreen/setshowonlock/entry/src/main/js/default/app.js b/aafwk/aafwk_standard/setshowonlockscreen/setshowonlock/entry/src/main/js/default/app.js deleted file mode 100644 index 2a68c1992145a976957d7dcdd69a7e9c2e8e9877..0000000000000000000000000000000000000000 --- a/aafwk/aafwk_standard/setshowonlockscreen/setshowonlock/entry/src/main/js/default/app.js +++ /dev/null @@ -1,22 +0,0 @@ -/* - * Copyright (c) 2021 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. - */ -export default { - onCreate() { - console.info('AceApplication onCreate'); - }, - onDestroy() { - console.info('AceApplication onDestroy'); - } -}; diff --git a/aafwk/aafwk_standard/setshowonlockscreen/setshowonlock/entry/src/main/js/default/i18n/en-US.json b/aafwk/aafwk_standard/setshowonlockscreen/setshowonlock/entry/src/main/js/default/i18n/en-US.json deleted file mode 100644 index e63c70d978a3a53be988388c87182f81785e170c..0000000000000000000000000000000000000000 --- a/aafwk/aafwk_standard/setshowonlockscreen/setshowonlock/entry/src/main/js/default/i18n/en-US.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "strings": { - "hello": "Hello", - "world": "World" - } -} \ No newline at end of file diff --git a/aafwk/aafwk_standard/setshowonlockscreen/setshowonlock/entry/src/main/js/default/i18n/zh-CN.json b/aafwk/aafwk_standard/setshowonlockscreen/setshowonlock/entry/src/main/js/default/i18n/zh-CN.json deleted file mode 100644 index de6ee5748322f44942c1b003319d8e66c837675f..0000000000000000000000000000000000000000 --- a/aafwk/aafwk_standard/setshowonlockscreen/setshowonlock/entry/src/main/js/default/i18n/zh-CN.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "strings": { - "hello": "您好", - "world": "世界" - } -} \ No newline at end of file diff --git a/aafwk/aafwk_standard/setshowonlockscreen/setshowonlock/entry/src/main/js/default/pages/index/index.css b/aafwk/aafwk_standard/setshowonlockscreen/setshowonlock/entry/src/main/js/default/pages/index/index.css deleted file mode 100644 index 6fda792753f2e15f22b529c7b90a82185b2770bf..0000000000000000000000000000000000000000 --- a/aafwk/aafwk_standard/setshowonlockscreen/setshowonlock/entry/src/main/js/default/pages/index/index.css +++ /dev/null @@ -1,9 +0,0 @@ -.container { - flex-direction: column; - justify-content: center; - align-items: center; -} - -.title { - font-size: 100px; -} diff --git a/aafwk/aafwk_standard/setshowonlockscreen/setshowonlock/entry/src/main/js/default/pages/index/index.hml b/aafwk/aafwk_standard/setshowonlockscreen/setshowonlock/entry/src/main/js/default/pages/index/index.hml deleted file mode 100644 index f64b040a5ae394dbaa5e185e1ecd4f4556b92184..0000000000000000000000000000000000000000 --- a/aafwk/aafwk_standard/setshowonlockscreen/setshowonlock/entry/src/main/js/default/pages/index/index.hml +++ /dev/null @@ -1,5 +0,0 @@ -
- - {{ $t('strings.hello') }} {{ title }} - -
diff --git a/aafwk/aafwk_standard/setshowonlockscreen/setshowonlock/entry/src/main/js/default/pages/index/index.js b/aafwk/aafwk_standard/setshowonlockscreen/setshowonlock/entry/src/main/js/default/pages/index/index.js deleted file mode 100644 index 9ddbdc804cd52566ea1d793500c7b94d595e3122..0000000000000000000000000000000000000000 --- a/aafwk/aafwk_standard/setshowonlockscreen/setshowonlock/entry/src/main/js/default/pages/index/index.js +++ /dev/null @@ -1,46 +0,0 @@ -/* - * Copyright (c) 2021 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 featureAbility from '@ohos.ability.featureAbility' -export default { - data: { - title: "" - }, - onInit() { - this.title = this.$t('strings.world'); - - featureAbility.setShowOnLockScreen(false,(error, data) => { - console.log('FeatureAbilityTestCallBack ACTS_setShowOnLockScreen_0100 Called.' + ' error ' + error.code ) - }); - console.log('ZLM-----onClick1 end'); - }, - - onStart(want){ - - this.title = this.$t('strings.world'); - - featureAbility.setShowOnLockScreen(false,(error, data) => { - console.log('FeatureAbilityTestCallBack ACTS_setShowOnLockScreen_0100 Called.' + ' error ' + error.code ) - }); - console.log('ZLM-----onClick2 end'); - }, - onShow(){ - this.title = this.$t('strings.world'); - - featureAbility.setShowOnLockScreen(false,(error, data) => { - console.log('FeatureAbilityTestCallBack ACTS_setShowOnLockScreen_0100 Called.' + ' error ' + error.code ) - }); - console.log('ZLM-----onClick3 end'); - } -} diff --git a/aafwk/aafwk_standard/setshowonlockscreen/setshowonlock/entry/src/main/js/resources/base/element/string.json b/aafwk/aafwk_standard/setshowonlockscreen/setshowonlock/entry/src/main/js/resources/base/element/string.json deleted file mode 100644 index 7d05253caf78df35bca24351d536c15da41334ab..0000000000000000000000000000000000000000 --- a/aafwk/aafwk_standard/setshowonlockscreen/setshowonlock/entry/src/main/js/resources/base/element/string.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "string": [ - { - "name": "app_name", - "value": "setShowOnLock" - }, - { - "name": "mainability_description", - "value": "JS_Phone_Empty Feature Ability" - } - ] -} \ No newline at end of file diff --git a/aafwk/aafwk_standard/setshowonlockscreen/setshowonlock/entry/src/main/js/resources/base/media/icon.png b/aafwk/aafwk_standard/setshowonlockscreen/setshowonlock/entry/src/main/js/resources/base/media/icon.png deleted file mode 100644 index ce307a8827bd75456441ceb57d530e4c8d45d36c..0000000000000000000000000000000000000000 Binary files a/aafwk/aafwk_standard/setshowonlockscreen/setshowonlock/entry/src/main/js/resources/base/media/icon.png and /dev/null differ diff --git a/aafwk/aafwk_standard/setshowonlockscreen/setshowonlock/signature/openharmony_sx.p7b b/aafwk/aafwk_standard/setshowonlockscreen/setshowonlock/signature/openharmony_sx.p7b deleted file mode 100644 index 66b4457a8a81fb8d3356cf46d67226c850944858..0000000000000000000000000000000000000000 Binary files a/aafwk/aafwk_standard/setshowonlockscreen/setshowonlock/signature/openharmony_sx.p7b and /dev/null differ diff --git a/aafwk/aafwk_standard/setshowonlockscreen/showsethown/BUILD.gn b/aafwk/aafwk_standard/setshowonlockscreen/showsethown/BUILD.gn deleted file mode 100644 index 18ce39802e4cbb6a0847cf7efab1ba81342351f9..0000000000000000000000000000000000000000 --- a/aafwk/aafwk_standard/setshowonlockscreen/showsethown/BUILD.gn +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright (c) 2021 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("//test/xts/tools/build/suite.gni") - -ohos_js_hap_suite("ActsShowsethownTest") { - hap_profile = "./entry/src/main/config.json" - deps = [ - ":hjs_demo_js_assets", - ":hjs_demo_resources", - ] - certificate_profile = "./signature/openharmony_sx.p7b" - hap_name = "ActsShowsethownTest" -} -ohos_js_assets("hjs_demo_js_assets") { - source_dir = "./entry/src/main/js/default" -} -ohos_resources("hjs_demo_resources") { - sources = [ "./entry/src/main/js/resources" ] - hap_profile = "./entry/src/main/config.json" -} diff --git a/aafwk/aafwk_standard/setshowonlockscreen/showsethown/Test.json b/aafwk/aafwk_standard/setshowonlockscreen/showsethown/Test.json deleted file mode 100644 index 26909f2889de98a479f076f87725fed805c7a343..0000000000000000000000000000000000000000 --- a/aafwk/aafwk_standard/setshowonlockscreen/showsethown/Test.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "description": "Configuration for hjunit demo Tests", -} - diff --git a/aafwk/aafwk_standard/setshowonlockscreen/showsethown/entry/src/main/config.json b/aafwk/aafwk_standard/setshowonlockscreen/showsethown/entry/src/main/config.json deleted file mode 100644 index 4d411276c5c828334f2b8a3fa9612eb4fd68b35d..0000000000000000000000000000000000000000 --- a/aafwk/aafwk_standard/setshowonlockscreen/showsethown/entry/src/main/config.json +++ /dev/null @@ -1,83 +0,0 @@ -{ - "app": { - "bundleName": "com.example.showsethown", - "vendor": "example", - "version": { - "code": 1, - "name": "1.0" - }, - "apiVersion": { - "compatible": 4, - "target": 5, - "releaseType": "Beta1" - } - }, - "deviceConfig": {}, - "module": { - "package": "com.example.showsethown", - "name": ".MyApplication", - "deviceType": [ - "phone" - ], - "distro": { - "deliveryWithInstall": true, - "moduleName": "entry", - "moduleType": "entry" - }, - "abilities": [ - { - "skills": [ - { - "entities": [ - "entity.system.home" - ], - "actions": [ - "action.system.home" - ] - } - ], - "name": "com.example.showsethown.MainAbility", - "icon": "$media:icon", - "description": "$string:mainability_description", - "label": "$string:app_name", - "type": "page", - "launchType": "standard", - "visible":true - } - ], - "reqPermissions": [ - { - "name": "ohos.permission.INSTALL_BUNDLE", - "reason": "need use ohos.permission.INSTALL_BUNDLE" - }, - { - "name":"ohos.permission.GET_BUNDLE_INFO_PRIVILEGED", - "reason":"need use ohos.permission.GET_BUNDLE_INFO_PRIVILEGED" - }, - { - "name":"ohos.permission.CHANGE_ABILITY_ENABLED_STATE", - "reason":"need use ohos.permission.CHANGE_ABILITY_ENABLED_STATE" - }, - { - "name":"ohos.permission.REMOVE_CACHE_FILES", - "reason":"need use ohos.permission.REMOVE_CACHE_FILES" - }, - { - "name":"ohos.permission.LISTEN_BUNDLE_CHANGE", - "reason":"need use ohos.permission.LISTEN_BUNDLE_CHANGE" - } - ], - "js": [ - { - "pages": [ - "pages/index/index" - ], - "name": "default", - "window": { - "designWidth": 720, - "autoDesignWidth": false - } - } - ] - } -} \ No newline at end of file diff --git a/aafwk/aafwk_standard/setshowonlockscreen/showsethown/entry/src/main/js/default/app.js b/aafwk/aafwk_standard/setshowonlockscreen/showsethown/entry/src/main/js/default/app.js deleted file mode 100644 index 2a68c1992145a976957d7dcdd69a7e9c2e8e9877..0000000000000000000000000000000000000000 --- a/aafwk/aafwk_standard/setshowonlockscreen/showsethown/entry/src/main/js/default/app.js +++ /dev/null @@ -1,22 +0,0 @@ -/* - * Copyright (c) 2021 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. - */ -export default { - onCreate() { - console.info('AceApplication onCreate'); - }, - onDestroy() { - console.info('AceApplication onDestroy'); - } -}; diff --git a/aafwk/aafwk_standard/setshowonlockscreen/showsethown/entry/src/main/js/default/i18n/en-US.json b/aafwk/aafwk_standard/setshowonlockscreen/showsethown/entry/src/main/js/default/i18n/en-US.json deleted file mode 100644 index e63c70d978a3a53be988388c87182f81785e170c..0000000000000000000000000000000000000000 --- a/aafwk/aafwk_standard/setshowonlockscreen/showsethown/entry/src/main/js/default/i18n/en-US.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "strings": { - "hello": "Hello", - "world": "World" - } -} \ No newline at end of file diff --git a/aafwk/aafwk_standard/setshowonlockscreen/showsethown/entry/src/main/js/default/i18n/zh-CN.json b/aafwk/aafwk_standard/setshowonlockscreen/showsethown/entry/src/main/js/default/i18n/zh-CN.json deleted file mode 100644 index de6ee5748322f44942c1b003319d8e66c837675f..0000000000000000000000000000000000000000 --- a/aafwk/aafwk_standard/setshowonlockscreen/showsethown/entry/src/main/js/default/i18n/zh-CN.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "strings": { - "hello": "您好", - "world": "世界" - } -} \ No newline at end of file diff --git a/aafwk/aafwk_standard/setshowonlockscreen/showsethown/entry/src/main/js/default/pages/index/index.css b/aafwk/aafwk_standard/setshowonlockscreen/showsethown/entry/src/main/js/default/pages/index/index.css deleted file mode 100644 index 6fda792753f2e15f22b529c7b90a82185b2770bf..0000000000000000000000000000000000000000 --- a/aafwk/aafwk_standard/setshowonlockscreen/showsethown/entry/src/main/js/default/pages/index/index.css +++ /dev/null @@ -1,9 +0,0 @@ -.container { - flex-direction: column; - justify-content: center; - align-items: center; -} - -.title { - font-size: 100px; -} diff --git a/aafwk/aafwk_standard/setshowonlockscreen/showsethown/entry/src/main/js/default/pages/index/index.hml b/aafwk/aafwk_standard/setshowonlockscreen/showsethown/entry/src/main/js/default/pages/index/index.hml deleted file mode 100644 index f64b040a5ae394dbaa5e185e1ecd4f4556b92184..0000000000000000000000000000000000000000 --- a/aafwk/aafwk_standard/setshowonlockscreen/showsethown/entry/src/main/js/default/pages/index/index.hml +++ /dev/null @@ -1,5 +0,0 @@ -
- - {{ $t('strings.hello') }} {{ title }} - -
diff --git a/aafwk/aafwk_standard/setshowonlockscreen/showsethown/entry/src/main/js/default/pages/index/index.js b/aafwk/aafwk_standard/setshowonlockscreen/showsethown/entry/src/main/js/default/pages/index/index.js deleted file mode 100644 index 7089efd8f8488f66a80fc56699bfc0e15183dd13..0000000000000000000000000000000000000000 --- a/aafwk/aafwk_standard/setshowonlockscreen/showsethown/entry/src/main/js/default/pages/index/index.js +++ /dev/null @@ -1,31 +0,0 @@ -/* - * Copyright (c) 2021 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 featureAbility from '@ohos.ability.featureAbility' -export default { - data: { - title: '' - }, - onInit() { - console.info('onInit'); - }, - onStart(want){ - console.info('onStart'); - }, - onShow(){ - console.info('onShow'); - } - } - - diff --git a/aafwk/aafwk_standard/setshowonlockscreen/showsethown/entry/src/main/js/resources/base/element/string.json b/aafwk/aafwk_standard/setshowonlockscreen/showsethown/entry/src/main/js/resources/base/element/string.json deleted file mode 100644 index 6b50e75dd0b544b418dc3b99093d15a6ab314105..0000000000000000000000000000000000000000 --- a/aafwk/aafwk_standard/setshowonlockscreen/showsethown/entry/src/main/js/resources/base/element/string.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "string": [ - { - "name": "app_name", - "value": "ShowSetHOWN" - }, - { - "name": "mainability_description", - "value": "JS_Phone_Empty Feature Ability" - } - ] -} \ No newline at end of file diff --git a/aafwk/aafwk_standard/setshowonlockscreen/showsethown/entry/src/main/js/resources/base/media/icon.png b/aafwk/aafwk_standard/setshowonlockscreen/showsethown/entry/src/main/js/resources/base/media/icon.png deleted file mode 100644 index ce307a8827bd75456441ceb57d530e4c8d45d36c..0000000000000000000000000000000000000000 Binary files a/aafwk/aafwk_standard/setshowonlockscreen/showsethown/entry/src/main/js/resources/base/media/icon.png and /dev/null differ diff --git a/aafwk/aafwk_standard/setshowonlockscreen/showsethown/signature/openharmony_sx.p7b b/aafwk/aafwk_standard/setshowonlockscreen/showsethown/signature/openharmony_sx.p7b deleted file mode 100644 index 66b4457a8a81fb8d3356cf46d67226c850944858..0000000000000000000000000000000000000000 Binary files a/aafwk/aafwk_standard/setshowonlockscreen/showsethown/signature/openharmony_sx.p7b and /dev/null differ diff --git a/aafwk/aafwk_standard/want/sceneProject/actsgetwantalltesthap/src/main/js/default/pages/index/index.js b/aafwk/aafwk_standard/want/sceneProject/actsgetwantalltesthap/src/main/js/default/pages/index/index.js index 510a67390f12569e4cfcb45f4b780930025fb849..0d1367ad5dc9d3f893810012340c00c7afb812b9 100755 --- a/aafwk/aafwk_standard/want/sceneProject/actsgetwantalltesthap/src/main/js/default/pages/index/index.js +++ b/aafwk/aafwk_standard/want/sceneProject/actsgetwantalltesthap/src/main/js/default/pages/index/index.js @@ -60,4 +60,4 @@ export default { onReady() { console.info('onReady'); }, -} +} \ No newline at end of file