본문 바로가기
개발/Android

[Android Studio] Local scopes 와 Shared scopes 차이

by 언제나초심. 2020. 10. 9.
반응형

'Shared' 로 추가했는데...

Local scopes 와 Shared scopes 의 차이점에 대해서는 https://www.jetbrains.com/help/idea/configuring-scopes-and-file-colors.html#creating-a-new-custom-scope

  • Local scopes are stored in the IDE configuration directory, that is why they are not shared through VCS and are not available to other members of your team.
  • Shared scopes are added to a VCS so that people who work on a project can use the same scopes. These scopes are stored together with the project in the scopes folder under .idea. Each scope is saved as a file with the .xml extension (for example: MyProject/.idea/scopes/shared-scope.xml).

로 나와있다.

아마도 Local scopes 는 ide 의 설정 안에 저장되서 (C 드라이브의 appData 같은 곳에 저장하거나 Users 에 저장하려나?) git 에는 포함이 안 된다는 얘기인 것 같다.
Shared scopes 는 프로젝트 내에 .idea/scopes/shared-scope.xml 과 같이 저장된다는 듯 하다.

반응형