最近我用 Android Studio 4.1 更新了 android studio,但是更新后,studio 没有在 IDE 中显示带有红色下划线或红色条右侧的错误。每次我运行该应用程序时,它都会在编译后引发一个错误。所以很难说错误在哪里
有谁知道该怎么做?
注意:使缓存无效并重新启动、同步项目、清理、重建不起作用
最近我用 Android Studio 4.1 更新了 android studio,但是更新后,studio 没有在 IDE 中显示带有红色下划线或红色条右侧的错误。每次我运行该应用程序时,它都会在编译后引发一个错误。所以很难说错误在哪里
有谁知道该怎么做?
注意:使缓存无效并重新启动、同步项目、清理、重建不起作用
在 Windows 中C:\Users\{USER_NAME}\AppData\Roaming\Google\
,删除该AndroidStudio4.1
文件夹并启动您的 Android Studio,然后它会要求导入设置,不要导入任何设置,而是继续设置,问题将得到解决。
对于 Ubuntu 用户如果您的 android studio 在更新后无法正常打开。只需在 FileManager 中按 CTR+H(显示隐藏文件)。现在您可以看到 .local 文件。现在去从那里删除谷歌文件。(路径 -> 本地/共享/谷歌)。
我遇到了同样的问题,经过多次重启、缓存失效、清理、重建、删除.idea
和.gradle
文件,我意识到我需要做的就是在类路径上更新我的 Kotlin 版本 - 即构建 - 项目文件。
我的 Kotlin 版本是 1.4.32,但我将其升级到 1.5.0
dependencies {
classpath 'com.android.tools.build:gradle:4.2.1'
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$navigationVersion"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.0"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}