Android Studio:添加库作为参考,而不是导入

Android Studio: Add library as reference, not as import

这道题是sequel到

在现有的 Eclipse 解决方案中,我有一个库项目用作主应用程序项目中的 Android 依赖项。这意味着如果我编辑这个库并编译,主项目将更新为该库的最新版本。

我正在尝试在 Android Studio 中做同样的事情。这意味着不导入库,而是将其用作应用程序项目中的引用或依赖项。我已经尝试了两天,但没有运气。非常感谢您的帮助。

build.gradle(应用程序项目 - 没有什么让她感兴趣的,因为我没有改变太多)

apply plugin: 'com.android.application'

android {
    compileSdkVersion 21
    buildToolsVersion "21.1.2"

    defaultConfig {
        minSdkVersion 14
        targetSdkVersion 21
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.android.support:appcompat-v7:21.0.3'
}

您可以尝试以下步骤:

  1. 下载库
  2. File/import 模块
  3. Select 您的图书馆并重命名:LibraryName
  4. 转到 build.gradle 并写入。

build.gradle

dependencies {
......
compile project(':LibraryName')
.....
}

然后,如果您导入模块,您可以编辑库并投影其更新

假设你有 2 个项目,1 个应用程序和 1 个库项目,你想将所有外部依赖项推送到你的库项目,所以你的应用程序项目只依赖于库项目:

settings.gradle

include ':app'
include ':library'

app/build.gradle

apply plugin: 'com.android.application'

dependencies {
    compile project(':library')
}

library/build.gradle

apply plugin: 'android-library'

dependencies {
    compile 'external-dependencies-1'
    compile 'external-dependencies-2'
    ...
}