答案1
您指定使用 SDK v26。在 build.grandle 中设置compileSdkVersion 28
和,这样它就不会要求 SDK v 26。阅读此内容了解更多信息:targetSdkVersion 28
https://stackoverflow.com/questions/26694108/compilesdkversion-and-targetsdkversion 之间的区别是什么
这是一个编程问题,因此下次请使用 stackoverflow。
答案2
我没有指定任何内容,因为我不知道该怎么做。我该如何修复它?在关注其他人的帖子之前,我尝试将其更改为 28,但无济于事。
编辑以添加;我已将两个参数都更改为 28,并且 minsdk 也设置为 28,应该更低吗?
apply plugin: 'com.android.application'
android {
compileSdkVersion 28
defaultConfig {
applicationId "com.example.scott.justworkdamnit"
minSdkVersion 28
targetSdkVersion 28
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.1.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.2'
implementation 'com.android.support:design:26.1.0'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
}
附言:下次我会记得使用 stackoverflow,谢谢 ;)