当我将android工作室更新为version 3.0.1
后,当我打开我的项目时。我收到了一些错误,我无法看到设计页面,但是如果我运行该应用程序。我没有问题。
首先出现这个错误:
警告:指定的Android SDK Build Tools版本(23.0.3)是 忽略,因为它低于最低支持版本(26.0.2) Android Gradle Plugin 3.0.1。 Android SDK Build Tools 26.0.2将是 用过的。要取消此警告,请删除" buildToolsVersion' 23.0.3'" 从您的build.gradle文件,作为每个版本的Android Gradle 插件现在有一个默认版本的构建工具。
第二个错误:
无法加载未知错误的AppCompat ActionBar。
这是我的build.gradle(app):
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.3"
defaultConfig {
applicationId "ir.hosseinyha.kardoon"
minSdkVersion 16
targetSdkVersion 23
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:23.0.3'
compile 'com.github.bumptech.glide:glide:3.7.0'
testCompile 'junit:junit:4.12'
compile 'com.google.android.gms:play-services-appindexing:9.8.0'
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:23.4.0'
compile 'com.android.support:design:23.4.0'
}
坦克寻求帮助
答案 0 :(得分:0)
您应将所有com.android.support依赖项升级到最低支持版本(26.0.2+)。
还将tarcompileSdkVersion,buildToolsVersion,targetSdkVersion更改为实际值(26+,但最好支持最新的-28)。请注意,依赖项应与buildTools和targetSdk具有相同的版本。