web-dev-qa-db-ja.com

Android Studioリソースのリンクに失敗しました

アプリをSDKバージョン28に更新しようとすると、常にこのエラーが発生します。

Android resource linking failed
Output:  C:\Users\nick\AndroidStudioProjects\BrowserElement\app\build\intermediates\incremental\mergeDebugResources\merged.dir\values\values.xml:2641: error: resource style/Widget.Design.CoordinatorLayout (aka de.test.browserelement:style/Widget.Design.CoordinatorLayout) not found.
error: failed linking references.

Command: C:\Users\nick\.gradle\caches\transforms-1\files-1.1\aapt2-3.2.0-4818971-windows.jar\cbd40259f1851f4cf906e8ce48516057\aapt2-3.2.0-4818971-windows\aapt2.exe link -I\
        C:\Users\nick\AppData\Local\Android\Sdk\platforms\Android-28\Android.jar\
        --manifest\
        C:\Users\nick\AndroidStudioProjects\BrowserElement\app\build\intermediates\merged_manifests\debug\processDebugManifest\merged\AndroidManifest.xml\
        -o\
        C:\Users\nick\AndroidStudioProjects\BrowserElement\app\build\intermediates\processed_res\debug\processDebugResources\out\resources-debug.ap_\
        -R\
        @C:\Users\nick\AndroidStudioProjects\BrowserElement\app\build\intermediates\incremental\processDebugResources\resources-list-for-resources-debug.ap_.txt\
        --auto-add-overlay\
        --Java\
        C:\Users\nick\AndroidStudioProjects\BrowserElement\app\build\generated\not_namespaced_r_class_sources\debug\processDebugResources\r\
        --custom-package\
        de.test.browserelement\
        -0\
        apk\
        --output-text-symbols\
        C:\Users\nick\AndroidStudioProjects\BrowserElement\app\build\intermediates\symbols\debug\R.txt\
        --no-version-vectors
    Daemon:  AAPT2 aapt2-3.2.0-4818971-windows Daemon #0

アプリを再構築し、ビルドツールを更新し、CoordinatorLayoutを個別に実装してみました。なぜこのエラーが発生するのか、実際にはわかりません。SDKバージョン27で機能しました。

Build.gradleファイルで何か問題がありましたか?:

apply plugin: 'com.Android.application'

Android {
 compileSdkVersion 28
defaultConfig {
    applicationId "de.test.browserelement"
    minSdkVersion 19
    targetSdkVersion 28
    versionCode 1
    versionName "1.0"
    testInstrumentationRunner "Android.support.test.runner.AndroidJUnitRunner"
    vectorDrawables.useSupportLibrary = true
}
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'
    implementation 'com.Android.support.constraint:constraint-layout:1.1.3'
    implementation 'com.Android.support:design:28.0.0'
    implementation 'com.Android.support:support-v4:28.0.0'
    implementation 'com.Android.support:support-vector-drawable:28.0.0'
    implementation 'com.Android.support:preference-v7:28.0.0'
    implementation 'me.dm7.barcodescanner:zxing:1.9.8'
    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'
}

そして、私が使用しているCoordinatorLayoutの場合、ここに.xmlファイルがあります。

<?xml version="1.0" encoding="utf-8"?>
<Android.support.design.widget.CoordinatorLayout xmlns:Android="http://schemas.Android.com/apk/res/Android"
xmlns:app="http://schemas.Android.com/apk/res-auto"
xmlns:tools="http://schemas.Android.com/tools"
Android:layout_width="match_parent"
Android:layout_height="match_parent"
tools:context=".MainActivity">
</Android.support.design.widget.CoordinatorLayout>

誰かが私の問題の解決策を持っていますか?

3
Remph

エラー:リソーススタイル/Widget.Design.CoordinatorLayout(別名de.test.browserelement:style/Widget.Design.CoordinatorLayout見つかりません

values.xmlおよびこれを変更します。

style/Widget.Design.CoordinatorLayout

に:

@style/Widget.Support.CoordinatorLayout

例えば:

<item name="coordinatorLayoutStyle">@style/Widget.Support.CoordinatorLayout</item>
6
ʍѳђઽ૯ท