Lines Matching refs:installationFree
78 private static final String INSTALLATION_FREE = "installationFree";
183 boolean installationFree = parseFAInstallationFree(jsonString);
184 if (installationFree) {
1255 boolean installationFree = getJsonBooleanValue(moduleObj, INSTALLATION_FREE, false);
1258 if (installationFree) {
1259 String errMessage = "The app.json5 file configuration does not match the installationFree:" +
1268 if (installationFree) {
1269 String errMsg = "installationFree must be false in module(" +
1276 if (!installationFree) {
1277 String errMsg = "installationFree must be true in module(" +
1872 boolean installationFree = getJsonBooleanValue(moduleObj, INSTALLATION_FREE, false);
1874 if (installationFree) {
1875 String errMessage = "The app.json5 file configuration does not match the installationFree:" +
1884 if (installationFree) {
1885 LOG.error("installationFree must be false when bundleType is app.");
1889 if (!installationFree) {
1890 LOG.error("installationFree must be true when bundleType is atomicService.");
1894 if (installationFree) {
1895 LOG.error("installationFree must be false when bundleType is shared.");
1899 if (installationFree) {
1900 LOG.error("installationFree must be false when bundleType is appService.");