API 28(P)のAndroid設計サポートライブラリが機能しない
android-P SDK環境の設定に成功しました。Androidデザインサポートライブラリを使用しようとすると、プロジェクトのビルドエラーが発生します。プロジェクト構成は次のとおりです。 IDE:3.2 Canary 17ターゲットAPI:28コンパイルAPI:28 apply plugin: 'com.android.application' apply plugin: 'kotlin-android' apply plugin: 'kotlin-android-extensions' android { compileSdkVersion 28 defaultConfig { applicationId "com.app.navigationpoc" minSdkVersion 21 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(include: ['*.jar'], …