在运行时更改标志的值

构建 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
    

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