diff --git a/appexecfwk/bundle_standard/bundlemanager/actsbmsgetinfostest/entry/src/main/js/test/ActsBmsQueryAbilityByWant.test.js b/appexecfwk/bundle_standard/bundlemanager/actsbmsgetinfostest/entry/src/main/js/test/ActsBmsQueryAbilityByWant.test.js index 9dff8ec565fcfddd893218543f05194ae51b8eb7..baedfeb37672aca3c2b89220fdea959f3d487a5a 100644 --- a/appexecfwk/bundle_standard/bundlemanager/actsbmsgetinfostest/entry/src/main/js/test/ActsBmsQueryAbilityByWant.test.js +++ b/appexecfwk/bundle_standard/bundlemanager/actsbmsgetinfostest/entry/src/main/js/test/ActsBmsQueryAbilityByWant.test.js @@ -158,7 +158,7 @@ describe('ActsBmsQueryAbilityByWant', function () { expect(data.permissions.length).assertEqual(0); expect(data.deviceCapabilities.length).assertEqual(0); expect(data.deviceTypes[0]).assertEqual('phone'); - expect(data.process).assertEqual(''); + expect(data.process).assertEqual(SYSTEM_NAME); expect(data.uri).assertEqual(''); expect(data.bundleName).assertEqual(SYSTEM_NAME); expect(data.moduleName).assertEqual("entry"); diff --git a/appexecfwk/bundle_standard/bundlemanager/actsbmsjstest/entry/src/main/js/test/ActsBmsJsTest.test.js b/appexecfwk/bundle_standard/bundlemanager/actsbmsjstest/entry/src/main/js/test/ActsBmsJsTest.test.js index eca9b0352fc5411c4bd48de740d47e9811d97acf..0024be2ec8a2348872d0e51a5c61def81bab1663 100644 --- a/appexecfwk/bundle_standard/bundlemanager/actsbmsjstest/entry/src/main/js/test/ActsBmsJsTest.test.js +++ b/appexecfwk/bundle_standard/bundlemanager/actsbmsjstest/entry/src/main/js/test/ActsBmsJsTest.test.js @@ -54,7 +54,7 @@ describe('ActsBmsJsTest', function () { expect(abilityInfo1.isVisible).assertEqual(true); expect(abilityInfo1.permissions.length).assertEqual(0); expect(abilityInfo1.deviceTypes[0]).assertEqual('phone'); - expect(abilityInfo1.process).assertEqual(""); + expect(abilityInfo1.process).assertEqual(BUNDLE_NAME2); expect(abilityInfo1.uri).assertEqual(""); expect(abilityInfo1.bundleName).assertEqual(BUNDLE_NAME2); expect(abilityInfo1.moduleName).assertEqual("entry"); @@ -130,7 +130,7 @@ describe('ActsBmsJsTest', function () { expect(abilityInfo1.isVisible).assertEqual(true); expect(abilityInfo1.permissions.length).assertEqual(0); expect(abilityInfo1.deviceTypes[0]).assertEqual('phone'); - expect(abilityInfo1.process).assertEqual(""); + expect(abilityInfo1.process).assertEqual(BUNDLE_NAME4); expect(abilityInfo1.uri).assertEqual(""); expect(abilityInfo1.bundleName).assertEqual(BUNDLE_NAME4); expect(abilityInfo1.moduleName).assertEqual("entry"); @@ -173,7 +173,7 @@ describe('ActsBmsJsTest', function () { expect(abilityInfo1.isVisible).assertEqual(true); expect(abilityInfo1.permissions.length).assertEqual(0); expect(abilityInfo1.deviceTypes[0]).assertEqual('phone'); - expect(abilityInfo1.process).assertEqual(""); + expect(abilityInfo1.process).assertEqual(BUNDLE_NAME5); expect(abilityInfo1.uri).assertEqual(""); expect(abilityInfo1.bundleName).assertEqual(BUNDLE_NAME5); expect(abilityInfo1.moduleName).assertEqual("entry"); @@ -205,7 +205,7 @@ describe('ActsBmsJsTest', function () { expect(info.isVisible).assertEqual(true); expect(info.permissions.length).assertEqual(0); expect(info.deviceTypes[0]).assertEqual('phone'); - expect(info.process).assertEqual(""); + expect(info.process).assertEqual(BUNDLE_NAME3); expect(info.uri).assertEqual(""); expect(info.bundleName).assertEqual(BUNDLE_NAME3); expect(info.moduleName).assertEqual("entry"); diff --git a/appexecfwk/bundle_standard/bundlemanager/actsbundlemanageretstest/entry/src/main/config.json b/appexecfwk/bundle_standard/bundlemanager/actsbundlemanageretstest/entry/src/main/config.json index c1f3fe81614fc7615836b5d71530bbe5d20f2c1d..2afbbbbda5d133c02390d1640aaa7622f2b90eb4 100644 --- a/appexecfwk/bundle_standard/bundlemanager/actsbundlemanageretstest/entry/src/main/config.json +++ b/appexecfwk/bundle_standard/bundlemanager/actsbundlemanageretstest/entry/src/main/config.json @@ -85,6 +85,7 @@ "autoDesignWidth": false } } - ] + ], + "description":"$string:entry_description" } } \ No newline at end of file diff --git a/appexecfwk/bundle_standard/bundlemanager/actsbundlemanageretstest/entry/src/main/ets/MainAbility/test/GetabilityInfo.test.ets b/appexecfwk/bundle_standard/bundlemanager/actsbundlemanageretstest/entry/src/main/ets/MainAbility/test/GetabilityInfo.test.ets index 4d82cc522c4e9028c059f18776d608cbd6b8d4d0..c6721e832e5e2bc247e02b63fe8905cd681b0aa6 100644 --- a/appexecfwk/bundle_standard/bundlemanager/actsbundlemanageretstest/entry/src/main/ets/MainAbility/test/GetabilityInfo.test.ets +++ b/appexecfwk/bundle_standard/bundlemanager/actsbundlemanageretstest/entry/src/main/ets/MainAbility/test/GetabilityInfo.test.ets @@ -232,7 +232,7 @@ export default function GetabilityInfo() { expect(Array.isArray(data.deviceCapabilities)).assertEqual(true); expect(data.deviceTypes[0]).assertEqual("phone"); expect(typeof (data.process)).assertEqual("string"); - expect(data.process).assertEqual(""); + expect(data.process).assertEqual("com.open.harmony.packagemag"); expect(typeof (data.uri)).assertEqual("string"); expect(data.uri).assertEqual(""); expect(data.moduleName).assertEqual("entry"); @@ -251,7 +251,7 @@ export default function GetabilityInfo() { expect(typeof (info.accessTokenId)).assertEqual("number"); expect(info.accessTokenId > 0).assertTrue(); expect(typeof (info.description)).assertEqual("string"); - expect(info.description).assertEqual("$string:mainability_description"); + expect(info.description).assertEqual("$string:entry_description"); expect(typeof (info.descriptionId)).assertEqual("number"); expect(info.descriptionId > 0).assertTrue(); expect(typeof (info.icon)).assertEqual("string"); @@ -268,7 +268,7 @@ export default function GetabilityInfo() { expect(typeof (info.supportedModes)).assertEqual("number"); expect(info.supportedModes).assertEqual(0); expect(typeof (info.process)).assertEqual("string"); - expect(info.process).assertEqual(""); + expect(info.process).assertEqual("com.open.harmony.packagemag"); expect(Array.isArray(info.moduleSourceDirs)).assertEqual(true); expect(info.moduleSourceDirs[0]).assertEqual("/data/app/el1/bundle/public/com.open.harmony.packagemag/com.open.harmony.packagemag"); expect(Array.isArray(info.permissions)).assertEqual(true); @@ -282,7 +282,7 @@ export default function GetabilityInfo() { expect(data.icon).assertEqual("$media:icon"); expect(data.isVisible).assertEqual(true); expect(data.deviceTypes[0]).assertEqual("phone"); - expect(data.process).assertEqual(""); + expect(data.process).assertEqual("com.example.third1"); expect(data.uri).assertEqual(""); expect(data.moduleName).assertEqual("entry"); expect(data.type).assertEqual(1); @@ -308,7 +308,7 @@ export default function GetabilityInfo() { expect(info.name).assertEqual("com.example.third1"); expect(info.codePath).assertEqual("/data/app/el1/bundle/public/com.example.third1"); expect(info.accessTokenId > 0).assertTrue(); - expect(info.description).assertEqual("$string:mainability_description"); + expect(info.description).assertEqual("$string:entry_description"); expect(info.descriptionId > 0).assertTrue(); expect(info.icon).assertEqual("$media:icon"); expect(info.iconId > 0).assertTrue(); @@ -317,7 +317,7 @@ export default function GetabilityInfo() { expect(info.systemApp).assertEqual(false); expect(info.entryDir).assertEqual("/data/app/el1/bundle/public/com.example.third1/com.example.third1.entry"); expect(info.supportedModes).assertEqual(0); - expect(info.process).assertEqual(""); + expect(info.process).assertEqual("com.example.third1"); expect(info.moduleSourceDirs[0]).assertEqual("/data/app/el1/bundle/public/com.example.third1/com.example.third1.entry"); expect(JSON.stringify(info.metaData)).assertEqual("{}"); expect(JSON.stringify(info.metadata)).assertEqual("{}"); diff --git a/appexecfwk/bundle_standard/bundlemanager/actsbundlemanageretstest/entry/src/main/ets/MainAbility/test/getAllApplicationInfoJsunit.test.ets b/appexecfwk/bundle_standard/bundlemanager/actsbundlemanageretstest/entry/src/main/ets/MainAbility/test/getAllApplicationInfoJsunit.test.ets index e7b321b1c8a552e3eb682cc4b0858ad1fc85e393..507ac5d92b935eeffa51514448467fc0291bf9ee 100644 --- a/appexecfwk/bundle_standard/bundlemanager/actsbundlemanageretstest/entry/src/main/ets/MainAbility/test/getAllApplicationInfoJsunit.test.ets +++ b/appexecfwk/bundle_standard/bundlemanager/actsbundlemanageretstest/entry/src/main/ets/MainAbility/test/getAllApplicationInfoJsunit.test.ets @@ -305,7 +305,7 @@ export default function applicationBundleJsunit() { console.info(msg + JSON.stringify(data[i])); expect(data[i].name).assertEqual('com.open.harmony.packagemag'); expect(data[i].codePath).assertEqual('/data/app/el1/bundle/public/com.open.harmony.packagemag'); - expect(data[i].description).assertEqual('$string:mainability_description'); + expect(data[i].description).assertEqual('$string:entry_description'); if (data[i].descriptionId !== 0) { expect(data[i].descriptionId > 0).assertEqual(true); } @@ -321,7 +321,7 @@ export default function applicationBundleJsunit() { }; expect(data[i].systemApp).assertEqual(true); expect(data[i].supportedModes).assertEqual(0); - expect(data[i].process).assertEqual(""); + expect(data[i].process).assertEqual('com.open.harmony.packagemag'); expect(data[i].entryDir).assertEqual('/data/app/el1/bundle/public/com.open.harmony.packagemag' + '/com.open.harmony.packagemag'); expect(data[i].enabled).assertEqual(true); diff --git a/appexecfwk/bundle_standard/bundlemanager/actsbundlemanageretstest/entry/src/main/ets/MainAbility/test/getApplicationInfoJsunit.test.ets b/appexecfwk/bundle_standard/bundlemanager/actsbundlemanageretstest/entry/src/main/ets/MainAbility/test/getApplicationInfoJsunit.test.ets index 2948d6ccf7c4724acca3987731e25e5a588398a1..0b3d9170de1b5a01fecc75636c5e08a071efc93a 100644 --- a/appexecfwk/bundle_standard/bundlemanager/actsbundlemanageretstest/entry/src/main/ets/MainAbility/test/getApplicationInfoJsunit.test.ets +++ b/appexecfwk/bundle_standard/bundlemanager/actsbundlemanageretstest/entry/src/main/ets/MainAbility/test/getApplicationInfoJsunit.test.ets @@ -372,7 +372,7 @@ export default function applicationBundleJsunit() { expect(data.name).assertEqual('com.open.harmony.packagemag'); expect(data.codePath).assertEqual('/data/app/el1/bundle/public/com.open.harmony.packagemag'); expect(data.accessTokenId > 0).assertEqual(true); - expect(data.description).assertEqual('$string:mainability_description'); + expect(data.description).assertEqual('$string:entry_description'); expect(data.descriptionId > 0).assertEqual(true); expect(data.icon).assertEqual('$media:icon'); expect(data.iconId > 0).assertEqual(true); @@ -381,7 +381,7 @@ export default function applicationBundleJsunit() { expect(data.labelId > 0).assertEqual(true); expect(data.systemApp).assertEqual(true); expect(data.supportedModes).assertEqual(0); - expect(data.process).assertEqual(""); + expect(data.process).assertEqual('com.open.harmony.packagemag'); expect(data.entryDir).assertEqual('/data/app/el1/bundle/public/com.open.harmony.packagemag' + '/com.open.harmony.packagemag'); expect(data.enabled).assertEqual(true); @@ -402,7 +402,7 @@ export default function applicationBundleJsunit() { expect(data.name).assertEqual('com.open.harmony.packagemag'); expect(data.codePath).assertEqual('/data/app/el1/bundle/public/com.open.harmony.packagemag'); expect(data.accessTokenId > 0).assertEqual(true); - expect(data.description).assertEqual('$string:mainability_description'); + expect(data.description).assertEqual('$string:entry_description'); expect(data.descriptionId > 0).assertEqual(true); expect(data.icon).assertEqual('$media:icon'); expect(data.iconId > 0).assertEqual(true); @@ -411,7 +411,7 @@ export default function applicationBundleJsunit() { expect(data.labelId > 0).assertEqual(true); expect(data.systemApp).assertEqual(true); expect(data.supportedModes).assertEqual(0); - expect(data.process).assertEqual(""); + expect(data.process).assertEqual('com.open.harmony.packagemag'); expect(data.entryDir).assertEqual('/data/app/el1/bundle/public/com.open.harmony.packagemag' + '/com.open.harmony.packagemag'); expect(data.enabled).assertEqual(true); diff --git a/appexecfwk/bundle_standard/bundlemanager/actsbundlemanageretstest/entry/src/main/resources/base/element/string.json b/appexecfwk/bundle_standard/bundlemanager/actsbundlemanageretstest/entry/src/main/resources/base/element/string.json index d05ef1fc2a49146771e85b9ce7221215398ce54b..dfca51c3e4cda4ee9c23357ca26df30eeeeb5559 100644 --- a/appexecfwk/bundle_standard/bundlemanager/actsbundlemanageretstest/entry/src/main/resources/base/element/string.json +++ b/appexecfwk/bundle_standard/bundlemanager/actsbundlemanageretstest/entry/src/main/resources/base/element/string.json @@ -15,6 +15,10 @@ { "name": "description_serviceability", "value": "hap sample empty service" + }, + { + "name": "entry_description", + "value": "entry_description" } ] } \ No newline at end of file diff --git a/appexecfwk/bundle_standard/bundlemanager/actsbundlemanagertest/entry/src/main/js/test/ExampleJsunit.test.js b/appexecfwk/bundle_standard/bundlemanager/actsbundlemanagertest/entry/src/main/js/test/ExampleJsunit.test.js index 18dd8e311c33c594b94867b0de61bd42d2f9c129..72a405207eeca3c845146b354d6d09021d84e960 100644 --- a/appexecfwk/bundle_standard/bundlemanager/actsbundlemanagertest/entry/src/main/js/test/ExampleJsunit.test.js +++ b/appexecfwk/bundle_standard/bundlemanager/actsbundlemanagertest/entry/src/main/js/test/ExampleJsunit.test.js @@ -30,6 +30,7 @@ const DIR1 = "/data/app/el1/bundle/public/com.example.myapplication1/com.example const DIR2 = "/data/app/el1/bundle/public/com.example.myapplication2/com.example.myapplication2" const DIR3 = "/data/app/el1/bundle/public/com.example.myapplication2/com.example.myapplication1" const DESCRIPTION = "$string:mainability_description" +const APPLICATION_DESCRIPTION = "$string:entry_description" let userId = 0; describe('ActsBundleManagerTest', function () { @@ -66,7 +67,7 @@ describe('ActsBundleManagerTest', function () { expect(datainfo.type).assertEqual(""); expect(datainfo.cpuAbi).assertEqual(""); expect(datainfo.appInfo.name).assertEqual(NAME1); - expect(datainfo.appInfo.description).assertEqual(DESCRIPTION); + expect(datainfo.appInfo.description).assertEqual(APPLICATION_DESCRIPTION); expect(datainfo.appInfo.descriptionId >= 0).assertTrue(); expect(datainfo.appInfo.icon).assertEqual("$media:icon"); expect(datainfo.appInfo.iconId >= 0).assertTrue(); @@ -83,7 +84,7 @@ describe('ActsBundleManagerTest', function () { expect(datainfo.reqPermissionDetails[0].usedScene.when).assertEqual("always"); expect(datainfo.compatibleVersion).assertEqual(5); expect(datainfo.targetVersion).assertEqual(5); - expect(datainfo.isCompressNativeLibs).assertEqual(false); + expect(datainfo.isCompressNativeLibs).assertEqual(true); for (let s = 0; s < datainfo.hapModuleInfos.length; s++) { expect(datainfo.hapModuleInfos[s].name).assertEqual("com.example.myapplication1"); expect(datainfo.hapModuleInfos[s].moduleName).assertEqual("entry"); @@ -128,7 +129,7 @@ describe('ActsBundleManagerTest', function () { expect(datainfo.reqPermissionDetails.length).assertEqual(0); expect(datainfo.extensionAbilityInfo.length).assertEqual(0); expect(datainfo.appInfo.name).assertEqual(NAME1); - expect(datainfo.appInfo.description).assertEqual(DESCRIPTION); + expect(datainfo.appInfo.description).assertEqual(APPLICATION_DESCRIPTION); expect(datainfo.appInfo.descriptionId >= 0).assertTrue(); expect(datainfo.appInfo.icon).assertEqual("$media:icon"); expect(datainfo.appInfo.iconId >= 0).assertTrue(); @@ -160,7 +161,7 @@ describe('ActsBundleManagerTest', function () { expect(datainfo.versionName).assertLarger(0); expect(datainfo.entryModuleName).assertEqual("entry"); expect(datainfo.appInfo.name).assertEqual(NAME1); - expect(datainfo.appInfo.description).assertEqual(DESCRIPTION); + expect(datainfo.appInfo.description).assertEqual(APPLICATION_DESCRIPTION); expect(datainfo.appInfo.descriptionId >= 0).assertTrue(); expect(datainfo.appInfo.icon).assertEqual("$media:icon"); expect(datainfo.appInfo.iconId >= 0).assertTrue(); @@ -187,7 +188,7 @@ describe('ActsBundleManagerTest', function () { expect(datainfo.versionName).assertLarger(0); expect(datainfo.entryModuleName).assertEqual("entry"); expect(datainfo.appInfo.name).assertEqual(NAME1); - expect(datainfo.appInfo.description).assertEqual(DESCRIPTION); + expect(datainfo.appInfo.description).assertEqual(APPLICATION_DESCRIPTION); expect(datainfo.appInfo.descriptionId >= 0).assertTrue(); expect(datainfo.appInfo.icon).assertEqual("$media:icon"); expect(datainfo.appInfo.iconId >= 0).assertTrue(); @@ -221,7 +222,7 @@ describe('ActsBundleManagerTest', function () { expect(datainfo[i].name.length).assertLarger(0); if (datainfo[i].name == NAME1 || datainfo[i].name == NAME2 || datainfo[i].name == NAME3 || datainfo[i].name == NAME4 || datainfo[i].name == NAME5) { - expect(datainfo[i].description.length).assertLarger(0); + expect(datainfo[i].description.length >= 0).assertTrue(); expect(datainfo[i].icon.length).assertLarger(0); expect(datainfo[i].label.length).assertLarger(0); } @@ -273,7 +274,7 @@ describe('ActsBundleManagerTest', function () { expect(data[i].appInfo.name.length).assertLarger(0); if (data[i].name == NAME1 || data[i].name == NAME2 || data[i].name == NAME3 || data[i].name == NAME4 || data[i].name == NAME5) { - expect(data[i].appInfo.description.length).assertLarger(0); + expect(datainfo[i].description.length >= 0).assertTrue(); expect(data[i].appInfo.icon.length).assertLarger(0); expect(data[i].appInfo.label.length).assertLarger(0); } @@ -297,7 +298,7 @@ describe('ActsBundleManagerTest', function () { expect(datainfo.moduleSourceDirs.length).assertLarger(0); expect(datainfo.moduleInfos.length).assertLarger(0); expect(datainfo.name).assertEqual(NAME1); - expect(datainfo.description).assertEqual(DESCRIPTION); + expect(datainfo.description).assertEqual(APPLICATION_DESCRIPTION); expect(datainfo.icon).assertEqual("$media:icon"); expect(datainfo.label).assertEqual("$string:app_name"); expect(datainfo.systemApp).assertEqual(true); @@ -305,7 +306,7 @@ describe('ActsBundleManagerTest', function () { expect(parseInt(datainfo.iconId)).assertLarger(0); expect(parseInt(datainfo.labelId)).assertLarger(0); expect(datainfo.supportedModes).assertEqual(0); - expect(datainfo.process).assertEqual(""); + expect(datainfo.process).assertEqual(NAME1); expect(datainfo.enabled).assertEqual(true); expect(datainfo.metaData.entry[0].name).assertEqual("metaDataName"); expect(datainfo.metaData.entry[0].value).assertEqual("metaDataValue"); @@ -336,7 +337,7 @@ describe('ActsBundleManagerTest', function () { expect(data[i].appInfo.name.length).assertLarger(0); if (data[i].name == NAME1 || data[i].name == NAME2 || data[i].name == NAME3 || data[i].name == NAME4 || data[i].name == NAME5) { - expect(data[i].appInfo.description.length).assertLarger(0); + expect(datainfo[i].description.length >= 0).assertTrue(); expect(data[i].appInfo.icon.length).assertLarger(0); expect(data[i].appInfo.label.length).assertLarger(0); } @@ -363,7 +364,7 @@ describe('ActsBundleManagerTest', function () { expect(typeof datainfo).assertEqual(OBJECT); expect(datainfo.name).assertEqual(NAME1); expect(datainfo.label).assertEqual("$string:app_name"); - expect(datainfo.description).assertEqual(DESCRIPTION); + expect(datainfo.description).assertEqual(APPLICATION_DESCRIPTION); expect(datainfo.icon).assertEqual("$media:icon"); expect(datainfo.descriptionId >= 0).assertTrue(); expect(parseInt(datainfo.iconId)).assertLarger(0); @@ -390,7 +391,7 @@ describe('ActsBundleManagerTest', function () { expect(typeof datainfo).assertEqual(OBJECT); expect(datainfo.name).assertEqual(NAME1); expect(datainfo.label).assertEqual("$string:app_name"); - expect(datainfo.description).assertEqual(DESCRIPTION); + expect(datainfo.description).assertEqual(APPLICATION_DESCRIPTION); expect(datainfo.icon).assertEqual("$media:icon"); expect(datainfo.descriptionId).assertLarger(0); expect(parseInt(datainfo.iconId)).assertLarger(0); @@ -419,7 +420,7 @@ describe('ActsBundleManagerTest', function () { expect(typeof datainfo).assertEqual(OBJECT); expect(datainfo.name).assertEqual(NAME1); expect(datainfo.label).assertEqual("$string:app_name"); - expect(datainfo.description).assertEqual(DESCRIPTION); + expect(datainfo.description).assertEqual(APPLICATION_DESCRIPTION); expect(datainfo.icon).assertEqual("$media:icon"); expect(datainfo.descriptionId).assertLarger(0); expect(parseInt(datainfo.iconId)).assertLarger(0); @@ -443,7 +444,7 @@ describe('ActsBundleManagerTest', function () { expect(datainfo.versionName).assertLarger(0); expect(datainfo.entryModuleName).assertEqual("entry"); expect(datainfo.appInfo.name).assertEqual(NAME2); - expect(datainfo.appInfo.description).assertEqual(DESCRIPTION); + expect(datainfo.appInfo.description).assertEqual(APPLICATION_DESCRIPTION); expect(datainfo.appInfo.descriptionId >= 0).assertTrue(); expect(datainfo.appInfo.icon).assertEqual("$media:icon"); expect(datainfo.appInfo.iconId >= 0).assertTrue(); @@ -467,7 +468,7 @@ describe('ActsBundleManagerTest', function () { expect(datainfo.versionName).assertLarger(0); expect(datainfo.entryModuleName).assertEqual("entry"); expect(datainfo.appInfo.name).assertEqual(NAME2); - expect(datainfo.appInfo.description).assertEqual(DESCRIPTION); + expect(datainfo.appInfo.description).assertEqual(APPLICATION_DESCRIPTION); expect(datainfo.appInfo.descriptionId >= 0).assertTrue(); expect(datainfo.appInfo.icon).assertEqual("$media:icon"); expect(datainfo.appInfo.iconId >= 0).assertTrue(); @@ -514,7 +515,7 @@ describe('ActsBundleManagerTest', function () { expect(datainfo[i].name.length).assertLarger(0); if (datainfo[i].name == NAME1 || datainfo[i].name == NAME2 || datainfo[i].name == NAME3 || datainfo[i].name == NAME4 || datainfo[i].name == NAME5) { - expect(datainfo[i].description.length).assertLarger(0); + expect(datainfo[i].description.length >= 0).assertTrue(); expect(datainfo[i].icon.length).assertLarger(0); expect(datainfo[i].label.length).assertLarger(0); } @@ -541,7 +542,7 @@ describe('ActsBundleManagerTest', function () { expect(datainfo[i].name.length).assertLarger(0); if (datainfo[i].name == NAME1 || datainfo[i].name == NAME2 || datainfo[i].name == NAME3 || datainfo[i].name == NAME4 || datainfo[i].name == NAME5) { - expect(datainfo[i].description.length).assertLarger(0); + expect(datainfo[i].description.length >= 0).assertTrue(); expect(datainfo[i].icon.length).assertLarger(0); expect(datainfo[i].label.length).assertLarger(0); } @@ -568,7 +569,7 @@ describe('ActsBundleManagerTest', function () { expect(datainfo[i].name.length).assertLarger(0); if (datainfo[i].name == NAME1 || datainfo[i].name == NAME2 || datainfo[i].name == NAME3 || datainfo[i].name == NAME4 || datainfo[i].name == NAME5) { - expect(datainfo[i].description.length).assertLarger(0); + expect(datainfo[i].description.length >= 0).assertTrue(); expect(datainfo[i].icon.length).assertLarger(0); expect(datainfo[i].label.length).assertLarger(0); } @@ -597,7 +598,7 @@ describe('ActsBundleManagerTest', function () { expect(data[i].appInfo.name.length).assertLarger(0); if (data[i].name == NAME1 || data[i].name == NAME2 || data[i].name == NAME3 || data[i].name == NAME4 || data[i].name == NAME5) { - expect(data[i].appInfo.description.length).assertLarger(0); + expect(datainfo[i].description.length >= 0).assertTrue(); expect(data[i].appInfo.icon.length).assertLarger(0); expect(data[i].appInfo.label.length).assertLarger(0); } @@ -620,7 +621,7 @@ describe('ActsBundleManagerTest', function () { expect(data[i].appInfo.name.length).assertLarger(0); if (data[i].name == NAME1 || data[i].name == NAME2 || data[i].name == NAME3 || data[i].name == NAME4 || data[i].name == NAME5) { - expect(data[i].appInfo.description.length).assertLarger(0); + expect(datainfo[i].description.length >= 0).assertTrue(); expect(data[i].appInfo.icon.length).assertLarger(0); expect(data[i].appInfo.label.length).assertLarger(0); } @@ -647,7 +648,7 @@ describe('ActsBundleManagerTest', function () { expect(datainfo.moduleSourceDirs.length).assertLarger(0); expect(datainfo.moduleInfos.length).assertLarger(0); expect(datainfo.name).assertEqual(NAME2); - expect(datainfo.description).assertEqual(DESCRIPTION); + expect(datainfo.description).assertEqual(APPLICATION_DESCRIPTION); expect(datainfo.icon).assertEqual("$media:icon"); expect(datainfo.label).assertEqual("$string:app_name"); expect(datainfo.systemApp).assertEqual(true); @@ -655,7 +656,7 @@ describe('ActsBundleManagerTest', function () { expect(datainfo.iconId >= 0).assertTrue(); expect(datainfo.labelId >= 0).assertTrue(); expect(datainfo.supportedModes).assertEqual(0); - expect(datainfo.process).assertEqual(""); + expect(datainfo.process).assertEqual(NAME2); expect(datainfo.enabled).assertEqual(true); expect(datainfo.moduleSourceDirs.length).assertLarger(0); for (let j = 0; j < datainfo.moduleInfos.length; j++) { @@ -678,7 +679,7 @@ describe('ActsBundleManagerTest', function () { expect(data[i].appInfo.name.length).assertLarger(0); if (data[i].name == NAME1 || data[i].name == NAME2 || data[i].name == NAME3 || data[i].name == NAME4 || data[i].name == NAME5) { - expect(data[i].appInfo.description.length).assertLarger(0); + expect(datainfo[i].description.length >= 0).assertTrue(); expect(data[i].appInfo.icon.length).assertLarger(0); expect(data[i].appInfo.label.length).assertLarger(0); } @@ -702,7 +703,7 @@ describe('ActsBundleManagerTest', function () { expect(data[i].appInfo.name.length).assertLarger(0); if (data[i].name == NAME1 || data[i].name == NAME2 || data[i].name == NAME3 || data[i].name == NAME4 || data[i].name == NAME5) { - expect(data[i].appInfo.description.length).assertLarger(0); + expect(datainfo[i].description.length >= 0).assertTrue(); expect(data[i].appInfo.icon.length).assertLarger(0); expect(data[i].appInfo.label.length).assertLarger(0); } @@ -730,10 +731,9 @@ describe('ActsBundleManagerTest', function () { expect(typeof datainfo).assertEqual(OBJECT); expect(datainfo.name).assertEqual(NAME2); expect(datainfo.label).assertEqual("$string:app_name"); - expect(datainfo.description).assertEqual(DESCRIPTION); expect(datainfo.icon).assertEqual("$media:icon"); expect(datainfo.name).assertEqual(NAME2); - expect(datainfo.description).assertEqual(DESCRIPTION); + expect(datainfo.description).assertEqual(APPLICATION_DESCRIPTION); expect(datainfo.descriptionId >= 0).assertTrue(); expect(datainfo.icon).assertEqual("$media:icon"); expect(datainfo.iconId >= 0).assertTrue(); @@ -757,7 +757,7 @@ describe('ActsBundleManagerTest', function () { expect(data[i].appInfo.name.length).assertLarger(0); if (data[i].name == NAME1 || data[i].name == NAME2 || data[i].name == NAME3 || data[i].name == NAME4 || data[i].name == NAME5) { - expect(data[i].appInfo.description.length).assertLarger(0); + expect(datainfo[i].description.length >= 0).assertTrue(); expect(data[i].appInfo.icon.length).assertLarger(0); expect(data[i].appInfo.label.length).assertLarger(0); } @@ -779,7 +779,7 @@ describe('ActsBundleManagerTest', function () { expect(data[i].appInfo.name.length).assertLarger(0); if (data[i].name == NAME1 || data[i].name == NAME2 || data[i].name == NAME3 || data[i].name == NAME4 || data[i].name == NAME5) { - expect(data[i].appInfo.description.length).assertLarger(0); + expect(datainfo[i].description.length >= 0).assertTrue(); expect(data[i].appInfo.icon.length).assertLarger(0); expect(data[i].appInfo.label.length).assertLarger(0); } @@ -801,7 +801,7 @@ describe('ActsBundleManagerTest', function () { expect(data[i].appInfo.name.length).assertLarger(0); if (data[i].name == NAME1 || data[i].name == NAME2 || data[i].name == NAME3 || data[i].name == NAME4 || data[i].name == NAME5) { - expect(data[i].appInfo.description.length).assertLarger(0); + expect(data[i].appInfo.description.length >= 0).assertTrue(); expect(data[i].appInfo.icon.length).assertLarger(0); expect(data[i].appInfo.label.length).assertLarger(0); } @@ -830,7 +830,7 @@ describe('ActsBundleManagerTest', function () { expect(datainfo.moduleSourceDirs.length).assertLarger(0); expect(datainfo.moduleInfos.length).assertLarger(0); expect(datainfo.name).assertEqual(NAME2); - expect(datainfo.description).assertEqual(DESCRIPTION); + expect(datainfo.description).assertEqual(APPLICATION_DESCRIPTION); expect(datainfo.icon).assertEqual("$media:icon"); expect(datainfo.label).assertEqual("$string:app_name"); expect(datainfo.systemApp).assertEqual(true); @@ -838,7 +838,7 @@ describe('ActsBundleManagerTest', function () { expect(datainfo.iconId >= 0).assertTrue(); expect(datainfo.labelId >= 0).assertTrue(); expect(datainfo.supportedModes).assertEqual(0); - expect(datainfo.process).assertEqual(""); + expect(datainfo.process).assertEqual(NAME2); expect(datainfo.enabled).assertEqual(true); expect(datainfo.moduleSourceDirs.length).assertLarger(0); for (let j = 0; j < datainfo.moduleInfos.length; j++) { @@ -1032,7 +1032,7 @@ describe('ActsBundleManagerTest', function () { expect(datainfo.launchMode).assertEqual(demo.LaunchMode.STANDARD); expect(datainfo.permissions[0]).assertEqual("com.permission.BMS_PERMISSION_CAMERA"); expect(datainfo.applicationInfo.name).assertEqual(NAME1); - expect(datainfo.applicationInfo.description).assertEqual(DESCRIPTION); + expect(datainfo.applicationInfo.description).assertEqual(APPLICATION_DESCRIPTION); expect(datainfo.applicationInfo.descriptionId >= 0).assertTrue(); expect(datainfo.applicationInfo.icon).assertEqual("$media:icon"); expect(datainfo.applicationInfo.iconId >= 0).assertTrue(); @@ -1077,7 +1077,7 @@ describe('ActsBundleManagerTest', function () { expect(datainfo.orientation).assertEqual(1); expect(datainfo.launchMode).assertEqual(demo.LaunchMode.SINGLETON); expect(datainfo.applicationInfo.name).assertEqual(NAME2); - expect(datainfo.applicationInfo.description).assertEqual(DESCRIPTION); + expect(datainfo.applicationInfo.description).assertEqual(APPLICATION_DESCRIPTION); expect(datainfo.applicationInfo.descriptionId >= 0).assertTrue(); expect(datainfo.applicationInfo.icon).assertEqual("$media:icon"); expect(datainfo.applicationInfo.iconId >= 0).assertTrue(); @@ -1114,7 +1114,7 @@ describe('ActsBundleManagerTest', function () { expect(datainfo.moduleName).assertEqual("entry"); expect(datainfo.bundleName).assertEqual(NAME3); expect(datainfo.applicationInfo.name).assertEqual(NAME3); - expect(datainfo.applicationInfo.description).assertEqual(DESCRIPTION); + expect(datainfo.applicationInfo.description).assertEqual(APPLICATION_DESCRIPTION); expect(datainfo.applicationInfo.descriptionId >= 0).assertTrue(); expect(datainfo.applicationInfo.icon).assertEqual("$media:icon"); expect(datainfo.applicationInfo.iconId >= 0).assertTrue(); @@ -1214,7 +1214,7 @@ describe('ActsBundleManagerTest', function () { expect(dataInfo.versionName).assertLarger(0); expect(dataInfo.entryModuleName).assertEqual("entry"); expect(dataInfo.appInfo.name).assertEqual(NAME1); - expect(dataInfo.appInfo.description).assertEqual(DESCRIPTION); + expect(dataInfo.appInfo.description).assertEqual(APPLICATION_DESCRIPTION); expect(dataInfo.appInfo.descriptionId >= 0).assertTrue(); expect(dataInfo.appInfo.icon).assertEqual("$media:icon"); expect(dataInfo.appInfo.iconId >= 0).assertTrue(); @@ -1227,7 +1227,7 @@ describe('ActsBundleManagerTest', function () { expect(dataInfo.reqPermissionDetails.length).assertEqual(0); expect(dataInfo.compatibleVersion).assertEqual(5); expect(dataInfo.targetVersion).assertEqual(5); - expect(dataInfo.isCompressNativeLibs).assertEqual(false); + expect(dataInfo.isCompressNativeLibs).assertEqual(true); for (let s = 0; s < dataInfo.hapModuleInfos.length; s++) { expect(dataInfo.hapModuleInfos[s].name).assertEqual("com.example.myapplication1"); expect(dataInfo.hapModuleInfos[s].moduleName).assertEqual("entry"); @@ -1261,7 +1261,7 @@ describe('ActsBundleManagerTest', function () { expect(dataInfo.versionName).assertLarger(0); expect(dataInfo.entryModuleName).assertEqual("entry"); expect(dataInfo.appInfo.name).assertEqual(NAME1); - expect(dataInfo.appInfo.description).assertEqual(DESCRIPTION); + expect(dataInfo.appInfo.description).assertEqual(APPLICATION_DESCRIPTION); expect(dataInfo.appInfo.descriptionId >= 0).assertTrue(); expect(dataInfo.appInfo.icon).assertEqual("$media:icon"); expect(dataInfo.appInfo.iconId >= 0).assertTrue(); @@ -1274,7 +1274,7 @@ describe('ActsBundleManagerTest', function () { expect(dataInfo.reqPermissionDetails.length).assertEqual(0); expect(dataInfo.compatibleVersion).assertEqual(5); expect(dataInfo.targetVersion).assertEqual(5); - expect(dataInfo.isCompressNativeLibs).assertEqual(false); + expect(dataInfo.isCompressNativeLibs).assertEqual(true); for (let s = 0; s < dataInfo.hapModuleInfos.length; s++) { expect(dataInfo.hapModuleInfos[s].name).assertEqual("com.example.myapplication1"); expect(dataInfo.hapModuleInfos[s].moduleName).assertEqual("entry"); diff --git a/appexecfwk/bundle_standard/bundlemanager/sceneProject/bmsgetinfosfirstscene/src/main/config.json b/appexecfwk/bundle_standard/bundlemanager/sceneProject/bmsgetinfosfirstscene/src/main/config.json index a23ac443bb81404061059bd4491b847828c19f19..8274524d30fc18c71c6160646cb9b5acac438ff1 100644 --- a/appexecfwk/bundle_standard/bundlemanager/sceneProject/bmsgetinfosfirstscene/src/main/config.json +++ b/appexecfwk/bundle_standard/bundlemanager/sceneProject/bmsgetinfosfirstscene/src/main/config.json @@ -171,6 +171,7 @@ "grantMode": "system_grant", "availableScope": ["signature"] } - ] + ], + "description":"$string:entry_description" } } \ No newline at end of file diff --git a/appexecfwk/bundle_standard/bundlemanager/sceneProject/bmsgetinfosfirstscene/src/main/js/resources/base/element/string.json b/appexecfwk/bundle_standard/bundlemanager/sceneProject/bmsgetinfosfirstscene/src/main/js/resources/base/element/string.json index c3a0c7230d4f00d5efc49b89b7f34e6a6974bad9..6a4cf27e6b03183394af36974a06b830727fef83 100644 --- a/appexecfwk/bundle_standard/bundlemanager/sceneProject/bmsgetinfosfirstscene/src/main/js/resources/base/element/string.json +++ b/appexecfwk/bundle_standard/bundlemanager/sceneProject/bmsgetinfosfirstscene/src/main/js/resources/base/element/string.json @@ -7,6 +7,10 @@ { "name": "mainability_description", "value": "JS_Phone_Empty Feature Ability" + }, + { + "name": "entry_description", + "value": "entry_description" } ] } \ No newline at end of file diff --git a/appexecfwk/bundle_standard/bundlemanager/sceneProject/bmsscenefive/src/main/config.json b/appexecfwk/bundle_standard/bundlemanager/sceneProject/bmsscenefive/src/main/config.json index ede939bc86f96c9648d9708040ee082bc496e3b6..f25b44084018ea8e81d3117acdea4c86dfd654d2 100644 --- a/appexecfwk/bundle_standard/bundlemanager/sceneProject/bmsscenefive/src/main/config.json +++ b/appexecfwk/bundle_standard/bundlemanager/sceneProject/bmsscenefive/src/main/config.json @@ -71,6 +71,7 @@ "description": "BMS_PERMISSION_MUSIC permission in detail", "label": "BMS_PERMISSION_MUSIC permission" } - ] + ], + "description":"$string:entry_description" } } \ No newline at end of file diff --git a/appexecfwk/bundle_standard/bundlemanager/sceneProject/bmsscenefive/src/main/js/resources/base/element/string.json b/appexecfwk/bundle_standard/bundlemanager/sceneProject/bmsscenefive/src/main/js/resources/base/element/string.json index 765de60f53fa554bfcfe58f02a307f53278dcac6..edaff46c8e90132d12d51ba438b9b91d09ad5d93 100644 --- a/appexecfwk/bundle_standard/bundlemanager/sceneProject/bmsscenefive/src/main/js/resources/base/element/string.json +++ b/appexecfwk/bundle_standard/bundlemanager/sceneProject/bmsscenefive/src/main/js/resources/base/element/string.json @@ -7,6 +7,10 @@ { "name": "mainability_description", "value": "JS_Phone_Empty Feature Ability" + }, + { + "name": "entry_description", + "value": "entry_description" } ] } \ No newline at end of file diff --git a/appexecfwk/bundle_standard/bundlemanager/sceneProject/bmsscenefour/src/main/config.json b/appexecfwk/bundle_standard/bundlemanager/sceneProject/bmsscenefour/src/main/config.json index 93eb8f8f512739f3f6f96dad1c5df34442fa0ecf..e0db9144b3b42b96ea130b9bcda46f2331bc0508 100644 --- a/appexecfwk/bundle_standard/bundlemanager/sceneProject/bmsscenefour/src/main/config.json +++ b/appexecfwk/bundle_standard/bundlemanager/sceneProject/bmsscenefour/src/main/config.json @@ -70,6 +70,7 @@ "description": "BMS_PERMISSION_CAMERA permission in detail", "label": "BMS_PERMISSION_CAMERA permission" } - ] + ], + "description":"$string:entry_description" } } \ No newline at end of file diff --git a/appexecfwk/bundle_standard/bundlemanager/sceneProject/bmsscenefour/src/main/js/resources/base/element/string.json b/appexecfwk/bundle_standard/bundlemanager/sceneProject/bmsscenefour/src/main/js/resources/base/element/string.json index 0651d07dbeb2f5b6d1cd4f1577eb470f8bf0e413..26e50604e32c8541a7edff7b77981c47c7c0cc16 100644 --- a/appexecfwk/bundle_standard/bundlemanager/sceneProject/bmsscenefour/src/main/js/resources/base/element/string.json +++ b/appexecfwk/bundle_standard/bundlemanager/sceneProject/bmsscenefour/src/main/js/resources/base/element/string.json @@ -7,6 +7,10 @@ { "name": "mainability_description", "value": "JS_Phone_Empty Feature Ability" + }, + { + "name": "entry_description", + "value": "entry_description" } ] } \ No newline at end of file diff --git a/appexecfwk/bundle_standard/bundlemanager/sceneProject/bmssceneone/src/main/config.json b/appexecfwk/bundle_standard/bundlemanager/sceneProject/bmssceneone/src/main/config.json index bc5ac40ec870392187b152e457356bc8d5280743..667b6f6c64e922fc9997d8449946b7f01cde877a 100644 --- a/appexecfwk/bundle_standard/bundlemanager/sceneProject/bmssceneone/src/main/config.json +++ b/appexecfwk/bundle_standard/bundlemanager/sceneProject/bmssceneone/src/main/config.json @@ -102,6 +102,7 @@ "value":"metaDataValue", "extra":"$string:app_name" }] - } + }, + "description":"$string:entry_description" } } \ No newline at end of file diff --git a/appexecfwk/bundle_standard/bundlemanager/sceneProject/bmssceneone/src/main/js/resources/base/element/string.json b/appexecfwk/bundle_standard/bundlemanager/sceneProject/bmssceneone/src/main/js/resources/base/element/string.json index ee17ff202d7eccfeb0065c5a3f02f154446cbf65..bd4ea94d85f95224c6a7664569bfba7fb6f6f5ae 100644 --- a/appexecfwk/bundle_standard/bundlemanager/sceneProject/bmssceneone/src/main/js/resources/base/element/string.json +++ b/appexecfwk/bundle_standard/bundlemanager/sceneProject/bmssceneone/src/main/js/resources/base/element/string.json @@ -7,6 +7,10 @@ { "name": "mainability_description", "value": "JS_Phone_Empty Feature Ability" + }, + { + "name": "entry_description", + "value": "entry_description" } ] } \ No newline at end of file diff --git a/appexecfwk/bundle_standard/bundlemanager/sceneProject/bmsscenesix/src/main/config.json b/appexecfwk/bundle_standard/bundlemanager/sceneProject/bmsscenesix/src/main/config.json index 02e67eec4f2b263776d743048c8d142e22b95747..c1edda7c6eb4518f2e77621cdb47f381b7d0dfc5 100644 --- a/appexecfwk/bundle_standard/bundlemanager/sceneProject/bmsscenesix/src/main/config.json +++ b/appexecfwk/bundle_standard/bundlemanager/sceneProject/bmsscenesix/src/main/config.json @@ -69,6 +69,7 @@ "description": "BMS_PERMISSION_WECHAT permission in detail", "label": "BMS_PERMISSION_WECHAT permission" } - ] + ], + "description":"$string:entry_description" } } \ No newline at end of file diff --git a/appexecfwk/bundle_standard/bundlemanager/sceneProject/bmsscenesix/src/main/js/resources/base/element/string.json b/appexecfwk/bundle_standard/bundlemanager/sceneProject/bmsscenesix/src/main/js/resources/base/element/string.json index af50710ef991125aae8701e4cf7ba237f492771a..70aa55da1c720f54679af1d05eb00e4eb0cf4999 100644 --- a/appexecfwk/bundle_standard/bundlemanager/sceneProject/bmsscenesix/src/main/js/resources/base/element/string.json +++ b/appexecfwk/bundle_standard/bundlemanager/sceneProject/bmsscenesix/src/main/js/resources/base/element/string.json @@ -7,6 +7,10 @@ { "name": "mainability_description", "value": "JS_Phone_Empty Feature Ability" + }, + { + "name": "entry_description", + "value": "entry_description" } ] } \ No newline at end of file diff --git a/appexecfwk/bundle_standard/bundlemanager/sceneProject/bmsscenethree/src/main/config.json b/appexecfwk/bundle_standard/bundlemanager/sceneProject/bmsscenethree/src/main/config.json index e6a32fd2988e307cbac0eddb45030a88508ce8a1..f209ba613047c21b6ade3916ecbd41c926c5a523 100644 --- a/appexecfwk/bundle_standard/bundlemanager/sceneProject/bmsscenethree/src/main/config.json +++ b/appexecfwk/bundle_standard/bundlemanager/sceneProject/bmsscenethree/src/main/config.json @@ -76,6 +76,7 @@ "description": "BMS_PERMISSION_MUSIC permission in detail", "label": "BMS_PERMISSION_MUSIC permission" } - ] + ], + "description":"$string:entry_description" } } \ No newline at end of file diff --git a/appexecfwk/bundle_standard/bundlemanager/sceneProject/bmsscenethree/src/main/js/resources/base/element/string.json b/appexecfwk/bundle_standard/bundlemanager/sceneProject/bmsscenethree/src/main/js/resources/base/element/string.json index fd48707c38793206bf52e83c882330bf979e7890..4be74fbf5a4cebc71f70d35ed95bf7286a23eb59 100644 --- a/appexecfwk/bundle_standard/bundlemanager/sceneProject/bmsscenethree/src/main/js/resources/base/element/string.json +++ b/appexecfwk/bundle_standard/bundlemanager/sceneProject/bmsscenethree/src/main/js/resources/base/element/string.json @@ -7,6 +7,10 @@ { "name": "mainability_description", "value": "JS_Phone_Empty Feature Ability" + }, + { + "name": "entry_description", + "value": "entry_description" } ] } \ No newline at end of file diff --git a/appexecfwk/bundle_standard/bundlemanager/sceneProject/bmsscenetwo/src/main/config.json b/appexecfwk/bundle_standard/bundlemanager/sceneProject/bmsscenetwo/src/main/config.json index d30d8e797bee0da409164f666d37472c6d5455a9..48248463babc1087b88a2f9541534a952f3eb4f2 100644 --- a/appexecfwk/bundle_standard/bundlemanager/sceneProject/bmsscenetwo/src/main/config.json +++ b/appexecfwk/bundle_standard/bundlemanager/sceneProject/bmsscenetwo/src/main/config.json @@ -69,6 +69,7 @@ "description": "BMS_PERMISSION_CAMERA permission in detail", "label": "BMS_PERMISSION_CAMERA permission" } - ] + ], + "description":"$string:entry_description" } } \ No newline at end of file diff --git a/appexecfwk/bundle_standard/bundlemanager/sceneProject/bmsscenetwo/src/main/js/resources/base/element/string.json b/appexecfwk/bundle_standard/bundlemanager/sceneProject/bmsscenetwo/src/main/js/resources/base/element/string.json index 1f8e07d2b6eac48b38fba02e7fbb92eb5d88c355..617331f723d03dadbee8ac267517266f9ec86eb1 100644 --- a/appexecfwk/bundle_standard/bundlemanager/sceneProject/bmsscenetwo/src/main/js/resources/base/element/string.json +++ b/appexecfwk/bundle_standard/bundlemanager/sceneProject/bmsscenetwo/src/main/js/resources/base/element/string.json @@ -7,6 +7,10 @@ { "name": "mainability_description", "value": "JS_Phone_Empty Feature Ability" + }, + { + "name": "entry_description", + "value": "entry_description" } ] } \ No newline at end of file