In this document you will learn of the advanced SOOMLA SDK setup options:
- Special Initialization Configuration
- Tagging Users
- Change User ID
- Add Extra User Id
- SDK custom events
- Override User Country Code
Special Initialization Configuration
To initialize SOOMLA SDK with special configuration you will need to pass the initialization function with a config object. config object is created with a builder, as shown below.
Note: none of the following attributes are mandatory
Soomla.Traceback.SoomlaConfig soomlaConfig = new Soomla.Traceback.SoomlaConfig();
soomlaConfig.CollectAdvertisingId = false; // Default is true -
// Setting to false will stop collecting the user advertising & vendor ID.
soomlaConfig.ValidateVersions = false; // Default is true -
// Setting to false will disable alerting popup of invalid connector.
soomlaConfig.SendAttributionData = false; // Default is true -
// Setting to false will disable the ability to determine traffic source of the user install.
soomlaConfig.UserId = @"unique-userid-per-user";// Up to v5.18.0 default user id is the user advertising id, from v5.18.0 the default user id is Soomla id.
// The only allowed characters for user id are: letters, numbers, @, -, _ and /.
// The uid cannot be null and must be between 2 and 100 chars, otherwise it will be blocked.
soomlaConfig.TestMode = true; // Default is false - // Set to true only to test your SOOMLA integration // on the live event log on your SOOMLA acount Dashboard.
soomlaConfig.LogLevel = Soomla.Traceback.SoomlaLogLevel.INFO; // Staring from Soomla SDK v5.10.0 - allow setting 5 different log levels
// ERROR, WARNING, INFO, DEBUG, VERBOSE
// Default is INFO
Soomla.Traceback.SoomlaTraceback.Initialize (appKey, soomlaConfig);
Warning: When setting the “
CollectAdvertisingId
” to false, you must use the “UserId
” with a unique user id.Tagging Users
In order to make it easier to analyze user behavior and divide users into cohorts, it's possible to attach tags to users.
Soomla.Traceback.SoomlaTraceback.AddTags (new List<string>(){ "tag1", "tag2" });
Soomla.Traceback.SoomlaTraceback.RemoveTags (new List<string>(){ "tag1", "tag2" });
Limitations for tags:
- Special Characters: The only allowed characters are: letters, numbers, -, _ and /.
- Number of Tags: There's a limit of 200 tags per App so make sure you're tagging your users smartly.
- Length of Tags: Tags cannot be longer than 50 characters. Tags that are too long will be ignored.
Change User ID
This will change the user id and start a new session.
Soomla.Traceback.SoomlaTraceback.ChangeUserId(String userId);
SDK custom events
This functionality allows users to send custom events and data from unsupported networks.
By that, you can send impressions, clicks, and video completions.
in order to use this feature, you need to fill the following fields:
- Ad network name (Integration name)
- ad-Type
- extra Fields (JSON)
Soomla.Traceback.SoomlaTraceback.OnAdDisplayed(adNetwork, adType, jsonObject);
Soomla.Traceback.SoomlaTraceback.OnAdClicked(adNetwork, adType, jsonObject);
Soomla.Traceback.SoomlaTraceback.OnVideoCompleted(adNetwork, adType, jsonObject);
Soomla.Traceback.SoomlaTraceback.OnAdClosed(adNetwork, adType, jsonObject);
Add Extra User Id
After using this function user will have two ids.
Soomla.Traceback.SoomlaTraceback.AddExtraUserId(String userId);