如何修复 Android Studio 1.4 上的错误 "Failed to resolve:..."
How to fix error "Failed to resolve:..." on Android Studio 1.4
我无法在 Gradle 中添加存储库。
我一直在寻找这个问题的答案但失败了
Build.gradle 应用程序中的文件:
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.1"
defaultConfig {
applicationId "com.mkurbanov.lebap_kwartira"
minSdkVersion 15
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.android.support:appcompat-v7:23.0.1'
compile 'com.android.support:design:23.0.1'
compile 'com.android.support:support-v4:23.0.1'
compile 'com.android.support:recyclerview-v7:23.0.1'
compile 'com.android.support:cardview-v7:23.0.1'
compile 'com.nineoldandroids:library:2.4.0'
compile 'com.daimajia.slider:library:1.1.5@aar'
compile 'com.balysv:material-ripple:1.0.2'
compile 'com.yqritc:recyclerview-flexibledivider:1.4.0'
compile 'com.daimajia.easing:library:2.0@aar'
compile 'com.daimajia.androidanimations:library:2.3@aar'
compile 'com.github.esafirm.android-image-picker:imagepicker:x.y.z'
// for experimental rx picker
compile 'com.github.esafirm.android-image-picker:rximagepicker:x.y.z'
}
Build.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()
maven { url 'https://maven.google.com' }
maven { url 'https://jitpack.io' }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
得到这样的错误:
Error:(36, 13) Failed to resolve: com.github.esafirm.android-image-
picker:rximagepicker:x.y.z Show in File
Show in Project Structure
dialog
Error:(34, 13) Failed to resolve: com.github.esafirm.android-image-
picker:imagepicker:x.y.z Show in File
Show in Project Structure
dialog
我需要添加这个 repository。
但它不起作用。
在您的 Build.gradle 中将 x.y.z 替换为 1.13.1
将 compile 'com.github.esafirm.android-image-picker:imagepicker:x.y.z'
更改为 compile 'com.github.esafirm.android-image-picker:imagepicker:1.13.1'
和
compile 'com.github.esafirm.android-image-picker:rximagepicker:x.y.z'
至
compile 'com.github.esafirm.android-image-picker:rximagepicker:1.13.1'
我无法在 Gradle 中添加存储库。
我一直在寻找这个问题的答案但失败了
Build.gradle 应用程序中的文件:
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.1"
defaultConfig {
applicationId "com.mkurbanov.lebap_kwartira"
minSdkVersion 15
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.android.support:appcompat-v7:23.0.1'
compile 'com.android.support:design:23.0.1'
compile 'com.android.support:support-v4:23.0.1'
compile 'com.android.support:recyclerview-v7:23.0.1'
compile 'com.android.support:cardview-v7:23.0.1'
compile 'com.nineoldandroids:library:2.4.0'
compile 'com.daimajia.slider:library:1.1.5@aar'
compile 'com.balysv:material-ripple:1.0.2'
compile 'com.yqritc:recyclerview-flexibledivider:1.4.0'
compile 'com.daimajia.easing:library:2.0@aar'
compile 'com.daimajia.androidanimations:library:2.3@aar'
compile 'com.github.esafirm.android-image-picker:imagepicker:x.y.z'
// for experimental rx picker
compile 'com.github.esafirm.android-image-picker:rximagepicker:x.y.z'
}
Build.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()
maven { url 'https://maven.google.com' }
maven { url 'https://jitpack.io' }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
得到这样的错误:
Error:(36, 13) Failed to resolve: com.github.esafirm.android-image- picker:rximagepicker:x.y.z Show in File
Show in Project Structure dialogError:(34, 13) Failed to resolve: com.github.esafirm.android-image- picker:imagepicker:x.y.z Show in File
Show in Project Structure dialog
我需要添加这个 repository。 但它不起作用。
在您的 Build.gradle 中将 x.y.z 替换为 1.13.1
将 compile 'com.github.esafirm.android-image-picker:imagepicker:x.y.z'
更改为 compile 'com.github.esafirm.android-image-picker:imagepicker:1.13.1'
和
compile 'com.github.esafirm.android-image-picker:rximagepicker:x.y.z'
至
compile 'com.github.esafirm.android-image-picker:rximagepicker:1.13.1'