且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

更新到 Android Studio 3.6 后,应用程序在运行时崩溃

更新时间:2023-10-11 17:47:46

你在你的项目中使用 Realm 吗?我遇到了同样的问题并通过将我的 Realm 依赖项升级到最新的稳定版本来修复它,因为我发现 这个相关的问题.

Are you using Realm in your project? I had the same problem and fixed it by upgrading my Realm dependency to the latest stable version because I found this related issue.

关于 build.gradle(项目):

On build.gradle(Project):

dependencies {

    classpath 'io.realm:realm-gradle-plugin:6.0.2'
}

在那之后,我清理并重建了项目(以防万一).

After that, I cleaned and rebuilt the project (just in case).