I have a question by implementing scoreloop on android. The official tutorial gives this code to make sure, that the user has accepted:
ScoreloopManagerSingleton.get().askUserToAcceptTermsOfService(this, new Continuation<Boolean>() {
public void withValue(final Boolean value, final Exception error) {
if (value != null && value) {
// user did accept the TOS, you can continue interacting with Scoreloop
}
}
});
The sad problem: When I am using this, I have to import the "Continuation". Eclipse want this:
import com.scoreloop.client.android.core.model.Continuation;
But when I want to know the Declaration: Source not found: The JAR of this class file belongs to container 'Android Private Libraries' which does not allow modifications to source attachements on its entries. The App does not work.