如何在Android Studio上的Gradle文件中安装生菜库?
有什么解决方案可以编译库?
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:1.0.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.2'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
implementation 'com.google.android.material:material:1.0.0'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test:runner:1.1.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.0’
}
答案 0 :(得分:1)
在生菜的getting started部分中,有一个名为供Gradle用户使用的部分,介绍如何从gradle中添加库。我认为只需添加:
implementation 'io.lettuce:lettuce-core:5.1.3.RELEASE'
会工作。您必须检查是否必须调整当前的依赖关系和/或修改proguard
规则。
希望我能帮上忙。