user5064340
user5064340

Reputation:

Dark-blue file names in Android Studio

enter image description here

Hello. I have imported an external library from web (KryoNet) into my Android Studio. Now I made a change inside this library's code (In UdpConnection file). Should I somehow resynchronize these changes or something? I don't know what this exclamation-mark and dark-blue colour mean. Aren't the changes saved?

Upvotes: 1

Views: 2569

Answers (2)

zainoz.zaini
zainoz.zaini

Reputation: 938

Android Studio is the official IDE for Android app development, based on IntelliJ IDEA. Hence the blue color means the file has been modified or changed since the last synchronization with your version control repo. Refer here for details.

If you want to modify the preference, you may refer here.

Upvotes: 3

adao7000
adao7000

Reputation: 3670

Open Settings and go to Editor > Colors & Fonts > File Status. This tells you what each color means.

Upvotes: 6

Related Questions