Facebook sdk 11.0.0 not working on android device

Hey I’m using Unity 2019.4.17 and Facebook sdk 11.0.0 and I’m trying to make a simple login system to my mobile game.
I did everything’s according to this guide: Facebook Unity SDK Tutorial -Sdk setup and Login - YouTube and it seems that everything’s working fine on the editor, I’m gating message on the console that I’m logged in.

The problem is when I’m trying to test my game on my android phone and the game run perfectly but nothings happen when I’m trying to login to Facebook its seems that Facebook didn’t even initialize

I really tried everything

Hi,
Did you figure out a way? I am also facing the same issue.

unfortunately no I’m waiting for an update maybe it will fix it

I found a solution here:
Cant Login to facebook on android build - Playfab Community

this is what I did and It worked for me:

You will need to edit the proguard-user.txt

go to project settings under publishing settings if your using Gradle build you will have the

option to enable - “Custom Progurad file”

after enabling go to the file location open it and write there:

-keep class com.facebook.** { *; }
-keepattributes Signature

save it and run another build issue will be solved