Reference a library project without copying on Android Studio - Error:Configuration with name 'default' not found

Reference a library project without copying on Android Studio - Error:Configuration with name 'default' not found

我正在尝试将我的 Android 项目从 Eclipse 迁移到 Android Studio。我有一个 library project 用于其他项目,这就是我希望将它分开(不在项目中复制)的原因。为此,我遵循了 this answer。但是我收到以下错误:

Error:Configuration with name 'default' not found.

我阅读并尝试了互联网上针对此错误的所有答案,但没有解决我的问题。

settings.gradle

include ':my_android_app'
include ':my_android_project_lib'
project(':my_android_project_lib').projectDir = new File(settingsDir, '../my_android_project_lib')

build.gradle my_android_app 模块

apply plugin: 'com.android.application'

android {
    compileSdkVersion 19
    buildToolsVersion "21.1.2"

    defaultConfig {
        applicationId "my.android.app"
        minSdkVersion 15
        targetSdkVersion 19
    }

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
        }
    }
}

dependencies {
    compile project(path: ':my_android_project_lib')
}

build.gradle 用于 my_android_app 项目

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:1.0.0'
    }
}

allprojects {
    repositories {
        jcenter()
    }
}

编辑: This answer 帮我解决了这个问题。我必须将依赖项添加到项目的 build.gradle 文件中。

你能完成 "gradles tasks --info" 并看看你得到了什么吗?

否则, here 你可能会有所帮助。

干杯!