sc4v3ng3r / flutter_audio_query

Flutter Audio Query Plugin
https://pub.dev/packages/flutter_audio_query
MIT License
52 stars 47 forks source link

Android 10 and Android 11 <unworking> #46

Open AgentDavid opened 3 years ago

AgentDavid commented 3 years ago
E/ERROR   (14793): SongLoader::basicLoad method exception
E/ERROR   (14793): the bind value at index 1 is null

error in the .getSongs () method to find all songs in the device on android 10 and later, probably due to depreciated API in Android API 29 and later Annotation 2020-11-23 205222

JulyWitch commented 3 years ago

same problem here

JulyWitch commented 3 years ago

@AgentDavid did you found any solution?

AgentDavid commented 3 years ago

@AgentDavid did you found any solution?

create my own search engine for songs hehehehe, I think next week I'll be uploading the full music app to my Github profile. To make the app public

ghost commented 3 years ago

I use flutter music query it works on Android 10, also make sure you added android:requestLegacyExternalStorage="true" in your android manifest.xml

 <application
        android:label="Music App"
        android:icon="@mipmap/ic_launcher"
        android:requestLegacyExternalStorage="true"
    >