Gradle错误无法解决:com.github.Binary-Finery:Bungee:master-SNAPSHOT

时间:2019-01-19 20:41:03

标签: android gradle

**

每次都有一个问题:无法解决。

**

请帮助您了解此问题。 预先谢谢你。

  

错误:(34,13)无法解决:   com.github.Binary-Finery:Bungee:master-SNAPSHOT在文件中显示
在项目结构中显示   对话框

构建Graldle应用程序:

 if Date_new = Date_old Then
     If Period_new = period_old Then
        IF ID_new > ID_old Then
            Add the new rows to old dataset.
        end if
    else if Perioed_new > period_old Then
        Add the new rows to old dataset
    end if
 else if Date New > Date_old then
      Add the new rows to old dataset
 end if

sort dataset by date -> period -> ID.
save dataset.     

1 个答案:

答案 0 :(得分:4)

请添加项目级别gradle。

allprojects {
repositories {
    google()
    jcenter()
    maven {
        url "https://jitpack.io"
    }
}}