This file
[ProjectRoot]/.idea/caches/deviceStreaming.xml
doesn't get ignored by git-VersionControlSystem when I add the
".idea" line to ".gitignore"
Also, the file "deviceStreaming.xml" gets changed every few hours even if I test on the same Android Emulator.
What is that file and how can it be ignored by Git?
This file
[ProjectRoot]/.idea/caches/deviceStreaming.xml
doesn't get ignored by git-VersionControlSystem when I add the
".idea" line to ".gitignore"
Also, the file "deviceStreaming.xml" gets changed every few hours even if I test on the same Android Emulator.
What is that file and how can it be ignored by Git?
Try adding this line to .gitignore:
.idea/caches/deviceStreaming.xml
or this .idea/
if it still tracks that file, it may be that you have tracked that file before and need to run git update-index --assume-unchanged .idea/caches/deviceStreaming.xml (source)
Not sure what that file is or why it changes so much tho
