错误:无法解析ExpandableLayout

问题描述 投票:0回答:1

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

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

有人可以帮忙吗?

java android android-studio
1个回答
0
投票

FYISilenceDut:ExpandableLayout已过时。

您应在下面的项目级别build.gradle部分中添加。

allprojects {
    repositories {
         maven { url "https://jitpack.io" } // Need this
    }
}
© www.soinside.com 2019 - 2024. All rights reserved.