blob: 533cbf0726eb65b278639c832f5e7ed335eb985e [file] [log] [blame]
/*
* Copyright (C) 2020 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.android.build.gradle.tasks
import com.android.SdkConstants
import com.android.build.api.variant.impl.BuiltArtifactsLoaderImpl
import com.android.build.api.variant.impl.VariantOutputImpl
import com.android.build.gradle.internal.component.BaseCreationConfig
import com.android.build.gradle.internal.scope.InternalArtifactType
import com.android.build.gradle.internal.tasks.NonIncrementalTask
import com.android.build.gradle.internal.tasks.factory.VariantTaskCreationAction
import com.android.build.gradle.internal.utils.setDisallowChanges
import org.gradle.api.file.DirectoryProperty
import org.gradle.api.file.RegularFileProperty
import org.gradle.api.provider.Property
import org.gradle.api.tasks.CacheableTask
import org.gradle.api.tasks.InputFiles
import org.gradle.api.tasks.Nested
import org.gradle.api.tasks.OutputFile
import org.gradle.api.tasks.PathSensitive
import org.gradle.api.tasks.PathSensitivity
import org.gradle.api.tasks.TaskAction
import org.gradle.api.tasks.TaskProvider
import java.io.File
/**
* Task that consumes [InternalArtifactType.MERGED_MANIFESTS] to produce a unique Android Manifest
* file suitable for the bundle tool.
*
* The bundle tool manifest must have the android:splitName to all activities in case the
* module is a dynamic feature module, otherwise it wil be unchanged.
*
* The merged manifest already has the annotated activities so we just need to copy the main
* split unchanged. We cannot use republish because there can be many merged manifests, but there
* is only one bundle tool manifest.
*/
@CacheableTask
abstract class ProcessManifestForBundleTask: NonIncrementalTask() {
@get:OutputFile
abstract val bundleManifest: RegularFileProperty
@get:InputFiles
@get:PathSensitive(PathSensitivity.RELATIVE)
abstract val applicationMergedManifests: DirectoryProperty
@get:Nested
abstract val mainSplit: Property<VariantOutputImpl>
@TaskAction
override fun doTaskAction() {
val builtArtifact = BuiltArtifactsLoaderImpl().load(applicationMergedManifests)
?.getBuiltArtifact(mainSplit.get())
?: throw RuntimeException("Cannot find main split from generated manifest files at" +
" ${applicationMergedManifests.asFile.get().absolutePath}")
File(builtArtifact.outputFile).copyTo(
target = bundleManifest.get().asFile, overwrite = true)
}
class CreationAction(creationConfig: BaseCreationConfig) :
VariantTaskCreationAction<ProcessManifestForBundleTask, BaseCreationConfig>(
creationConfig = creationConfig
) {
override val name: String
get() = computeTaskName("processApplicationManifest", "ForBundle")
override val type: Class<ProcessManifestForBundleTask>
get() = ProcessManifestForBundleTask::class.java
override fun handleProvider(taskProvider: TaskProvider<ProcessManifestForBundleTask>) {
super.handleProvider(taskProvider)
creationConfig.artifacts.setInitialProvider(
taskProvider,
ProcessManifestForBundleTask::bundleManifest
)
.withName(SdkConstants.ANDROID_MANIFEST_XML)
.on(InternalArtifactType.BUNDLE_MANIFEST)
}
override fun configure(task: ProcessManifestForBundleTask) {
super.configure(task)
creationConfig.artifacts.setTaskInputToFinalProduct(
InternalArtifactType.MERGED_MANIFESTS,
task.applicationMergedManifests
)
task.mainSplit.setDisallowChanges(creationConfig.outputs.getMainSplit())
}
}
}