Skip to content
This repository has been archived by the owner on Apr 18, 2024. It is now read-only.

TT AppId supported

Compare
Choose a tag to compare
@sakopqiu sakopqiu released this 15 Mar 03:09
· 26 commits to master since this release
317a6e0

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.

Merge Request