I have imported an eclipse project to android studio which worked fine on eclipse but when I try to run it on android studion it gives me the error
Error:Android Source Generator: [MySchoolApp1] AndroidManifest.xml file not found
I have imported an eclipse project to android studio which worked fine on eclipse but when I try to run it on android studion it gives me the error
Error:Android Source Generator: [MySchoolApp1] AndroidManifest.xml file not found
In the android section of your build.gradle file, you can try adding sourceSets with the manifest.srcFile variable.
android {
sourceSets {
main {
manifest.srcFile 'ToDoList/src/main/AndroidManifest.xml'
}
}
}
That path may need to be adjusted slightly.
Reference : AndroidManifest.xml file not found