以下问题最新版本安卓不会出现,如果不想改错,也可以下载安卓最新版本进行操作
1、只需要将以下内容中的文件内容修改就可以:
2、代码修改如下:
apply plugin: 'com.android.application'
android {
compileSdkVersion 28
buildToolsVersion "28.0.3"
defaultConfig {
applicationId "com.example.lijia.lijia"
minSdkVersion 15
targetSdkVersion 28
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:26+' //将此处28版本修改为26,注意“.”去掉
}
3、然后下载相应版本就可以了。
转载地址:https://blog.csdn.net/mhl18820672087/article/details/78385361