com.avito.test.gradle.files.AndroidManifest.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of test-project Show documentation
Show all versions of test-project Show documentation
Collection of infrastructure libraries and gradle plugins of Avito Android project
package com.avito.test.gradle.files
import com.avito.test.gradle.file
import java.io.File
internal fun File.androidManifest(packageName: String) = file(
name = "AndroidManifest.xml",
content = """
""".trimIndent()
)