【问题标题】:Cannot Resolve the github repository无法解决 github 存储库
【发布时间】:2016-03-28 13:16:35
【问题描述】:

尝试使用 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。如图所示:

【问题讨论】:

    标签: android git maven github gradle


    【解决方案1】:

    尝试将以下内容放入您的根(项目)build.gradle 文件(而不是模块的构建)

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

    【讨论】:

      猜你喜欢
      • 2021-04-19
      • 2016-10-09
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2012-06-10
      • 2021-04-05
      • 2018-02-04
      相关资源
      最近更新 更多