This repository has been archived by the owner on Apr 18, 2024. It is now read-only.
TT AppId supported
TT App Id is supported in the release.
In order to activate the sdk, we either have to
- provide only appId
- provide both appId and ttAppId
TikTokBusinessSdk.TTConfig ttConfig =
new TikTokBusinessSdk.TTConfig(getApplication())
.disableLaunchLogging()
.setAppId(appId)
.setTTAppId(ttAppId) // can be commented out
.setAccessToken(correctToken)
.setLogLevel(TikTokBusinessSdk.LogLevel.DEBUG);
But we highly recommend passing ttAppId for better events attribution.