本文介绍了appcompat-v7:28.0.0-rc01生成问题的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试创建新的Kotlin项目,已将Android Studio更新为3.1.4,将Gradle更新为4.9,将SDK更新为28(也安装了存储库).因此我一直在我的appcompat上收到此错误.我什至将其更改为alpha1,但仍然没有任何反应.

I am trying to create my new Kotlin project, I have updated my Android Studio to 3.1.4 and my Gradle to 4.9 and my SDK to 28 (Repository is installed too). so I get this error on my appcompat all the time. I even changed it to alpha1 but still nothing happens.

在我的Gradle里面

inside my Gradle I have

implementation 'com.android.support:appcompat-v7:28.0.0-rc01'

我的日志是:

推荐答案

在buildscript-> allprojects中的build.gradle中添加以下存储库

Add below repository in your build.gradle inside buildscript -> allprojects

repositories {
    maven { url 'http://repo1.maven.org/maven2' }
    jcenter { url "http://jcenter.bintray.com/" }
}

这篇关于appcompat-v7:28.0.0-rc01生成问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-25 00:53