因此,我使用targetSdkVersion 25构建了一个应用程序,但是后来我意识到必须高于26。我试图将其升级到API 27,但出现此错误:
错误:(24,13)无法解决:com.android.support:appcompat-v7:27.0.0
在此消息下有三个选项:
我的build.gradle(Project):
// 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.1.3'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
maven {
url "https://maven.google.com"
}
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
我的build.gradle(Module:app)
apply plugin: 'com.android.application'
android {
compileSdkVersion 27
buildToolsVersion '27.0.3'
defaultConfig {
applicationId "com.simon.onequoteaday"
minSdkVersion 14 //9
targetSdkVersion 27
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
productFlavors {
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
testCompile 'junit:junit:4.12'
compile 'com.google.android.gms:play-services-ads:11.0.0'
compile 'com.android.support:appcompat-v7:27.1.1'
}
我还安装了所有API 27 SDK。 任何可能的解决方案?谢谢
编辑: 我已经使用了其他线程提供的解决方案,但是它们不能解决我的问题。我认为我的问题不同。
答案 0 :(得分:0)
更改
buildtoolsversion '27.0.0'
和依赖项为:
compile 'com.android.support:appcompat-v7:27.0.0'
并保持与Internet的连接并下载它要求的任何存储库。
希望有帮助。
答案 1 :(得分:0)
将maven {url "https://maven.google.com"}
替换为google()
;位置已更改。
答案 2 :(得分:0)
安装最新的Android Studio版本即可解决问题