资源链接失败,错误:资源android:attr / dialogCornerRadius未找到

问题描述 投票:0回答:1

当我集成Stripe库时,它会创建链接资源SDK版本导致的问题。当我升级我的SDK版本时从v7:27.1.1到v7:28.0.0并将我的编译SDK版本更改为28问题得到解决,那么它将导致清单文件中的问题。为SDK版本添加此库,但不能解决问题。

[build.gradle文件:

configurations.all {
    resolutionStrategy {
        force 'com.android.support:support-v4:27.1.1'
    }}

android {
    compileSdkVersion 27
    defaultConfig {
        applicationId "com.goldtech.linkbreed"
        minSdkVersion 19
        targetSdkVersion 27
        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:27.1.1'
        implementation 'com.android.support:design:27.1.1'
        implementation 'de.hdodenhof:circleimageview:3.0.0'

        //  for slider images
        implementation 'com.github.smarteist:autoimageslider:1.3.2-appcompat'
        implementation 'com.stripe:stripe-android:11.2.0' // stripe  payment

        implementation 'com.jakewharton:butterknife:8.6.0'
        annotationProcessor 'com.jakewharton:butterknife-compiler:8.6.0'

        implementation 'com.github.shts:StoriesProgressView:3.0.0' //  for stories
        implementation 'com.allattentionhere:autoplayvideos:0.2.0' // for video in recyclerview

        //  indicator //
        implementation 'com.wang.avi:library:2.1.3'

    implementation 'com.github.bumptech.glide:glide:3.8.0'

        implementation 'com.android.volley:volley:1.1.1'

        //////////////   exoplayer  //////////////////////

        implementation 'com.google.android.exoplayer:exoplayer:r2.4.0'
        implementation 'com.google.android.exoplayer:exoplayer-core:r2.4.0'
        implementation 'com.google.android.exoplayer:exoplayer-dash:r2.4.0'
        implementation 'com.google.android.exoplayer:exoplayer-hls:r2.4.0'
        implementation 'com.google.android.exoplayer:exoplayer-smoothstreaming:r2.4.0'
        implementation 'com.google.android.exoplayer:exoplayer-ui:r2.4.0'


        implementation 'com.android.support.constraint:constraint-layout:1.1.3'
        implementation 'com.android.support:support-v4:27.1.1'
        //implementation 'com.google.firebase:firebase-crash:11.8.0'
        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'
    }

    apply plugin: 'com.google.gms.google-services'
android gradle build.gradle android-support-library android-resources
1个回答
0
投票

此错误是由于compileSdkVersion和库版本不匹配造成的。将compileSdkVersion更改为28

android {
    compileSdkVersion 28
    ...
}
© www.soinside.com 2019 - 2024. All rights reserved.