我刚刚部署了一个名为TypedPreferences的Android库。我在其他Android项目中使用它已有几天了。突然间,它停止了工作 - 依赖关系再也找不到了。我注意到Gradle在清理项目时只下载了一个文件:
Download http://repo1.maven.org/maven2/info/metadude/android/typed-preferences/ \
1.0.0/typed-preferences-1.0.0.aar.asc
这些是我的宠物项目的构建文件:
build.gradle
:
// Top-level build file where you can add configuration
// options common to all sub-projects/modules.
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.8.+'
}
}
allprojects {
repositories {
mavenCentral()
maven {
url "${System.env.HOME}/.m2/repository"
}
maven {
url "https://github.com/novoda/public-mvn-repo/raw/master/releases"
}
}
}
app/build.gradle
:
apply plugin: 'android'
apply plugin: 'idea'
idea {
module {
downloadJavadoc = true
downloadSources = true
}
}
android {
compileSdkVersion 19
buildToolsVersion "19.0.1"
defaultConfig {
minSdkVersion 8
targetSdkVersion 19
versionCode 1
versionName "1.0"
}
buildTypes {
release {
runProguard false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
packagingOptions {
exclude 'META-INF/LICENSE'
exclude 'META-INF/NOTICE'
}
}
dependencies {
compile 'com.android.support:support-v4:19.0.+'
compile 'com.android.support:appcompat-v7:19.0.+'
compile 'com.squareup.okhttp:okhttp:1.3.+'
compile 'com.fasterxml.jackson.core:jackson-databind:2.2.+'
compile 'com.fasterxml.jackson.core:jackson-core:2.2.+'
compile 'com.fasterxml.jackson.core:jackson-annotations:2.2.+'
compile 'com.novoda:sqliteprovider-core:1.0.+'
compile 'com.androidmapsextensions:android-maps-extensions:2.1.+'
compile 'com.google.android.gms:play-services:3.2.+'
compile 'info.metadude.android:typed-preferences:1.0.0'
}
如您所见,我还允许Gradle在此处查看我的本地Maven缓存:
maven {
url "${System.env.HOME}/.m2/repository"
}
我删除了相关文件夹以避免从那里加载Gradle。
图书馆的build.gradle
文件可能存在错误配置 - 请在此处找到:
请告诉我是否可以在不部署到Maven Central的情况下在本地测试您的修复程序。
答案 0 :(得分:1)
看起来已发布的POM的packaging
元素具有错误的值。它应该是aar
,而不是aar.asc
。
答案 1 :(得分:1)
此外,您始终可以强制下载工件类型。只需添加依赖项,如:
compile "group:artifact:version@type"
在你的情况下,它将是
compile "info.metadude.android:typed-preferences:1.0.0@aar"
就是这样。