Home
last modified time | relevance | path

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

/developtools/packing_tool/adapter/ohos/
DVerifyCollection.java72 private String bundleType = "app"; field in VerifyCollection
74 public void setBundleType(String bundleType) { in setBundleType() argument
75 this.bundleType = bundleType; in setBundleType()
79 return bundleType; in getBundleType()
DModuleAppInfo.java105 private String bundleType = "app"; field in ModuleAppInfo
113 bundleType = type; in setBundleType()
122 return bundleType; in getBundleType()
DAppInfo.java111 private String bundleType = "app"; field in AppInfo
146 return bundleType; in getBundleType()
190 bundleType = type; in setBundleType()
DHapVerifyInfo.java32 private String bundleType = "app"; field in HapVerifyInfo
364 return bundleType; in getBundleType()
367 public void setBundleType(String bundleType) { in setBundleType() argument
368 this.bundleType = bundleType; in setBundleType()
DModuleJsonUtil.java1340 String bundleType = getJsonString(appObj, BUNDLE_TYPE); in parseStageBundleType() local
1341 if (bundleType.equals(APP)) { in parseStageBundleType()
1347 } else if (bundleType.equals(ATOMIC_SERVICE)) { in parseStageBundleType()
1718 String bundleType = getJsonString(appObj, BUNDLE_TYPE); in checkAtomicServiceInstallationFree() local
1719 if (bundleType.equals(APP)) { in checkAtomicServiceInstallationFree()
1724 } else if (bundleType.equals(ATOMIC_SERVICE)) { in checkAtomicServiceInstallationFree()
DUncompress.java792 String bundleType = "app"; in getFABundleType() local
794 bundleType = "atomicService"; in getFABundleType()
796 return bundleType; in getFABundleType()
DHapVerify.java1081 String bundleType = hapVerifyInfoList.get(0).getBundleType(); in checkAtomicServiceIsValid() local
1082 if (!bundleType.equals(ATOMIC_SERVICE)) { in checkAtomicServiceIsValid()
/developtools/packing_tool/
DREADME_zh.md237 | bundleType | String | 标识bundle的类型,取值:<br/>- app:普通应用<br/>- atomicService:原子化…