I'm starting to work with .arb files in Android Studio and I find them quite difficult to read as only plain text.
Is there any way to color or format the structures more readeable?
no style code for .arb

I tried to find some information, seems that in visual code json settings work the same with .arb, but not in android studio.
example code

What I expect is, for example, add color to the "@_AUTH":{},
Is that even possible in android studio?
As you noticed,
.arbfiles have the same format as.jsonfiles. You can easily associate.arbfiles with JSON formatter in Android Studio:Recognized File Typessearch forJSONFile name patternsadd*.arbNow
.arbfiles will be formatted just like JSON files.