Closed samhill303 closed 2 years ago
The line sourceSets["main"].manifest.srcFile("src/androidMain/AndroidManifest.xml") might not be needed anymore. There should be a default place manifests are supposed to go
sourceSets["main"].manifest.srcFile("src/androidMain/AndroidManifest.xml")
By default it wants the manifest to be in src/main/AndroidManifest, but we have androidMain instead because of the multiplatform.
src/main/AndroidManifest
androidMain
Lets move it back to the default location in main and clean up the gradle
The line
sourceSets["main"].manifest.srcFile("src/androidMain/AndroidManifest.xml")
might not be needed anymore. There should be a default place manifests are supposed to go