use of com.android.tools.build.bundletool.model.BundleModule in project bundletool by google.
the class ModuleSplitterTest method instantManifestChanges_addsMinSdkVersion.
@Test
public void instantManifestChanges_addsMinSdkVersion() throws Exception {
BundleModule bundleModule = new BundleModuleBuilder("testModule").setManifest(androidManifest("com.test.app", withInstant(true))).build();
ImmutableList<ModuleSplit> moduleSplits = ModuleSplitter.createNoStamp(bundleModule, BUNDLETOOL_VERSION, APP_BUNDLE, ApkGenerationConfiguration.builder().setForInstantAppVariants(true).build(), lPlusVariantTargeting(), ImmutableSet.of("testModule")).splitModule();
assertThat(moduleSplits).hasSize(1);
ModuleSplit masterSplit = moduleSplits.get(0);
assertThat(masterSplit.getVariantTargeting()).isEqualTo(lPlusVariantTargeting());
assertThat(masterSplit.isMasterSplit()).isTrue();
assertThat(masterSplit.getApkTargeting()).isEqualTo(apkMinSdkTargeting(21));
assertThat(masterSplit.getSplitType()).isEqualTo(SplitType.INSTANT);
assertThat(masterSplit.getAndroidManifest().getTargetSandboxVersion()).hasValue(2);
assertThat(masterSplit.getAndroidManifest().getMinSdkVersion()).hasValue(21);
}
use of com.android.tools.build.bundletool.model.BundleModule in project bundletool by google.
the class ModuleSplitterTest method pinSpecIsCopied.
@Test
public void pinSpecIsCopied() {
NativeLibraries nativeConfig = nativeLibraries(targetedNativeDirectory("lib/x86", nativeDirectoryTargeting("x86")));
BundleModule testModule = new BundleModuleBuilder("testModule").setManifest(androidManifest("com.test.app")).setNativeConfig(nativeConfig).addFile("lib/x86/liba.so").addFile("assets/com.android.hints.pins.txt").build();
ImmutableList<ModuleSplit> splits = createAbiAndDensitySplitter(testModule).splitModule();
assertThat(splits).hasSize(2);
assertThat(splits.stream().map((s) -> s.getEntries().stream().filter((e) -> e.getPath().endsWith(PinSpecInjector.PIN_SPEC_NAME)).count()).distinct()).containsExactly(1L);
}
use of com.android.tools.build.bundletool.model.BundleModule in project bundletool by google.
the class ModuleSplitterTest method nativeSplits_lPlusTargeting_withAbiAndUncompressNativeLibsSplitter.
@Test
public void nativeSplits_lPlusTargeting_withAbiAndUncompressNativeLibsSplitter() throws Exception {
NativeLibraries nativeConfig = nativeLibraries(targetedNativeDirectory("lib/x86", nativeDirectoryTargeting("x86")));
BundleModule testModule = new BundleModuleBuilder("testModule").setManifest(androidManifest("com.test.app")).setNativeConfig(nativeConfig).addFile("lib/x86/liba.so").build();
ModuleSplitter moduleSplitter = ModuleSplitter.createNoStamp(testModule, BUNDLETOOL_VERSION, APP_BUNDLE, ApkGenerationConfiguration.builder().setOptimizationDimensions(ImmutableSet.of(ABI)).setEnableUncompressedNativeLibraries(true).build(), lPlusVariantTargeting(), ImmutableSet.of("testModule"));
List<ModuleSplit> splits = moduleSplitter.splitModule();
// Base + X86 Split
assertThat(splits).hasSize(2);
assertThat(splits.stream().map(ModuleSplit::getSplitType).distinct().collect(toImmutableSet())).containsExactly(SplitType.SPLIT);
assertThat(splits.stream().map(split -> split.getVariantTargeting()).collect(toImmutableSet())).containsExactly(variantMinSdkTargeting(ANDROID_L_API_VERSION));
ModuleSplit master = splits.stream().filter(ModuleSplit::isMasterSplit).collect(onlyElement());
ModuleSplit abi = splits.stream().filter(not(ModuleSplit::isMasterSplit)).collect(onlyElement());
assertThat(master.getAndroidManifest().getExtractNativeLibsValue()).hasValue(true);
assertThat(abi.findEntry("lib/x86/liba.so").get().getForceUncompressed()).isFalse();
}
use of com.android.tools.build.bundletool.model.BundleModule in project bundletool by google.
the class ModuleSplitterTest method nativeSplits_mPlusTargeting_disabledUncompressedSplitter.
@Test
public void nativeSplits_mPlusTargeting_disabledUncompressedSplitter() {
NativeLibraries nativeConfig = nativeLibraries(targetedNativeDirectory("lib/x86", nativeDirectoryTargeting("x86")));
BundleModule testModule = new BundleModuleBuilder("testModule").setManifest(androidManifest("com.test.app")).setNativeConfig(nativeConfig).addFile("lib/x86/liba.so").build();
ModuleSplitter moduleSplitter = ModuleSplitter.createNoStamp(testModule, BUNDLETOOL_VERSION, APP_BUNDLE, ApkGenerationConfiguration.builder().setOptimizationDimensions(ImmutableSet.of(ABI)).setEnableUncompressedNativeLibraries(false).build(), variantMinSdkTargeting(ANDROID_M_API_VERSION), ImmutableSet.of("testModule"));
List<ModuleSplit> splits = moduleSplitter.splitModule();
assertThat(splits).hasSize(2);
ModuleSplit master = splits.stream().filter(ModuleSplit::isMasterSplit).collect(onlyElement());
ModuleSplit abi = splits.stream().filter(not(ModuleSplit::isMasterSplit)).collect(onlyElement());
assertThat(master.getAndroidManifest().getExtractNativeLibsValue()).hasValue(true);
assertThat(abi.findEntry("lib/x86/liba.so").get().getForceUncompressed()).isFalse();
}
use of com.android.tools.build.bundletool.model.BundleModule in project bundletool by google.
the class ModuleSplitterTest method applicationElementAdded.
@Test
public void applicationElementAdded() throws Exception {
XmlNode manifest = androidManifest("com.test.app", clearApplication());
checkState(!AndroidManifest.create(manifest).hasApplicationElement(), "Expected manifest with no <application> element.");
BundleModule bundleModule = new BundleModuleBuilder("testModule").setManifest(manifest).build();
ImmutableList<ModuleSplit> moduleSplits = ModuleSplitter.createForTest(bundleModule, BUNDLETOOL_VERSION).splitModule();
assertThat(moduleSplits).hasSize(1);
ModuleSplit masterSplit = moduleSplits.get(0);
assertThat(masterSplit.getAndroidManifest().getManifestRoot().getElement().getOptionalChildElement(APPLICATION_ELEMENT_NAME)).isPresent();
}
Aggregations