in BuildSrc/manifestReplacementTest/buildSrc/src/main/kotlin/VerifyManifestTask.kt [37:45]
fun taskAction() {
val builtArtifacts = builtArtifactsLoader.get().load(apkFolder.get())
?: throw RuntimeException("Cannot load APKs")
if (builtArtifacts.elements.size != 1)
throw RuntimeException("Expected one APK !")
val apk = File(builtArtifacts.elements.single().outputFile).toPath()
println("Insert code to verify manifest file in ${apk}")
println("SUCCESS")
}