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

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

**

每次出现问题时:无法解决。

**

请帮助理解这个问题。先感谢您 。

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

Build Gradle App:

    apply plugin: 'com.android.application'

android {
    compileSdkVersion 26
    buildToolsVersion '26.0.0'

    defaultConfig {
        applicationId "com.mkurbanov.lebap_kwartira"
        minSdkVersion 15
        targetSdkVersion 26
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled true
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:appcompat-v7:26.0.0-alpha1'
    compile 'com.android.support:design:26.0.0-alpha1'
    compile 'com.android.support:support-v4:26.0.0-alpha1'
    compile 'com.android.support:recyclerview-v7:26.0.0-alpha1'
    compile 'com.android.support:cardview-v7:26.0.0-alpha1'
    compile 'com.nineoldandroids:library:2.4.0'
    compile 'com.daimajia.slider:library:1.1.5@aar'
    compile 'com.balysv:material-ripple:1.0.2'
    compile 'com.daimajia.easing:library:2.0@aar'
    compile 'com.daimajia.androidanimations:library:2.3@aar'
    compile 'com.github.esafirm.android-image-picker:imagepicker:1.13.1'
    // for experimental rx picker
    compile 'com.github.esafirm.android-image-picker:rximagepicker:1.13.1'
    // If you have a problem with Glide, please use the same Glide version or simply open an issue
    compile 'com.github.bumptech.glide:glide:4.5.0'
    compile 'com.github.Binary-Finery:Bungee:master-SNAPSHOT'
}
android gradle
1个回答
4
投票

请添加项目级gradle。

allprojects {
repositories {
    google()
    jcenter()
    maven {
        url "https://jitpack.io"
    }
}}
© www.soinside.com 2019 - 2024. All rights reserved.