2016-03-28 5 views
1

Попытка использовать репозиторий, который доступен в jetpack.io, а также доступен через файл aar. Я попытался добавить модуль и его не работать, и теперь я пытаюсь добавить его, используя рюкзак репозиторий. вот мой Gradle файлНевозможно разрешить репозиторий github

buildscript { 
repositories { 
    maven { url "https://jitpack.io" } 
    mavenCentral() 


} 
dependencies { 

    classpath 'com.android.tools.build:gradle:1.5.0' 
} 
} 
apply plugin: 'com.android.application' 
configurations { 
all*.exclude group: 'com.android.support', module: 'support-v4' 
} 
dependencies { 
compile 'com.android.support:appcompat-v7:23.1.1' 
compile 'com.github.QuadFlask:colorpicker:0.0.10' 
} 

android { 
compileSdkVersion 23 
buildToolsVersion '23.0.1' 


sourceSets { 
    main { 
     manifest.srcFile 'AndroidManifest.xml' 
     java.srcDirs = ['src'] 
     resources.srcDirs = ['src'] 
     aidl.srcDirs = ['src'] 
     renderscript.srcDirs = ['src'] 
     res.srcDirs = ['res'] 
     assets.srcDirs = ['assets'] 
    } 

    // Move the tests to tests/java, tests/res, etc... 
    instrumentTest.setRoot('tests') 

    // Move the build types to build-types/<type> 
    // For instance, build-types/debug/java, build- types/debug/AndroidManifest.xml, ... 
    // This moves them out of them default location under src/<type>/... which would 
    // conflict with src/ being used by the main source set. 
    // Adding new build types or product flavors should be accompanied 
    // by a similar customization. 
    debug.setRoot('build-types/debug') 
    release.setRoot('build-types/release') 
} 

}

и хранилище по умолчанию находится здесь https://github.com/QuadFlask/colorpicker , когда им пытаются построить мое приложение это говорит не может разрешить com.github. как показано на рисунке:

enter image description here

ответ

0

попытка поставить следующую в корневую build.gradle файл (проект) (не сборки модуля)

allprojects { 
    repositories { 
     maven { url "https://jitpack.io" } 
    } 
} 
Смежные вопросы