应用程序陷入E/com.facebook.internal.AttributionIdentifiers

Vis*_*ndu 21 android facebook

应用程序运行正常,直到1小时后.突然它开始卡在开头,并在logcat中显示1行错误消息

08-31 15:57:54.924 31700-31700/? E/com.facebook.internal.AttributionIdentifiers: getAttributionIdentifiers should not be called from the main thread
Run Code Online (Sandbox Code Playgroud)

这是唯一显示的日志.应用程序没有发生任何变化

Ant*_*sov 21

如果它没有帮助,请打开android/build.gradle.
添加下一行

allprojects {
    repositories {
    // ...

    configurations.all {
        resolutionStrategy {
            force 'com.facebook.android:facebook-android-sdk:4.34.0'
        }
    }
}
Run Code Online (Sandbox Code Playgroud)


Anu*_*dal 20

这个对我有用

com.facebook.android:facebook-android-sdk:4.35.0
Run Code Online (Sandbox Code Playgroud)