Skip to content

Instantly share code, notes, and snippets.

@elmacnifico
Last active March 21, 2019 22:46
Show Gist options
  • Save elmacnifico/82ac400e60364a7ecb8644e6ec6da3b5 to your computer and use it in GitHub Desktop.
Save elmacnifico/82ac400e60364a7ecb8644e6ec6da3b5 to your computer and use it in GitHub Desktop.

Android: Before calling Adjust.onCreate method, make sure to make following two calls:

AdjustFactory.setBaseUrl("https://your.endpoint.com"); AdjustFactory.setGdprUrl("https://your.endpoint.com");

iOS: Make sure to import ADJAdjustFactory.h and before calling appDidLaunch: method on Adjust instance, make sure to make following two calls:

[ADJAdjustFactory setBaseUrl:@"https://your.endpoint.com"]; [ADJAdjustFactory setGdprUrl:@"https://your.endpoint.com"];

iOS note: Still awaiting answer from them on how are they using iOS SDK. If they are using it via source or Cocoapods, we don't need to update iOS SDK at all, it's all already in there, in each official release since we added these methods. If not and they are using framework, I'll make one for them to enable them this thing. Android note: No SDK update is needed at all. It just works.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment