2016-03-28 51 views
1

試圖使用jetpack.io中可用的存儲庫,也可通過aar文件我已嘗試添加模塊,它不工作,現在我試圖添加它使用jetpack存儲庫。這裏是我的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" } 
    } 
}