I’ve been working on a Java utility to generate and manage .ini configuration files for a profile-based iOS tool, similar to what’s used in this third-party iOS installer. I'm trying to structure the config to support multiple app profiles, but INI4j doesn’t seem to handle nested sections or key grouping as expected. For example: [profile.1] name=Test App id=com.test.app [profile.1.settings] auto_update=true INI4j reads them as flat keys instead of structured sections. Is there a recommended workaround...