Home
last modified time | relevance | path

Searched refs:bundleType (Results 1 – 11 of 11) sorted by relevance

/developtools/packing_tool/adapter/ohos/
DVerifyCollection.java109 private String bundleType = "app"; field in VerifyCollection
135 public void setBundleType(String bundleType) { in setBundleType() argument
136 this.bundleType = bundleType; in setBundleType()
140 return bundleType; in getBundleType()
DModuleAppInfo.java118 private String bundleType = "app"; field in ModuleAppInfo
154 bundleType = type; in setBundleType()
171 return bundleType; in getBundleType()
DAppInfo.java112 private String bundleType = "app"; field in AppInfo
167 return bundleType; in getBundleType()
211 bundleType = type; in setBundleType()
DHapVerifyInfo.java112 private String bundleType = "app"; field in HapVerifyInfo
380 return bundleType; in getBundleType()
383 public void setBundleType(String bundleType) { in setBundleType() argument
384 this.bundleType = bundleType; in setBundleType()
DModuleJsonUtil.java1135 String bundleType = getJsonString(appObj, BUNDLE_TYPE); in parseStageBundleType() local
1136 if (bundleType.equals(APP)) { in parseStageBundleType()
1144 } else if (bundleType.equals(ATOMIC_SERVICE)) { in parseStageBundleType()
1152 } else if (SHARED.equals(bundleType)) { in parseStageBundleType()
1159 } else if (APP_SERVICE.equals(bundleType)) { in parseStageBundleType()
1664 String bundleType = getJsonString(appObj, BUNDLE_TYPE); in checkAtomicServiceInstallationFree() local
1665 if (bundleType.equals(APP)) { in checkAtomicServiceInstallationFree()
1670 } else if (bundleType.equals(ATOMIC_SERVICE)) { in checkAtomicServiceInstallationFree()
1675 } else if (SHARED.equals(bundleType)) { in checkAtomicServiceInstallationFree()
1680 } else if (APP_SERVICE.equals(bundleType)) { in checkAtomicServiceInstallationFree()
DUncompress.java790 String bundleType = "app"; in getFABundleType() local
792 bundleType = "atomicService"; in getFABundleType()
794 return bundleType; in getFABundleType()
DHapVerify.java1232 String bundleType = hapVerifyInfoList.get(0).getBundleType(); in checkAtomicServiceIsValid() local
1233 if (!bundleType.equals(ATOMIC_SERVICE)) { in checkAtomicServiceIsValid()
DCompressor.java433 String bundleType = ModuleJsonUtil.parseStageBundleType(jsonString); in compressHap() local
434 if (TYPE_SHARED.equals(bundleType)) { in compressHap()
2577 String bundleType = hapVerifyInfo.getBundleType(); in checkHapIsValid() local
2578 if (TYPE_SHARED.equals(bundleType)) { in checkHapIsValid()
/developtools/ace_ets2bundle/compiler/
Dmain.js114 projectConfig.bundleType = projectConfig.bundleType || process.env.bundleType || '';
/developtools/packing_tool/
DREADME_zh.md379 | bundleType | String | 标识bundle的类型,取值:<br/>- app:普通应用<br/>- atomicService:元服务…
/developtools/ace_ets2bundle/compiler/src/
Dets_checker.ts301 …if (projectConfig.bundleType === ATOMICSERVICE_BUNDLE_TYPE && projectConfig.compileSdkVersion >= A…