gpt4 book ai didi

android - 在 intelliJ 中添加依赖

转载 作者:行者123 更新时间:2023-11-29 15:02:26 25 4
gpt4 key购买 nike

我有一个 android 项目和添加它的说明 编译 'com.github.claucookie.miniequalizer:library:1.0.0'

作为项目中的依赖项。转到项目的项目结构后,我不知道要使用的正确选项。

最佳答案

第 1 步:

要添加依赖,请转到applevel gradle 文件

enter image description here

第 2 步:

在依赖中添加compile 'com.github.claucookie.miniequalizer:library:1.0.0',.after last line before } enter image description here

即。我已经添加了如下所示的依赖项

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'org.greenrobot:eventbus:3.0.0'
compile 'com.android.support:appcompat-v7:25.1.0'
compile 'com.android.support:design:25.1.0'
compile 'com.jakewharton:butterknife:8.4.0'
compile 'com.android.support:cardview-v7:25.1.0'
compile 'com.android.support:support-v4:25.1.0'
compile 'com.squareup.retrofit2:retrofit:2.1.0'
compile 'com.squareup.okhttp3:logging-interceptor:3.3.1'
compile 'com.squareup.retrofit2:converter-jackson:2.1.0'
compile 'com.android.support:recyclerview-v7:25.1.0'
compile 'com.github.traex.rippleeffect:library:1.3'
compile 'com.android.support.constraint:constraint-layout:1.0.0-beta4'
compile 'com.github.bumptech.glide:glide:3.7.0'
testCompile 'junit:junit:4.12'
testCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.5'
annotationProcessor 'com.jakewharton:butterknife-compiler:8.4.0'
debugCompile 'com.squareup.leakcanary:leakcanary-android:1.5'
releaseCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.5'
compile 'com.github.claucookie.miniequalizer:library:1.0.0'
}

第 3 步:

在此之后点击同步 Gradle enter image description here .

关于android - 在 intelliJ 中添加依赖,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42525044/

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