错误:无法解决:android.arch.core:common:1.1.0

时间:2018-04-15 07:03:35

标签: android-studio android-gradle build.gradle

我的系统突然关闭,我打开它,我得到错误:无法解决:android.arch.core:common:我的android工作室中的1.1.0错误。我尝试过清理和重建项目,但它没有用。我在互联网上进行了研究,但没有一个能解决我的问题。

构建。 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:2.2.0'

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

allprojects {
repositories {
    jcenter()
    maven {
        url 'https://jitpack.io'
    }
    maven {
        url "https://maven.google.com"
    }
}
}

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

的build.gradle(APP)

apply plugin: 'com.android.application'

android {
compileSdkVersion 27
buildToolsVersion "27.0.1"
defaultConfig {
    applicationId "com.example.system2.tranxav"
    minSdkVersion 16
    targetSdkVersion 24
    versionCode 1
    versionName "1.0"
    testInstrumentationRunner 
  "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}
} 

dependencies {

compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', 
{
    exclude group: 'com.android.support', module: 'support-annotations'
})

   compile 'com.stripe:stripe-android:6.1.1'
compile 'com.stripe:stripe-java:1.47.0'
compile 'com.stripe:stripe-android:1.0.4'
compile 'com.squareup.retrofit2:retrofit:2.3.0'
compile 'com.squareup.retrofit2:converter-gson:2.3.0'
compile 'com.github.bumptech.glide:glide:3.7.0'
 compile 'com.android.volley:volley:1.0.0' // dependency file for Volley
compile 'com.android.support:appcompat-v7:27.0.2'
compile 'com.android.support:cardview-v7:27.1.0'
compile 'com.android.support:recyclerview-v7:27.1.0'
compile 'com.android.support:design:27.1.0'
compile 'com.basgeekball:awesome-validation:1.3'
compile 'com.parse:parse-android:1.16.5'
compile 'com.parse.bolts:bolts-tasks:1.4.0'
compile 'com.parse.bolts:bolts-applinks:1.4.0'
testCompile 'junit:junit:4.12'
compile 'com.google.android.gms:play-services-appindexing:8.4.0'
}

我不知道问题的原因是什么。

5 个答案:

答案 0 :(得分:73)

我通过在maven {url "https://maven.google.com"}之前移动jcenter()来解决此问题,如下所示:

repositories {
    maven { url "https://maven.google.com" }
    jcenter()
    maven { url 'https://jitpack.io' }
}

这是因为我发现jcenter()存储库已经删除了android.arch.core的目录,因此我们必须从android.arch.core:common-1.1.0.jar

获取此文件("https://maven.google.com"

答案 1 :(得分:9)

解决方案:在google()之前移动jcenter() - 它对我有效。

但问题是你有两个build.gradle个文件,你需要对它们进行更改。

答案 2 :(得分:8)

问题

在过去的几周里,jcenter上的一些谷歌Android库已经丢失,导致像你这样的错误。

示例:

Could not resolve all files for configuration ':app:debugCompileClasspath'.
Could not find common.jar (android.arch.core:common:1.1.0). Searched in the following locations:
      https://jcenter.bintray.com/android/arch/core/common/1.1.0/common-1.1.0.jar

jcenter的maven-metadata.xml仍然有效,并且包含导致gradle假定列出的文件在那里的版本,并且会尝试下载它们而不会回退到https://maven.google.com/。即使您google()下的build.gradle下面有jcenter(),也可以build.gradle下。

修复

在您的根目录google()中,确保jcenter() 之前 <{strong> repositories { google() jcenter() }

buildscript {
    repositories {
        google()
        jcenter()
    }

}

allprojects {
    repositories {
        google()
        jcenter()
    }
}

在大多数项目中,您必须在2个位置更新此内容。

maven { url "https://maven.google.com" }

注意:如果您的Gradle版本低于4.0,请使用google()代替CREATE PROCEDURE StockAvailability AS BEGIN SET NOCOUNT ON; INSERT INTO Trans(PID, CID, StockIssue) SELECT MP.PID, MP.CID, CASE WHEN MS.StockAvailable >= MP.StockPackage THEN 'True' WHEN MS.StockAvailable < MP.StockPackage THEN 'False' END AS StockIssue FROM MasterPackage MP LEFT JOIN MasterStock MS ON MS.CID = MP.PID END

答案 3 :(得分:1)

请检查代理详细信息,因为有些时间库因代理错误而不拉,请检查gradel.property文件

答案 4 :(得分:0)

我认为是因为androidx库。您应该在Gradle.properties中删除这两行

android.useAndroidX = true android.enableJetifier = true