Answers for "androidmanifest.xml could not be found."

0

androidmanifest.xml could not be found.

Add the following code in build.gradle file under defaultConfig

   javaCompileOptions {
        annotationProcessorOptions {
            arguments = [
                    "androidManifestFile":"$projectDir/src/main/AndroidManifest.xml".toString()
            ]
        }
    }
Posted by: Guest on July-07-2021

Code answers related to "androidmanifest.xml could not be found."

Browse Popular Code Answers by Language