Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Error:Android Source Generator: [project] AndroidManifest.xml file not found

i clone couchbase-turorial. But i got error in android studio AndroidManifest.xml not found. It is gradle project. I insert the following code

 sourceSets {
    main {
        manifest.srcFile 'HelloWorld/HelloWorld/src/main/AndroidManifest.xml'
    }
}

in build.gradle but it is not work. this question is very relevant. This is my build.gradle

like image 615
Nest Avatar asked Sep 16 '26 09:09

Nest


1 Answers

You shouldn't need to modify the build.gradle file. It seems like you may have imported the /couchbase-lite-tutorial-android folder rather than the /couchbase-lite-tutorial-android/HelloWorld folder into Android Studio.

like image 92
user01000101 Avatar answered Sep 19 '26 00:09

user01000101