androidmanifest.xml not found android studio -


i have imported eclipse project android studio worked fine on eclipse when try run on android studion gives me error

error:android source generator: [myschoolapp1] androidmanifest.xml file not found 

in android section of build.gradle file, can try adding sourcesets manifest.srcfile variable.

android {   sourcesets {       main {           manifest.srcfile 'todolist/src/main/androidmanifest.xml'       }   } } 

that path may need adjusted slightly.

reference : androidmanifest.xml file not found

https://developer.android.com/studio/intro/migrate.html


Comments

Popular posts from this blog

c - Calling a function within a loop -

vb.net - Unbound DataGridView add row with checkbox error -

How i fill combobox items in Radgridview manually using in vb.net -