SOOMLA SoomlaProfile Provider not supported or not set as active: facebook

I have this error while executing my app. Im targeting Android, using Unity 4.6.2f1, Facebook SDK 6.2.2 and Soomla Core 1.0.7 and Soomla Profile 2.1.1.

I configured the Facebook plugin, the Soomla plugin (facebook is activated!) and there’re no errors there. In my code, I have an empty object with this script attached. A button calls the FacebookShare() function:

using UnityEngine;
using System.Collections;
using Soomla.Profile;

public class socialSharing : MonoBehaviour {


    // Use this for initialization
    void Start () 
    {
        SoomlaProfile.Initialize();
        SoomlaProfile.Login(Provider.FACEBOOK);
    }
    

    void FacebookShare () 
    {
        SoomlaProfile.UpdateStatus(Provider.FACEBOOK,"This is a test message","",null,true);
    }
}

What I’m doing wrong?

I see this discussion has been answered over at the Soomla forum:
http://answers.soom.la/t/soomla-soomlaprofile-provider-not-supported-or-not-set-as-active-facebook/2384