I have a large JSON file that I need to work with in a Kotlin (android) project. Due to its size, I’m considering converting it to a different file format for better performance or easier handling.
What would be the safest and most compatible file format to convert this JSON file into, while still being easily readable and usable in Kotlin?
Any recommendations or best practices would be appreciated!