当前位置: 首页 > 知识库问答 >
问题:

错误:“错误:资源'attr/layout_anchorgravity'的值与配置''重复。在android Studio中?

乔望
2023-03-14

我使用的是android studion 3.4.1(最新版本)。我已经导入了一个项目,它需要:Android SDK v23 Android构建工具v23.0.2 Android Support Repository v23.3.0

我已经完成了所有需要的更新,但现在运行程序时,我面临着这个问题。

  android {
     compileSdkVersion 23 
      ....}

    .... 
  dependencies {
   implementation fileTree(dir: 'libs', include: ['*.jar'])
   implementation 'com.android.support.constraint:constraint-layout:+'
   testImplementation 'junit:junit:4.12'
   //noinspection GradleCompatible
   implementation 'com.android.support:appcompat-v7:26.1.0-alpha1'
   implementation 'com.android.support:design:23.4.0'
   implementation 'com.android.support:support-v4:23.4.0'
  }

共有1个答案

曹鹏海
2023-03-14

您应该做的一件事是将您的应用程序迁移到AndroidX,方法是在菜单栏上执行Refactor->migrate to AndroidX。这个链接在迁移到AndroidX Google开发人员时可能会有帮助

 类似资料: