Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

App getting stuck with E/com.facebook.internal.AttributionIdentifiers [duplicate]

Tags:

App was running fine till 1 hour back. Suddenly it started getting stuck at the opening and shows 1 line error message in logcat

08-31 15:57:54.924 31700-31700/? E/com.facebook.internal.AttributionIdentifiers: getAttributionIdentifiers should not be called from the main thread 

That's the only log being shown. There were no changes happened on app

like image 870
Viswanath Kumar Sandu Avatar asked Aug 31 '18 10:08

Viswanath Kumar Sandu


2 Answers

this one worked for me

com.facebook.android:facebook-android-sdk:4.35.0 
like image 147
Anuj Jindal Avatar answered Sep 30 '22 06:09

Anuj Jindal


If it does not help, open android/build.gradle.
Add next lines

allprojects {     repositories {     // ...      configurations.all {         resolutionStrategy {             force 'com.facebook.android:facebook-android-sdk:4.34.0'         }     } } 
like image 21
Anton Kuznetsov Avatar answered Sep 30 '22 06:09

Anton Kuznetsov