繁体   English   中英

错误:无法解析 ExpandableLayout

[英]ERROR: Failed to resolve ExpandableLayout

我正在尝试在 android 工作室中导入现有项目,但我面临以下错误

Could not find com.github.SilenceDut:ExpandableLayout:1.2.0.

有人可以帮忙吗?

仅供参考SilenceDut:ExpandableLayout已弃用。

您应该在项目级别build.gradle部分添加以下内容。

allprojects {
    repositories {
         maven { url "https://jitpack.io" } // Need this
    }
}

注意 - compile是旧的。 使用implementation

implementation 'com.github.SilenceDut:ExpandableLayout:1.2.0'

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM