プロジェクトにライブラリをインポートできません。常に次のエラーが表示されます。
Error:Configuration with name 'default' not found.
settings.gradle
include ':app'
include ':libraries:library'
ビルドグラドル
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.android.support:appcompat-v7:21.0.3'
compile project(':libraries:library')
}
私は使っている:
更新 (動作しません)
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.android.support:appcompat-v7:21.0.3'
compile 'com.getbase:floatingactionbutton:1.4.0'
compile project(':libraries:library')
}
エラー
Error:A problem occurred configuring project ':app'.
> Cannot evaluate module library : Configuration with name 'default' not found.