在build.gradle文件中添加如下代码:
android { lintOptions { checkReleaseBuilds false abortOnError false ignoreWarnings true lintConfig rootProject.file('lint.xml') disable 'MissingTranslation' enable 'RtlHardcoded','RtlCompat', 'RtlEnabled' check 'NewApi', 'InlinedApi' //添加以下代码: lintConfigurations true } }
然后,在项目结构中的所有模块中,打开File -> Project Structure。在左侧的菜单中选择你的应用程序模块,然后选择 Dependencies 选项卡。在这里,你应该可以看到所有的依赖关系,包括 transitive dependencies。
确保你已经添加了正确的依赖关系,或者你也可以手动添加缺失的依赖项。如果你对依赖项存在疑惑,可以查看相关文档或询问相关开发者。