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

标签 android gradle

**

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

**

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

Error:(34, 13) Failed to resolve: com.github.Binary-Finery:Bungee:master-SNAPSHOT Show in File
Show in Project Structure dialog



构建Graldle应用程序:
    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'
}

最佳答案

请添加项目级别gradle。

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

关于android - Gradle错误无法解决:com.github.Binary-Finery:Bungee:master-SNAPSHOT,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54271205/

相关文章:

gradle - 在插件发布期间排除文件和文件夹

flash - 使用 GradleFX 插件将多个 ant mxmlc 目标转换为 gradle

php - Slim Framework 返回 204,带有 5 个额外的新行和选项卡

spring - 使用 Play Framework 和 Gradle 运行 Spring 上下文

gradle - 在 gradle 的另一个多模块项目中拥有一个多模块项目

android - 无法在 Android 中处理重复的推文

android - 任务 ':react-native-custom-tabs:transformDexArchiveWithExternalLibsDexMergerForDebugAndroidTest'的执行失败

Android:如何将一个微调器中的字符串值复制到另一个微调器

android - 在网站上存储数据和从网站访问数据

java - android 线程和处理程序最佳实践