Lines Matching refs:install

156 ## BundleInstaller.install
157 install(hapFilePaths: Array<string>, installParam: InstallParam, callback: AsyncCallback<v…
196 | 17700010 | Failed to install the HAP because the HAP fails to be parsed. |
197 | 17700011 | Failed to install the HAP because the HAP signature fails to be verified. |
198 | 17700012 | Failed to install the HAP because the HAP path is invalid or the HAP is too large. |
199 | 17700015 | Failed to install the HAPs because they have different configuration information. |
200 | 17700016 | Failed to install the HAP because of insufficient system disk space. |
201 | 17700017 | Failed to install the HAP since the version of the HAP to install is too early. |
202 | 17700018 | Failed to install the HAP or HSP because the dependent module does not exist. |
203 | 17700031 | Failed to install the HAP because the overlay check of the HAP failed. |
204 | 17700036 | Failed to install the HSP due to the lack of required permission. |
205 | 17700039 | Failed to install the HSP because installing a shared bundle specified by hapFilePaths…
206 | 17700041 | Failed to install the HAP because the installation is forbidden by enterprise device m…
207 | 17700042 | Failed to install the HAP because of incorrect URI in the data proxy. |
208 | 17700043 | Failed to install the HAP because of low APL in the non-system data proxy (required AP…
209 | 17700044 | Failed to install the HAP because the isolationMode configured is not supported. |
210 | 17700047 | Failed to install the HAP because the VersionCode to be updated is not greater than th…
211 | 17700048 | Failed to install the HAP because the code signature verification failed. |
212 | 17700050 | Failed to install the HAP because an enterprise normal/MDM bundle cannot be installed …
213 | 17700052 | Failed to install the HAP because a debug bundle can be installed only in developer mo…
214 | 17700054 | Failed to install the HAP because the HAP requests wrong permissions.|
215 | 17700066 | Failed to install the HAP because installing the native package failed. |
216 | 17700073 | Failed to install the HAP because an application with the same bundle name but differe…
233 data.install(hapFilePaths, installParam, (err: BusinessError) => {
235 console.error('install failed:' + err.message);
237 console.info('install successfully.');
248 ## BundleInstaller.install
249 install(hapFilePaths: Array<string>, callback: AsyncCallback<void>): void
286 | 17700010 | Failed to install the HAP because the HAP fails to be parsed. |
287 | 17700011 | Failed to install the HAP because the HAP signature fails to be verified. |
288 | 17700012 | Failed to install the HAP because the HAP path is invalid or the HAP is too large. |
289 | 17700015 | Failed to install the HAPs because they have different configuration information. |
290 | 17700016 | Failed to install the HAP because of insufficient system disk space. |
291 | 17700017 | Failed to install the HAP since the version of the HAP to install is too early. |
292 | 17700018 | Failed to install the HAP or HSP because the dependent module does not exist. |
293 | 17700031 | Failed to install the HAP because the overlay check of the HAP failed. |
294 | 17700036 | Failed to install the HSP due to the lack of required permission. |
295 | 17700039 | Failed to install the HSP because installing a shared bundle specified by hapFilePaths…
296 | 17700041 | Failed to install the HAP because the installation is forbidden by enterprise device m…
297 | 17700042 | Failed to install the HAP because of incorrect URI in the data proxy. |
298 | 17700043 | Failed to install the HAP because of low APL in the non-system data proxy (required AP…
299 | 17700044 | Failed to install the HAP because the isolationMode configured is not supported. |
300 | 17700047 | Failed to install the HAP because the VersionCode to be updated is not greater than th…
301 | 17700048 | Failed to install the HAP because the code signature verification failed. |
302 | 17700050 | Failed to install the HAP because an enterprise normal/MDM bundle cannot be installed …
303 | 17700052 | Failed to install the HAP because a debug bundle can be installed only in developer mo…
304 | 17700054 | Failed to install the HAP because the HAP requests wrong permissions.|
305 | 17700066 | Failed to install the HAP because installing the native package failed. |
306 | 17700073 | Failed to install the HAP because an application with the same bundle name but differe…
318 data.install(hapFilePaths, (err: BusinessError) => {
320 console.error('install failed:' + err.message);
322 console.info('install successfully.');
334 ## BundleInstaller.install
336 install(hapFilePaths: Array\<string\>, installParam?: InstallParam) : Promise\<void\>
380 | 17700010 | Failed to install the HAP because the HAP fails to be parsed. |
381 | 17700011 | Failed to install the HAP because the HAP signature fails to be verified. |
382 | 17700012 | Failed to install the HAP because the HAP path is invalid or the HAP is too large. |
383 | 17700015 | Failed to install the HAPs because they have different configuration information. |
384 | 17700016 | Failed to install the HAP because of insufficient system disk space. |
385 | 17700017 | Failed to install the HAP since the version of the HAP to install is too early. |
386 | 17700018 | Failed to install the HAP or HSP because the dependent module does not exist. |
387 | 17700031 | Failed to install the HAP because the overlay check of the HAP failed. |
388 | 17700036 | Failed to install the HSP due to the lack of required permission. |
389 | 17700039 | Failed to install the HSP because installing a shared bundle specified by hapFilePaths…
390 | 17700041 | Failed to install the HAP because the installation is forbidden by enterprise device m…
391 | 17700042 | Failed to install the HAP because of incorrect URI in the data proxy. |
392 | 17700043 | Failed to install the HAP because of low APL in the non-system data proxy (required AP…
393 | 17700044 | Failed to install the HAP because the isolationMode configured is not supported. |
394 | 17700047 | Failed to install the HAP because the VersionCode to be updated is not greater than th…
395 | 17700048 | Failed to install the HAP because the code signature verification failed. |
396 | 17700050 | Failed to install the HAP because an enterprise normal/MDM bundle cannot be installed …
397 | 17700052 | Failed to install the HAP because a debug bundle can be installed only in developer mo…
398 | 17700054 | Failed to install the HAP because the HAP requests wrong permissions.|
399 | 17700066 | Failed to install the HAP because installing the native package failed. |
400 | 17700073 | Failed to install the HAP because an application with the same bundle name but differe…
417 data.install(hapFilePaths, installParam)
419 console.info('install successfully: ' + JSON.stringify(data));
421 console.error('install failed:' + error.message);
663 | 17700058 | Failed to install the HAP because this application is prohibited from being installed …
664 | 17700073 | Failed to install the HAP because an application with the same bundle name but differe…
727 | 17700058 | Failed to install the HAP because this application is prohibited from being installed …
728 | 17700073 | Failed to install the HAP because an application with the same bundle name but differe…
792 | 17700058 | Failed to install the HAP because this application is prohibited from being installed …
793 | 17700073 | Failed to install the HAP because an application with the same bundle name but differe…
1103 | 17700010 | Failed to install the HAP because the HAP fails to be parsed. |
1104 | 17700011 | Failed to install the HAP because the HAP signature fails to be verified. |
1105 | 17700012 | Failed to install the HAP because the HAP path is invalid or the HAP is too large. |
1106 | 17700015 | Failed to install the HAPs because they have different configuration information. |
1107 | 17700016 | Failed to install the HAP because of insufficient system disk space. |
1108 | 17700017 | Failed to install the HAP since the version of the HAP to install is too early. |
1109 | 17700018 | Failed to install the HAP or HSP because the dependent module does not exist. |
1110 | 17700039 | Failed to install the HSP because installing a shared bundle specified by hapFilePaths…
1111 | 17700041 | Failed to install the HAP because the installation is forbidden by enterprise device m…
1112 | 17700042 | Failed to install the HAP because of incorrect URI in the data proxy. |
1113 | 17700043 | Failed to install the HAP because of low APL in the non-system data proxy (required AP…
1114 | 17700044 | Failed to install the HAP because the isolationMode configured is not supported. |
1115 | 17700047 | Failed to install the HAP because the VersionCode to be updated is not greater than th…
1116 | 17700048 | Failed to install the HAP because the code signature verification failed. |
1117 | 17700049 | Failed to install the HAP because the bundleName is different from the bundleName of t…
1118 | 17700050 | Failed to install the HAP because an enterprise normal/MDM bundle cannot be installed …
1119 | 17700051 | Failed to install the HAP because the distribution type of the caller application is n…
1180 | 17700010 | Failed to install the HAP because the HAP fails to be parsed. |
1181 | 17700011 | Failed to install the HAP because the HAP signature fails to be verified. |
1182 | 17700012 | Failed to install the HAP because the HAP path is invalid or the HAP is too large. |
1183 | 17700015 | Failed to install the HAPs because they have different configuration information. |
1184 | 17700016 | Failed to install the HAP because of insufficient system disk space. |
1185 | 17700017 | Failed to install the HAP since the version of the HAP to install is too early. |
1186 | 17700018 | Failed to install the HAP or HSP because the dependent module does not exist. |
1187 | 17700039 | Failed to install the HSP because installing a shared bundle specified by hapFilePaths…
1188 | 17700041 | Failed to install the HAP because the installation is forbidden by enterprise device m…
1189 | 17700042 | Failed to install the HAP because of incorrect URI in the data proxy. |
1190 | 17700043 | Failed to install the HAP because of low APL in the non-system data proxy (required AP…
1191 | 17700044 | Failed to install the HAP because the isolationMode configured is not supported. |
1192 | 17700047 | Failed to install the HAP because the VersionCode to be updated is not greater than th…
1193 | 17700048 | Failed to install the HAP because the code signature verification failed. |
1194 | 17700049 | Failed to install the HAP because the bundleName is different from the bundleName of t…
1195 | 17700050 | Failed to install the HAP because an enterprise normal/MDM bundle cannot be installed …
1196 | 17700051 | Failed to install the HAP because the distribution type of the caller application is n…
1259 | 17700010 | Failed to install the HAP because the HAP fails to be parsed. |
1260 | 17700011 | Failed to install the HAP because the HAP signature fails to be verified. |
1261 | 17700012 | Failed to install the HAP because the HAP path is invalid or the HAP is too large. |
1262 | 17700015 | Failed to install the HAPs because they have different configuration information. |
1263 | 17700016 | Failed to install the HAP because of insufficient system disk space. |
1264 | 17700017 | Failed to install the HAP since the version of the HAP to install is too early. |
1265 | 17700018 | Failed to install the HAP or HSP because the dependent module does not exist. |
1266 | 17700039 | Failed to install the HSP because installing a shared bundle specified by hapFilePaths…
1267 | 17700041 | Failed to install the HAP because the installation is forbidden by enterprise device m…
1268 | 17700042 | Failed to install the HAP because of incorrect URI in the data proxy. |
1269 | 17700043 | Failed to install the HAP because of low APL in the non-system data proxy (required AP…
1270 | 17700044 | Failed to install the HAP because the isolationMode configured is not supported. |
1271 | 17700047 | Failed to install the HAP because the VersionCode to be updated is not greater than th…
1272 | 17700048 | Failed to install the HAP because the code signature verification failed. |
1273 | 17700049 | Failed to install the HAP because the bundleName is different from the bundleName of t…
1274 | 17700050 | Failed to install the HAP because an enterprise normal/MDM bundle cannot be installed …
1275 | 17700051 | Failed to install the HAP because the distribution type of the caller application is n…
1346 | 17700073 | Failed to install the HAP because an application with the same bundle name but differe…
1545 | 17700071 | It is not allowed to install the enterprise bundle. |
1546 | 17700058 | Failed to install the HAP because this application is prohibited from being installed …