1
0
Fork 0
mirror of https://github.com/ethauvin/kobalt.git synced 2025-04-26 16:28:12 -07:00

copy AndroidManifest.xml to correct path

This commit is contained in:
Ferenc Boldog 2015-11-24 01:35:28 +01:00
parent 665d4040ef
commit 8e8077626a

View file

@ -34,7 +34,7 @@ class Merger @Inject constructor() {
private fun mergeAndroidManifest(project: Project, variant: Variant) {
val dest = AndroidFiles.mergedManifest(project, variant)
log(2, "----- Merging manifest (not implemented, copying it to $dest)")
KFiles.copy(Paths.get("src/main/AndroidManifest.xml"), Paths.get(dest))
KFiles.copy(Paths.get(project.directory, "src/main/AndroidManifest.xml"), Paths.get(dest))
}
interface IFileMerger {