web-dev-qa-db-ja.com

不明なエラーでAppCompat ActionBarのロードに失敗しましたか?

Error Snap

build.gradleファイル

    apply plugin: 'com.Android.application'

Android {
    compileSdkVersion 28
    defaultConfig {
        applicationId "io.dume.dume"
        minSdkVersion 15
        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:28.0.0-alpha3'
    implementation 'com.Android.support.constraint:constraint-layout:1.1.2'
    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'
 }

新しいプロジェクトを作成しましたが、activity_main.xmlでこのエラーが劇的に見つかりました。何も変更しませんでした。修正はありますか?

8
user8965395

同じ問題がありました。 Android Studioのバグです。

スタイルxml-fileでこれを変更します:

<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">

これに:

<style name="AppTheme" parent="Base.Theme.AppCompat.Light.DarkActionBar">

私のために働く。

19
Anton Prokopov

ターゲットSDKバージョンを27に設定します。コンパイルSDKバージョンを27に設定します。 28.0.0-alpha3から27.1.1までのアプリ互換バージョン。

それでもSDKバージョン28を使用する場合

何も変更せずにalpha3をalpha1に置き換えるだけです

2
Jaswant Singh

それが起こったとき、これは私のために働いた、私はそれが28で動作しない理由がわからない:

//use this instead 
compileSdkVersion 27
buildToolsVersion '27.0.3'
targetSdkVersion 27

dependencies{

//switch to these
implementation 'com.Android.support:appcompat-v7:27.0.0-alpha'
implementation 'com.Android.support.constraint:constraint-layout:1.0.2'
implementation 'com.Android.support:design:27.0.0'

}
1
S. Cap

YouTubeで3つの方法を使用してこのエラーを修正します

Solution

0
shellhub