这是一个eclipse项目,我迁移到android studio,它工作得很好,直到我今天将android studio升级到最新版本,我现在有几个小时的问题,你能帮帮我吗?
这是我的build.gradle(模块):
apply plugin: 'com.android.application'
android {
compileSdkVersion 27
buildToolsVersion '27.0.3'
defaultConfig {
applicationId "com.example.com"
minSdkVersion 14
targetSdkVersion 27
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'),
'proguard-rules.txt'
}
}
}
dependencies {
implementation 'com.android.support:appcompat-v7:27.0.3'
implementation 'com.google.android.gms:play-services:12.0.1'
}
这是我的build.gradle(项目):
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.2'
}
}
allprojects {
repositories {
jcenter()
google()
}
}
答案 0 :(得分:2)
那是因为appcompat-v7
没有版本27.0.3。检查this page以查看已发布的版本(展开com.android.support
- > appcompat-v7
部分)。截至目前,这些27.X版本存在:
答案 1 :(得分:1)
替换
implementation 'com.android.support:appcompat-v7:27.0.3'
带
implementation 'com.android.support:appcompat-v7:27.0.2'
也许您在此粘贴了buildToolVersion
。