App crashes during run-time after updating to Android Studio 3.6

前端 未结 1 574
甜味超标
甜味超标 2021-02-18 22:10

I already tried Invalidating caches, cleaning the project, re-installing the app. I\'m not using data binding.

I\'m using Realm plugin io.realm:re

相关标签:
1条回答
  • 2021-02-18 22:39

    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.

    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).

    0 讨论(0)
提交回复
热议问题