美文网首页
AAPT: error: resource android:at

AAPT: error: resource android:at

作者: 一城山水一成伤 | 来源:发表于2022-11-13 12:21 被阅读0次

    错误信息:

    app/build/intermediates/incremental/mergeDebugResources/merged.dir/values/values.xml:7200
    AAPT: error: resource android:attr/lStar not found.
    

    修改方案,固定react native 的版本


    image.png
    subprojects {
        afterEvaluate {project ->
            if (project.hasProperty("android")) {
                android {
                    compileSdkVersion 30     //do this in android/app/build.gradle too
                    buildToolsVersion '30.0.2'  //do this in android/app/build.gradle too
                }
            }
        }
        project.configurations.all {
            resolutionStrategy.force 'com.facebook.react:react-native:0.61.4'
        }
    }
    
    

    相关文章

      网友评论

          本文标题:AAPT: error: resource android:at

          本文链接:https://www.haomeiwen.com/subject/ixslxdtx.html