且构网

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

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

更新时间:2023-10-11 17:56:10

您在项目中使用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).