如何在android工作室的gradle文件中安装生菜库?
https://lettuce.io
有什么办法可以编译这个库吗?

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’

}

最佳答案

在生菜的getting started部分中,有一个部分叫做gradle用户如何从gradle添加库。我想补充一下:

implementation 'io.lettuce:lettuce-core:5.1.3.RELEASE'

会有用的。必须检查是否必须调整当前依赖项和/或修改proguard规则。
希望我能帮忙。

10-08 05:11