有谁知道这个Androidclass的作用吗? "com.google.apps.tiktok.tracing.db"?

Does anyone know the function of this Android class? "com.google.apps.tiktok.tracing.db"?

我在使用 Android Studio Logcat 调试我自己的应用程序时遇到了一些涉及“com.google.apps.tiktok.tracing.db”class 的日志。这跟抖音有关吗?我从未在 phone.

上安装该应用程序

我的 Logcat 中有类似的日志。您可以通过使用 adb 并将进程号 (PID) 与日志中的编号匹配来获取创建日志的进程。使用此命令列出 Android 个进程:

adb shell ps -A

就我而言,这些是创建 TikTok 日志的进程:

  • com.google.android.googlequicksearchbox:交互器
  • com.google.android.apps.wellbeing
  • com.google.android.apps.fitness

看起来它们都来自 Google 个应用程序(而不是 TikTok)。此外,日志显示 com.google.apps.tiktok.*,如果它实际上是 TikTok,它将类似于 com.tiktok.*.

我还找到了这条推文:
https://twitter.com/imShreyasPatil/status/1320399162651803648

Twitter 用户@pratik13butani 评论道:

Tiktok is an internal component in Google used by many of the apps, it was written and named like that before the social network existed and is absolutely unrelated.

所以看起来它只是一个内部 Google 组件。