Mac OS

To integrate your application with devtodev system please perform the following actions:

  1. add the application to the Space using the wizard for adding application

  2. Download the latest version of the devtodev.framework from the GitHub repository and add it to 'Linked Frameworks and Libraries' list in the general settings of the project.

  3. Add init method into didFinishLaunchingWithOptions method of your AppDelegate.m

    App ID and Secret key can be found in the application settings (Open "My apps" → App Name → "Settings" → "Integration").

  #import "AppDelegate.h"
  #import <devtodev/DevToDev.h>
  @interface AppDelegate ()
  @end
  @implementation AppDelegate
  - (void)applicationDidFinishLaunching:(NSNotification *)aNotification {
          [DevToDev initWithKey:@"appKey" andSecretKey:@"secretKey"];
  }
  @end
  1. If the application you integrate SDK in is a part of cross-platform project, then the user data initialization is required.

Since the analytics of cross-platform projects is based on an unique user (unlike the usual projects where it is based on device identifiers), you have to:

  • Set the unique cross-platform user identifier (it will be used for cross-platform project data collection).

  • Actualize the user data. Mostly it is about game applications where the player has a game level as a characteristic. For such projects you need to set the current player level.

/**
* Method allows to initialize the user. It applies when SDK initialization or user relogin.
* @param String activeUserId - unique cross-platform user identifier (max. 64 symbols)
*/
[DevToDev setUserID:@"activeUserId"];

/**
* Method sets the current user level. Using this method allows to actualize the SDK user data
* in game cross-platform applications.
* @param NSUInteger level - number of current game level of the user
*/
[DevToDev setCurrentLevel:level];

/**
* devtodev App Id and Secret key can be found in the devtodev application
* settings page (â&#128;&#156;My appsâ&#128;&#157; â&#134;&#146; App Name â&#134;&#146; â&#128;&#156;Settingsâ&#128;&#157; â&#134;&#146; â&#128;&#156;Integrationâ&#128;&#157;)
*/
[DevToDev initWithKey:applicationId andSecretKey:secretKey];

Attention! If your application allows user to relogin (changing the user during the working session of application), then the setUserID andsetCurrentLevel methods should be called just after the authorization. You don't need to call the SDK initialization one more time.

​We recommend you to set the user identifier before SDK initialization, otherwise the user identifier from the previous session will be used since the SDK initialization moment till the setUserID method call.

If your cross-platform application supposes to be used without cross-platform authorization, don't use the setUserID method or use the empty string ("") as the user identifier. SDK will assign the unique identifier to user. This identifier will we used until the real cross-platform identifier assigns to the user.

Debug mode

To enable the debug mode and make SDK notifications displayed in the console use this method:

/**
* @param BOOL isActive
*/
[DevToDev setActiveLog: (BOOL) isActive];

Last updated