User profile

If you know the user's gender and/or birthday, you can share them with us so that we can suggest better matching apps to the user.

private function setAdjoeProfile():void {
  adjoe.setProfile(source, gender, year, month, day);
}

The parameters to this call are as follows:

  • source: String: Where did you get the user's profile information from? E.g. "facebook", "google", ...

  • gender: String: The gender of the user. Must be one of AdjoeSDK.GENDER_MALE, AdjoeSDK.GENDER_FEMALE or AdjoeSDK.GENDER_UNKNOWN.

  • year: int: The user's year of birth.

  • month: int: The user's month of birth.

  • day: int: The user's day of birth.

This method call has no effect if the SDK is not initialized, user has not accepted the adjoe Terms of Service or is blocked by the adjoe services.

Adjoe Parameters

You can pass additional UA and placement parameters when you launch Playtime:

var adjoeParams:AdjoeParams = new AdjoeParams();
adjoeParams.setUaNetwork("uaNetwork");
adjoeParams.setUaChannel("UaChannel");
adjoeParams.setUaSubPublisherCleartext("UaSubPublisherCleartext");
adjoeParams.setUaSubPublisherEncrypted("UaSubPublisherEncrypted");
adjoeParams.setPlacement("Placement");

adjoe.setProfile(adjoeParams);

Last updated