美文网首页
Android:Cannot access 'androidx.

Android:Cannot access 'androidx.

作者: 因为我的心 | 来源:发表于2022-11-16 10:45 被阅读0次

    一、前言:

    Android Studio 整个Kotlin类报错,只提示报错,并不影响编译、运行和打包
    但是看着很不爽,于是解决之……

    Cannot access 'androidx.core.app.OnMultiWindowModeChangedProvider' which is a supertype of 'cn.neoclub.uki.party.CreatePartyActivity'. Check your module classpath for missing or conflicting dependencies.

    726a73b4ee1c1a0ee62f5d9398aed19.jpg

    出现错误的原因是:我在升级了androidx.core:core-ktx到1.7.0版本出现的,在这个版本Android官方加入了OnMultiWindowModeChangedProvider接口。

    解决方法,比较简单粗暴,我是再次升级了:

    implementation  'androidx.core:core-ktx:1.9.0-alpha02'
    

    重新Sync Now之后,我原来报红的类,就没有问题了。希望这篇文章能给同样遇到这个奇奇怪怪的错误的小伙伴有所启发。

    相关文章

      网友评论

          本文标题:Android:Cannot access 'androidx.

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