首页 > 解决方案 > 如何在 Android Studio 上安装生菜库?

问题描述

如何在 Gradle 文件中的 Android Studio 上安装生菜库?

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’

}

标签: javaandroid-studioredislettuce

解决方案


在 lettuce 的入门部分中,有一个名为For Gradle Users的部分,介绍了如何从 gradle 添加库。我想只是添加:

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

会工作。您必须检查是否必须调整当前依赖项和/或修改proguard规则。

希望我有所帮助。


推荐阅读