我已经在macbook pro上安装了android studio,我确信我已经安装了所有必需的SDK,但是我仍然遇到错误问题。以下是错误消息
无法解决':app @ debug / compileClasspath':无法解析com.android.support:appcompat-v7:26.0.0-beta1。
无法解析com.android.support:appcompat-v7:26.0.0-beta1。 需要:project:app
没有缓存版本的com.android.support:appcompat-v7:26.0.0-beta1可用于离线模式。
这是我的gradle
apply plugin: 'com.android.application'
android {
compileSdkVersion 26
defaultConfig {
applicationId "com.example.air.my1st"
minSdkVersion 15
targetSdkVersion 26
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:26.0.0-beta1'
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
implementation 'com.android.support:design:26.0.0-beta1'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:0.5'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:2.2.2'
}
提前全部谢谢。
答案 0 :(得分:0)
在build.gradle中添加此代码:
allprojects {
repositories {
jcenter()
maven {
url "https://maven.google.com"
}
}
}
答案 1 :(得分:0)
尝试更改targetSdkVersion
27
对最新内容的依赖:
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support:design:27.1.1'