Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Error:(27, 0) Project with path ':library' could not be found in project ':app'

I have copied this library folder in root of project but always getting:

Error:(27, 0) Project with path ':library' could not be found in project ':app'. <a href="openFile:/home/oreo/Projects/RippleSample/app/build.gradle">Open File</a> 

Here is the Project structure:

RippleSample    > .gradle    > .idea    > app    > gradle    > library [just imported] 
like image 372
Oreo Avatar asked Feb 25 '16 06:02

Oreo


1 Answers

Create a settings.gradle file in the root of your project and add

include ':library'  

to the file. Just like this image:

enter image description here

like image 94
Szu.W Avatar answered Oct 19 '22 14:10

Szu.W