Hi everyone! I’ve been searching for hours and trying every method i found without any luck, so here we go:
In my Facebook > Edit Settings window it shows the warning “Keytool not found”. Also, when i make a build i get an error stating “Your Android setup is not correct. See Settings in Facebook menu”.
I made the private keystore and key for the application, and I’ve already set the variables JAVA_HOME (to my jdk folder) and PATH (adding the bin folder of JAVA_HOME, and the path of OpenSSL\bin).
I also went to the FacebookAndroidUtil class to change the method DebugKeyStorePath, including the local drive at the start of the sentence like this:
System.Environment.GetEnvironmentVariable(“HOMEDRIVE”) +
System.Environment.GetEnvironmentVariable(“HOMEPATH”) + @“.android\debug.keystore” :
System.Environment.GetFolderPath(System.Environment.SpecialFolder.Personal) + @“/.android/debug.keystore”;
So now it points to the debug.keystore, but it seeems no progress was made. What have i missed?