2016-03-28 23 views
1

jetpack.io'da bulunan bir deponun kullanılmaya çalışılması ve ayrıca bir aar dosyası aracılığıyla kullanılabilmesi, modülü eklemeyi denedim ve çalışmadığı için şimdi eklemeye çalışıyorum. jetpack deposu. Burada benim gradle dosyaGithub deposu çözülemiyor

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') 
} 

}

ve varsayılan veri havuzu burada bulunur https://github.com/QuadFlask/colorpicker zaman com.github çözemezse diyor Uygulamamı inşa etmeye çalışıyoruz im. resimde gösterildiği gibi:

enter image description here

cevap

0

deneyin sizin köküne aşağıdaki (projenin) build.gradle dosyasına (modülün yapı)

allprojects { 
    repositories { 
     maven { url "https://jitpack.io" } 
    } 
} 
koymak