当前位置: 首页 > 知识库问答 >
问题:

错误:未能解决:android.arch.core:常见:1.1.0

雷锋
2023-03-14

我的系统突然关闭,我打开它,我得到错误:未能解决:android.arch.core:常见:1.1.0错误在我的Android Studio。我尝试过清洁和重建项目,但没有成功。我在网上研究过,但没有一个能解决我的问题。

建筑格雷德尔(项目)

// 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
}

建筑格雷德尔(应用程序)

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'
}

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

共有3个答案

燕星鹏
2023-03-14

解决方案:在jcenter()之前移动google()——这对我很有效。

但问题是您有两个构建。gradle文件,您需要对这两个文件进行更改。

夹谷烨赫
2023-03-14

在过去的几周里,jcenter上的一些Google 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/。即使你在你的build.gradle下有这个或google(),在jcenter()下。

在您的根构建中。gradle确保google()位于jcenter()之前。

repositories {
    google()
    jcenter()
}

在大多数项目中,你必须在两个地方更新这个。

buildscript {
    repositories {
        google()
        jcenter()
    }

}

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

注意:使用maven{url”https://maven.google.com“}而不是google()如果您的Gradle版本低于4.0。

阳昊
2023-03-14

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

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

这是因为我发现jcenter()仓库已经删除了android.arch.core的目录,所以我们必须从"<--plhd--3获取这个文件(android.arch.core:common-1.1.0.jar)/>"

 类似资料:
  • 本章内容包含常见错误码及错误信息描述,并给出解决问题的步骤。如果在开发过程中遇到报错,请先在本章中搜索解决方案,谢谢! 通用错误码,错误信息及解决方案 400(非法的client_id) client_id是否正确填写 client_id对应的申请应用是否通过审核 400(非法的client_secret) client_secret是否和client_id对应,有可能client_id是A应用的

  • 本文向大家介绍MySQL常见错误有哪些_MySQL常见错误的快速解决方法,包括了MySQL常见错误有哪些_MySQL常见错误的快速解决方法的使用技巧和注意事项,需要的朋友参考一下 1. TokuFT file system space is really low and access is restricted 解决方法:修改tokudb_fs_reserve_percent参数,不过该参数是静止

  • 调用config 接口的时候传入参数 debug: true 可以开启debug模式,页面会alert出错误信息。以下为常见错误及解决方法: invalid url domain当前页面所在域名与使用的appid没有绑定,请确认正确填写绑定的域名,仅支持80(http)和443(https)两个端口,因此不需要填写端口号(一个appid可以绑定三个有效域名,见 ]目录1.1.1)。 invalid

  • 我是艾薇的新手,所以这可能已经被报道过了,但是我知道的还不够多。我的搜索结果是空的,没有找到类似的经历。 因此,当我第一次下拉整个项目并且更新库引用时,我有时会收到未解决的依赖项警告。它似乎在随机库上。 例如,我刚刚在某个项目中添加了Commons-codec-1.9,而工作集中的其他项目使用1.6和1.7。当运行盛大的构建脚本时,突然对于1.6和1.7“配置[is]未找到”: 现在,我不完全确定

  • 本文向大家介绍laravel migrate初学常见错误的解决方法,包括了laravel migrate初学常见错误的解决方法的使用技巧和注意事项,需要的朋友参考一下 前言 最近断断续续开始 laravel 入门学习,想整个简单的通讯录系统,设立了两个表,一个 branches ,一个 contacts。在创建 migration 文件的时候,没有考虑仔细,先把 contacts 表建立了,con

  • 错误 1 Error: Cannot find module 'gh-pages' at Function.Module._resolveFilename (module.js:489:15) at Function.Module._load (module.js:439:25) 上面的报错是:找不到 gh-pages 模块。 解决方法: npm i gh-pages