gpt4 book ai didi

java - 如何将新的依赖项插入 Gradle 项目?

转载 作者:行者123 更新时间:2023-11-29 06:54:23 25 4
gpt4 key购买 nike

我是 Gradle 的新手(我过去一直使用 Maven

我必须将此依赖项添加到 Android 项目:https://github.com/nostra13/Android-Universal-Image-Loader/wiki/Quick-Setup

所以,阅读库文档它只说使用 Gradle 我必须添加这个依赖项:

https://github.com/nostra13/Android-Universal-Image-Loader/wiki/Quick-Setup

我的问题是,在我的项目中,我有 2 个不同的 build.gradle 文件:

1) build.gradle 引用项目:

// Top-level build file where you can add configuration options common to all sub-projects/modules.

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

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

allprojects {
repositories {
jcenter()
}
}

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

2) build.gradle 引用Module app

apply plugin: 'com.android.application'

android {
compileSdkVersion 23
buildToolsVersion "23.0.1"

defaultConfig {
applicationId "com.example.android.pastafromrome"
minSdkVersion 15
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

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

这两个文件有什么区别?我必须准确地将以前的新依赖项放在哪里?

最佳答案

app\build.gradle 或称为 Module app 是特定于应用模块的。与在 Android Studio 中一样,一个项目可以有多个模块。例如,您现在拥有的一个应用程序模块,您可以为您的项目添加一个 watch 模块,该模块将具有与您的智能 watch 相关的工作,例如表盘等。

build.gradle 是一个“顶级构建文件”,您可以在其中添加所有模块通用的配置选项。

您应该将依赖项添加到所需的模块中。例如,现在您正在将 UIL 添加到与您的应用程序模块直接相关的项目中。因此,您应该将它添加到您的应用程序模块的 dependencies 部分或函数中(老实说,我不知道这叫什么,如果有人可以指导我,我将不胜感激)。所以你的 dependencies 部分应该是这样的

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.1.1'
compile 'com.nostra13.universalimageloader:universal-image-loader:1.9.5'
}

关于java - 如何将新的依赖项插入 Gradle 项目?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37589858/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com