簡體   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