在运行时更改标志值

构建 Android 后,请确保您可以更改 aconfig 标志的值。

如需在运行时更改 aconfig 标志值,请执行以下操作:

  1. 确保您的设备已运行并连接到开发机器。
  2. 检查该标志的当前设置:

    adb shell aflags list | grep package.flagname
    
  3. 如果此标志已启用且您的代码正在执行,请继续执行第 4 步以停用该标志。如果该标志已停用,请跳至第 6 步启用您的代码。

  4. 停用您的代码。在命令行中,运行以下命令:

      adb shell aflags disable your.full.flag.name
    

    例如,如需停用 append_injected_content 标志,请运行以下命令:

    adb shell aflags disable com.example.android.aconfig.demo.flags.append_injected_content
    
  5. 请跳到第 7 步。

  6. 启用您的代码。在命令行中,运行以下命令:

    adb shell aflags enable your.full.flag.name
    

    例如,如需启用 append_injected_content 标志,请运行以下命令:

    adb shell aflags enable com.example.android.aconfig.demo.flags.append_injected_content
    
  7. 重新启动设备:

    adb reboot
    
  8. 通过尝试在设备上执行代码或再次重新运行 aflags list 命令来检查您的代码状态:

    adb shell aflags list | grep package.flagname
    

    如果您的代码已启用,则应将其停用。反之,如果您的代码已停用,则应启用该代码。