访问远程gradle依赖

时间:2015-10-29 02:35:48

标签: android git maven android-gradle build.gradle

这是我第一次制作远程存储库。但我在访问它时遇到了一些问题。以下是我的gradle文件:

root gradle文件

 // Top-level build file where you can add configuration options 
 common to all sub-projects/modules.

buildscript {
repositories {
    jcenter()
}

dependencies {
    classpath 'com.android.tools.build:gradle:1.3.0'

    // NOTE: Do not place your application dependencies here; they belong
    // in the individual module build.gradle files
}
}

allprojects {
repositories {
    jcenter()
}
}

task clean(type: Delete) {
delete rootProject.buildDir
}

gradle文件

 apply plugin: 'com.android.application'

android {
compileSdkVersion 23
buildToolsVersion "23.0.0"

defaultConfig {
    applicationId "com.imagelettericon"
    minSdkVersion 11
    targetSdkVersion 23
    versionCode 1
    versionName "1.0"
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}
}

dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.android.support:appcompat-v7:23.1.0'
compile 'com.android.support:recyclerview-v7:23.1.0'
compile 'com.android.support:design:23.1.0'
compile 'com.github.akashandroid90:imageletter:1.0'
}

每次我同步代码时都会遇到相同的错误

  

无法解决:com.github.akashandroid90:imageletter:1.0

我已关注thisthis链接来制作我的回购广告。但现在我无法在gradle文件中访问它。

1 个答案:

答案 0 :(得分:1)

哟必须改变你的依赖性 compile 'com.github.akashandroid90:imageletter:1.0'错了。

阅读你应该使用的github repo中的doc。

dependencies {
    compile 'com.imageletter:ImageLetterIcon:1.0'
}

但是,您可以检查jcenter repo中的依赖关系 在回购中读取pom文件,我对这个名称有一些争议 应该是:

compile 'com.github.akashandroid90:image-letter-icon:1.0'

您可以使用另一种方法使用github repo和jitpack plugin添加github项目的依赖项 在这种情况下,您必须将此代表添加到build.gradle

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

和依赖:

dependencies {
        compile 'com.github.User:Repo:Tag'
    }

在你的情况下,它是

compile 'com.github.akashandroid90:ImageLetterIcon:1.0'

更多信息here