尝试使用 jetpack.io 中提供的存储库,也可以通过aar文件获取我尝试添加模块并且无法正常工作,现在我正在尝试添加它使用 jetpack存储库。这是我的gradle文件
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。如图所示:
答案 0 :(得分:0)
尝试将以下内容放入root(项目)的build.gradle文件中(而不是模块的构建版本)
allprojects {
repositories {
maven { url "https://jitpack.io" }
}
}