StoreKit Ad Network (SKAdNetwork) is Apple’s attribution framework for app install and reinstall attribution. The SKAdNetwork workflow goes like this:
- Apple gathers attribution information and notifies the relevant ad network.
- The network sends a postback with this information to Adjust.
- Adjust displays SKAdNetwork data in Datascape and Data Canvas.
Disable SKAdNetwork communication
void deactivateSkAdNetworkHandling();
The Adjust SDK communicates with SKAdNetwork by default on v4.23.0 and above. The SDK registers for SKAdNetwork attribution upon initialization.
Your config object contains a boolean isSKAdNetworkHandlingActive
property that controls this behavior. You can disable SKAdNetwork communication by calling the deactivateSKAdNetworkHandling
method with no argument.
AdjustConfig2dx adjustConfig = AdjustConfig2dx(appToken, environment, false);adjustConfig.deactivateSKAdNetworkHandling();Adjust2dx::start(adjustConfig);
Update conversion values
static void updateConversionValue(int conversionValue);
Conversion values are a mechanism used to track user behavior in SKAdNetwork. You can map 64 conditions to values from 0 through 63 and send this integer value to SKAdNetwork on user install. This gives you insight into how your users interact with your app in the first few days.
If you manage your conversion values with Adjust, the servers update this value in the SDK. You can also update this value by using the updateConversionValue
method. This method wraps Apple’s updateConversionValue
method. It accepts an integer argument representing your updated conversion value.
Adjust2dx::updateConversionValue(6);
Example
This example shows how to update a conversion value to 10
in response to a user triggering an event.
bool HelloWorld::init() { auto position = Vec2(origin.x + visibleSize.width / 2, origin.y + visibleSize.height - label->getContentSize().height + offset - divide * (++index)); makeButton(mainmenu, "Update conversion value", position, CC_CALLBACK_1(HelloWorld::onUpdateCv, this));}
void HelloWorld::onUpdateCv(cocos2d::Ref *pSender) { Adjust2dx::updateConversionValue(6);}
Listen for changes to conversion values
void setConversionValueUpdatedCallback(void(*callbackMethod)(int conversionValue));
If you use Adjust to manage conversion values, the Adjust’s servers send conversion value updates to the SDK. You can set up a callback function to listen for these changes using the setConversionValueUpdatedCallback
method. Pass your function as an argument.
AdjustConfig2dx adjustConfig = AdjustConfig2dx(appToken, environment, false);adjustConfig.setConversionValueUpdatedCallback(conversionValueUpdatedCallbackMethod);Adjust2dx::start(adjustConfig);
Example
This example shows how to log the following when the conversion value updates:
- A message confirming the conversion value update
- The new conversion value
#include "Adjust/Adjust2dx.h"
bool AppDelegate::applicationDidFinishLaunching() { std::string appToken = "{YourAppToken}"; std::string environment = AdjustEnvironmentSandbox2dx;
AdjustConfig2dx adjustConfig = AdjustConfig2dx(appToken, environment); adjustConfig.setLogLevel(AdjustLogLevel2dxVerbose); adjustConfig.setPostbackConversionValueUpdatedCallback([](int conversionValue) { std::cout << "\nConversion value updated. Callback received"; std::cout << "\nConversion value: " << conversionValue; }); Adjust2dx::start(adjustConfig);}