如何管理多个Android库项目的通用依赖项?

时间:2018-11-26 06:03:25

标签: java android gradle android-gradle build.gradle

我知道这个问题:How to add dependencies to project's top-level build.gradle file?

但是它没有给出我需要的答案。

可以说我的android项目有3个库模块ABC。 并且这三个都使用一个常见的依赖性,例如D1,其中D1是像DaggerRoom等之类的库。

现在,我没有在所有三个项目中添加D1,而是在项目级别D1中添加了build.gradle

我试图做这样的事情,但是它给出了如下错误:

Could not find method implementation() for arguments [directory 'libs'] on object of type org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler.

buildscript {
    ext.kotlin_version = '1.3.0'
    repositories {
        google()
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.2.1'
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        google()
        jcenter()
    }

    dependencies {
        implementation fileTree(dir: 'libs', include: ['*.jar'])
        implementation 'com.google.dagger:dagger-android-support:2.15'
        implementation "com.google.dagger:dagger:2.16"
        kapt "com.google.dagger:dagger-android-processor:2.16"
        kapt "com.google.dagger:dagger-compiler:2.16"
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

在项目级别build.gradle中添加依赖项的正确方法是什么?

这是项目链接:https://github.com/cerberusv2px/android-modular

4 个答案:

答案 0 :(得分:1)

创建一个新的模块项目,例如common-libs,并将所有常见的依赖项放入此项目中,打开common-libs/build.gradle

更改

implementation fileTree(dir: 'libs', include: ['*.jar']) 

收件人

api fileTree(dir: 'libs', include: ['*.jar'])

然后对于所有上游依赖项目,只需调用

dependencies {
    ...
    api project(':common-libs')
}

请参阅:https://developer.android.com/studio/build/dependencies#dependency_configurations

答案 1 :(得分:0)

我相信您正在寻找subprojects而不是allprojects,因为主模块未配置任何构建选项。

答案 2 :(得分:0)

在查看由Google自身构建的Android项目时,他们通常会在顶层build.gradle文件中创建ExtraPropertiesExtension。

这样做,您可以为项目正在使用的所有gradle模块创建一个全局扩展属性。

作为示例,您可以在build.gradle中执行以下操作:

ext.versions = [ 'dependencyVersion': 28 ]

,因此在模块的build.gradle模块中,您可以像下面这样引用该属性:

dependencies {
    ....
    implementation "com.some.dependency.you:use:${versions.dependencyVersion}"
}

以下是Nick Butcher的名为Plaid的应用的链接:Plaid

Google IO和Android Dev Summit应用程序使用了相同的模式,您可以在这里找到它们: Android Dev Summit App 2018 Google IO Schedule App 2018

答案 3 :(得分:0)

我使用的方法是

为每个模块中的常见问题使用单独的gradle文件,并将该gradle文件应用于模块的gradle文件中,

我从this article中学到的。

示例:

common.gradle

apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'

android {
    compileSdkVersion Versions.TARGET_SDK
    buildToolsVersion Versions.BUILD_TOOLS


    defaultConfig {
        minSdkVersion Versions.MIN_SDK
        targetSdkVersion Versions.TARGET_SDK
        versionCode 1
        versionName "1.0"

        consumerProguardFiles 'consumer-rules.pro'
    }

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }
    }
    dataBinding {
        enabled = true
    }
}

dependencies {
    implementation AndroidDeps.KOTLIN_STD_LIB
    implementation AndroidDeps.APP_COMPAT
    implementation AndroidDeps.CORE_KTX

    implementation ToolingDeps.TIMBER
}

feature_stats / build.gradle

android{
    repositories {
        maven { url 'https://jitpack.io' }
    }

    kotlinOptions {
        jvmTarget = "1.8"
    }
}

dependencies {
    implementation AndroidDeps.CONSTRAINT_LAYOUT
    implementation AndroidDeps.NAV_FRAGMENT_KTX
    implementation AndroidDeps.NAV_UI_KTX
    implementation AndroidDeps.MATERIAL_DESIGN

    implementation CustomViewDeps.MP_ANDROID_CHART
}