我最近把我的mindSdkVersion改为17,targetSdkVersion改为21,并且犯了很多错误。我修复了其中一些,但我无法修复这个:
Error:(28, 13) Failed to resolve: com.android.support:appcompat-v7:21.0.1
我在Mac上使用Android Studio,我有Android支持库。
我的build.gradle文件:
apply plugin: 'com.android.application'
android {
compileSdkVersion 21
buildToolsVersion "24.0.3"
defaultConfig {
applicationId "com.swit.sedamaker"
minSdkVersion 17
targetSdkVersion 21
versionCode 2
versionName "1.01"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
productFlavors {
}
}
dependencies {
compile 'com.android.support:appcompat-v7:21.0.1'
compile fileTree(include: ['*.jar'], dir: 'libs')
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
testCompile 'junit:junit:4.12'
}
尝试替换为:
implementation 'com.android.support:appcompat-v7:23.3.0'
最好匹配compileSdkVersion
,buildToolsVersion
,targetSdkVersion
的API版本。尝试使用最新的SDK
应用插件:'com.android.application'
android {
compileSdkVersion 24
buildToolsVersion "24.0.3"
defaultConfig {
...
minSdkVersion 17
targetSdkVersion 24
...
}
...
}
dependencies {
compile 'com.android.support:appcompat-v7:24.2.0'
...
}
当然,如果您愿意,可以将targetSdkVersion设置为21。targetSdkVersion用于通知系统,您已经按照文档所述的目标版本测试了应用程序。
Android:Target SdkVersion
指定应用程序目标API级别的整数。如果未设置,则默认值等于给定给minSdkVersion的值。此属性通知系统您已针对目标版本进行了测试,系统不应启用任何兼容性行为来保持应用程序与目标版本的前向兼容性。该应用程序仍然可以在旧版本上运行(最新版本)。
更多信息,请阅读compileSdkVersion和targetSdkVersion之间的区别?对于compileSdkVersion
和targetSdkVersion
。
发生错误是因为支持库的21.0.1不存在。
dependencies{
//it requires compileSdkVersion 21
compile 'com.android.support:appcompat-v7:21.0.3'
compile 'com.android.support:appcompat-v7:21.0.2'
compile 'com.android.support:appcompat-v7:21.0.0'
}
我在Android studio中遇到了这个问题。 这是我的格雷德代码:
Android项目,在下面的链接上 https://gitlab.com/vandy-aad-2/aad-2-assg-1/
尝试:使用--stacktrace选项运行以获取堆栈跟踪。使用--info或--debug选项运行以获取更多日志输出。 生成失败
我是Android Studio的新手,它工作得很好,我做了几个应用程序,它们工作得很好,然后我从GitHub下载了一个项目,试图导入它,但这个项目没有工作,但现在每次我做新项目时都会出现这个错误:(我不能上传图片) 导入;v7是红色的,它表示无法解析符号v7 它给我的信息是: 无法解析“:app@debug/compileClasspath”的依赖关系:无法解析com.android。支持:ap
我想尝试用于Android开发的Intellij平台,但即使在新鲜之后,它也显示Gradle失败。请帮助。 我试过调整线路 一些其他版本,但没有效果。 这是我的模块级Gradle 这是我的项目级别 Gradle Intellij构建gradles时我得到的错误是