The error "java.lang.IllegalStateException: Reply already submitted" suggests the plugin is trying to send a response (success or error) multiple times.
Solutions:
If you authored the plugin:
Check the querySongs method in AudioQuery.kt (line 67). Ensure result.success() or result.error() is called only once based on the outcome.
Plugin Issue:
The error "java.lang.IllegalStateException: Reply already submitted" suggests the plugin is trying to send a response (success or error) multiple times.
Solutions:
If you authored the plugin: Check the querySongs method in AudioQuery.kt (line 67). Ensure result.success() or result.error() is called only once based on the outcome.