web-dev-qa-db-ja.com

エラー:(27、0)パス ':library'のプロジェクトがプロジェクト ':app'で見つかりませんでした

プロジェクトのルートに thislibraryフォルダをコピーしましたが、常に次のようになります。

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>

プロジェクトの構造は次のとおりです。

RippleSample
   > .gradle
   > .idea
   > app
   > gradle
   > library [just imported]
19
Oreo

settings.gradleファイルをプロジェクトのルートに追加して、

include ':library' 

ファイルに。この画像のように:

enter image description here

49
Szu.W

あなたのRippleSample/settings.gradle追加する必要があります:

include ':app' , ':library'
19