Lines Matching refs:install
3 The **bundle.installer** module provides APIs for you to install, uninstall, and recover bundles on…
21 | ohos.permission.INSTALL_BUNDLE | system_core | Permission to install or uninstall other applicati…
22 | ohos.permission.INSTALL_ENTERPRISE_BUNDLE | system_core | Permission to install enterprise InHous…
23 | ohos.permission.INSTALL_ENTERPRISE_MDM_BUNDLE | system_core | Permission to install enterprise MD…
24 | ohos.permission.INSTALL_ENTERPRISE_NORMAL_BUNDLE | system_core | Permission to install enterprise…
28 | ohos.permission.INSTALL_INTERNALTESTING_BUNDLE | system_core | Allows an application to install b…
156 ## BundleInstaller.install
157 install(hapFilePaths: Array<string>, installParam: InstallParam, callback: AsyncCallback<v…
168 > To install an enterprise application, you must have the **ohos.permission.INSTALL_ENTERPRISE_BUND…
170 > To install an enterprise Normal application, you must have the **ohos.permission.INSTALL_ENTERPRI…
172 > To install an enterprise MDM application, you must have the **ohos.permission.INSTALL_ENTERPRISE_…
174 > To install a common application, you must have the **ohos.permission.INSTALL_BUNDLE** permission.
176 > To install a beta application, you must have the **ohos.permission.INSTALL_INTERNALTESTING_BUNDLE…
198 | 17700010 | Failed to install the HAP because the HAP fails to be parsed. |
199 | 17700011 | Failed to install the HAP because the HAP signature fails to be verified. |
200 | 17700012 | Failed to install the HAP because the HAP path is invalid or the HAP is too large. |
201 | 17700015 | Failed to install the HAPs because they have different configuration information. |
202 | 17700016 | Failed to install the HAP because of insufficient system disk space. |
203 | 17700017 | Failed to install the HAP since the version of the HAP to install is too early. |
204 | 17700018 | Failed to install the HAP or HSP because the dependent module does not exist. |
205 | 17700031 | Failed to install the HAP because the overlay check of the HAP failed. |
206 | 17700036 | Failed to install the HSP due to the lack of required permission. |
207 | 17700039 | Failed to install the HSP because installing a shared bundle specified by hapFilePaths…
208 | 17700041 | Failed to install the HAP because the installation is forbidden by enterprise device m…
209 | 17700042 | Failed to install the HAP because of incorrect URI in the data proxy. |
210 | 17700043 | Failed to install the HAP because of low APL in the non-system data proxy (required AP…
211 | 17700044 | Failed to install the HAP because the isolationMode configured is not supported. |
212 | 17700047 | Failed to install the HAP because the VersionCode to be updated is not greater than th…
213 | 17700048 | Failed to install the HAP because the code signature verification failed. |
214 | 17700050 | Failed to install the HAP because an enterprise normal/MDM bundle cannot be installed …
215 | 17700052 | Failed to install the HAP because a debug bundle can be installed only in developer mo…
216 | 17700054 | Failed to install the HAP because the HAP requests wrong permissions.|
217 | 17700066 | Failed to install the HAP because installing the native package failed. |
218 | 17700073 | Failed to install the HAP because an application with the same bundle name but differe…
235 data.install(hapFilePaths, installParam, (err: BusinessError) => {
237 console.error('install failed:' + err.message);
239 console.info('install successfully.');
250 ## BundleInstaller.install
251 install(hapFilePaths: Array<string>, callback: AsyncCallback<void>): void
262 > To install an enterprise application, you must have the **ohos.permission.INSTALL_ENTERPRISE_BUND…
264 > To install an enterprise Normal application, you must have the **ohos.permission.INSTALL_ENTERPRI…
266 > To install an enterprise MDM application, you must have the **ohos.permission.INSTALL_ENTERPRISE_…
268 > To install a common application, you must have the **ohos.permission.INSTALL_BUNDLE** permission.
270 > To install a beta application, you must have the **ohos.permission.INSTALL_INTERNALTESTING_BUNDLE…
290 | 17700010 | Failed to install the HAP because the HAP fails to be parsed. |
291 | 17700011 | Failed to install the HAP because the HAP signature fails to be verified. |
292 | 17700012 | Failed to install the HAP because the HAP path is invalid or the HAP is too large. |
293 | 17700015 | Failed to install the HAPs because they have different configuration information. |
294 | 17700016 | Failed to install the HAP because of insufficient system disk space. |
295 | 17700017 | Failed to install the HAP since the version of the HAP to install is too early. |
296 | 17700018 | Failed to install the HAP or HSP because the dependent module does not exist. |
297 | 17700031 | Failed to install the HAP because the overlay check of the HAP failed. |
298 | 17700036 | Failed to install the HSP due to the lack of required permission. |
299 | 17700039 | Failed to install the HSP because installing a shared bundle specified by hapFilePaths…
300 | 17700041 | Failed to install the HAP because the installation is forbidden by enterprise device m…
301 | 17700042 | Failed to install the HAP because of incorrect URI in the data proxy. |
302 | 17700043 | Failed to install the HAP because of low APL in the non-system data proxy (required AP…
303 | 17700044 | Failed to install the HAP because the isolationMode configured is not supported. |
304 | 17700047 | Failed to install the HAP because the VersionCode to be updated is not greater than th…
305 | 17700048 | Failed to install the HAP because the code signature verification failed. |
306 | 17700050 | Failed to install the HAP because an enterprise normal/MDM bundle cannot be installed …
307 | 17700052 | Failed to install the HAP because a debug bundle can be installed only in developer mo…
308 | 17700054 | Failed to install the HAP because the HAP requests wrong permissions.|
309 | 17700066 | Failed to install the HAP because installing the native package failed. |
310 | 17700073 | Failed to install the HAP because an application with the same bundle name but differe…
322 data.install(hapFilePaths, (err: BusinessError) => {
324 console.error('install failed:' + err.message);
326 console.info('install successfully.');
338 ## BundleInstaller.install
340 install(hapFilePaths: Array\<string\>, installParam?: InstallParam) : Promise\<void\>
351 > To install an enterprise application, you must have the **ohos.permission.INSTALL_ENTERPRISE_BUND…
353 > To install an enterprise Normal application, you must have the **ohos.permission.INSTALL_ENTERPRI…
355 > To install an enterprise MDM application, you must have the **ohos.permission.INSTALL_ENTERPRISE_…
357 > To install a common application, you must have the **ohos.permission.INSTALL_BUNDLE** permission.
359 > To install a beta application, you must have the **ohos.permission.INSTALL_INTERNALTESTING_BUNDLE…
386 | 17700010 | Failed to install the HAP because the HAP fails to be parsed. |
387 | 17700011 | Failed to install the HAP because the HAP signature fails to be verified. |
388 | 17700012 | Failed to install the HAP because the HAP path is invalid or the HAP is too large. |
389 | 17700015 | Failed to install the HAPs because they have different configuration information. |
390 | 17700016 | Failed to install the HAP because of insufficient system disk space. |
391 | 17700017 | Failed to install the HAP since the version of the HAP to install is too early. |
392 | 17700018 | Failed to install the HAP or HSP because the dependent module does not exist. |
393 | 17700031 | Failed to install the HAP because the overlay check of the HAP failed. |
394 | 17700036 | Failed to install the HSP due to the lack of required permission. |
395 | 17700039 | Failed to install the HSP because installing a shared bundle specified by hapFilePaths…
396 | 17700041 | Failed to install the HAP because the installation is forbidden by enterprise device m…
397 | 17700042 | Failed to install the HAP because of incorrect URI in the data proxy. |
398 | 17700043 | Failed to install the HAP because of low APL in the non-system data proxy (required AP…
399 | 17700044 | Failed to install the HAP because the isolationMode configured is not supported. |
400 | 17700047 | Failed to install the HAP because the VersionCode to be updated is not greater than th…
401 | 17700048 | Failed to install the HAP because the code signature verification failed. |
402 | 17700050 | Failed to install the HAP because an enterprise normal/MDM bundle cannot be installed …
403 | 17700052 | Failed to install the HAP because a debug bundle can be installed only in developer mo…
404 | 17700054 | Failed to install the HAP because the HAP requests wrong permissions.|
405 | 17700066 | Failed to install the HAP because installing the native package failed. |
406 | 17700073 | Failed to install the HAP because an application with the same bundle name but differe…
423 data.install(hapFilePaths, installParam)
425 console.info('install successfully: ' + JSON.stringify(data));
427 console.error('install failed:' + error.message);
669 | 17700058 | Failed to install the HAP because this application is prohibited from being installed …
670 | 17700073 | Failed to install the HAP because an application with the same bundle name but differe…
733 | 17700058 | Failed to install the HAP because this application is prohibited from being installed …
734 | 17700073 | Failed to install the HAP because an application with the same bundle name but differe…
798 | 17700058 | Failed to install the HAP because this application is prohibited from being installed …
799 | 17700073 | Failed to install the HAP because an application with the same bundle name but differe…
1109 | 17700010 | Failed to install the HAP because the HAP fails to be parsed. |
1110 | 17700011 | Failed to install the HAP because the HAP signature fails to be verified. |
1111 | 17700012 | Failed to install the HAP because the HAP path is invalid or the HAP is too large. |
1112 | 17700015 | Failed to install the HAPs because they have different configuration information. |
1113 | 17700016 | Failed to install the HAP because of insufficient system disk space. |
1114 | 17700017 | Failed to install the HAP since the version of the HAP to install is too early. |
1115 | 17700018 | Failed to install the HAP or HSP because the dependent module does not exist. |
1116 | 17700039 | Failed to install the HSP because installing a shared bundle specified by hapFilePaths…
1117 | 17700041 | Failed to install the HAP because the installation is forbidden by enterprise device m…
1118 | 17700042 | Failed to install the HAP because of incorrect URI in the data proxy. |
1119 | 17700043 | Failed to install the HAP because of low APL in the non-system data proxy (required AP…
1120 | 17700044 | Failed to install the HAP because the isolationMode configured is not supported. |
1121 | 17700047 | Failed to install the HAP because the VersionCode to be updated is not greater than th…
1122 | 17700048 | Failed to install the HAP because the code signature verification failed. |
1123 | 17700049 | Failed to install the HAP because the bundleName is different from the bundleName of t…
1124 | 17700050 | Failed to install the HAP because an enterprise normal/MDM bundle cannot be installed …
1125 | 17700051 | Failed to install the HAP because the distribution type of the caller application is n…
1186 | 17700010 | Failed to install the HAP because the HAP fails to be parsed. |
1187 | 17700011 | Failed to install the HAP because the HAP signature fails to be verified. |
1188 | 17700012 | Failed to install the HAP because the HAP path is invalid or the HAP is too large. |
1189 | 17700015 | Failed to install the HAPs because they have different configuration information. |
1190 | 17700016 | Failed to install the HAP because of insufficient system disk space. |
1191 | 17700017 | Failed to install the HAP since the version of the HAP to install is too early. |
1192 | 17700018 | Failed to install the HAP or HSP because the dependent module does not exist. |
1193 | 17700039 | Failed to install the HSP because installing a shared bundle specified by hapFilePaths…
1194 | 17700041 | Failed to install the HAP because the installation is forbidden by enterprise device m…
1195 | 17700042 | Failed to install the HAP because of incorrect URI in the data proxy. |
1196 | 17700043 | Failed to install the HAP because of low APL in the non-system data proxy (required AP…
1197 | 17700044 | Failed to install the HAP because the isolationMode configured is not supported. |
1198 | 17700047 | Failed to install the HAP because the VersionCode to be updated is not greater than th…
1199 | 17700048 | Failed to install the HAP because the code signature verification failed. |
1200 | 17700049 | Failed to install the HAP because the bundleName is different from the bundleName of t…
1201 | 17700050 | Failed to install the HAP because an enterprise normal/MDM bundle cannot be installed …
1202 | 17700051 | Failed to install the HAP because the distribution type of the caller application is n…
1265 | 17700010 | Failed to install the HAP because the HAP fails to be parsed. |
1266 | 17700011 | Failed to install the HAP because the HAP signature fails to be verified. |
1267 | 17700012 | Failed to install the HAP because the HAP path is invalid or the HAP is too large. |
1268 | 17700015 | Failed to install the HAPs because they have different configuration information. |
1269 | 17700016 | Failed to install the HAP because of insufficient system disk space. |
1270 | 17700017 | Failed to install the HAP since the version of the HAP to install is too early. |
1271 | 17700018 | Failed to install the HAP or HSP because the dependent module does not exist. |
1272 | 17700039 | Failed to install the HSP because installing a shared bundle specified by hapFilePaths…
1273 | 17700041 | Failed to install the HAP because the installation is forbidden by enterprise device m…
1274 | 17700042 | Failed to install the HAP because of incorrect URI in the data proxy. |
1275 | 17700043 | Failed to install the HAP because of low APL in the non-system data proxy (required AP…
1276 | 17700044 | Failed to install the HAP because the isolationMode configured is not supported. |
1277 | 17700047 | Failed to install the HAP because the VersionCode to be updated is not greater than th…
1278 | 17700048 | Failed to install the HAP because the code signature verification failed. |
1279 | 17700049 | Failed to install the HAP because the bundleName is different from the bundleName of t…
1280 | 17700050 | Failed to install the HAP because an enterprise normal/MDM bundle cannot be installed …
1281 | 17700051 | Failed to install the HAP because the distribution type of the caller application is n…
1352 | 17700073 | Failed to install the HAP because an application with the same bundle name but differe…
1531 | bundleName | string | Yes | Bundle name of the application to install. …
1551 | 17700071 | It is not allowed to install the enterprise bundle. |
1552 | 17700058 | Failed to install the HAP because this application is prohibited from being installed …