Does Xcode save your answer to the system when agreeing to the License Agreement?

apple.stackexchange https://apple.stackexchange.com/questions/345694

  •  28-04-2021
  •  | 
  •  

Upon installing Xcode, it prompts a license agreement. When you press agree, you are never prompted the license agreement again. Does your answer get saved to the system, that way the application does not ask you again? If so, where does the system save the file to?

有帮助吗?

解决方案

When you agree to the Xcode license, an entry is created in:

/Library/Preferences/com.apple.dt.Xcode.plist

As shown in the image below:

enter image description here

Or from Terminal using the defaults command:

$ defaults read /Library/Preferences/com.apple.dt.Xcode.plist 
{
    IDELastGMLicenseAgreedTo = EA1478;
    IDEXcodeVersionForAgreedToGMLicense = "9.4.1";
}
$
许可以下: CC-BY-SA归因
不隶属于 apple.stackexchange
scroll top