我正在写一个音乐播放器应用程序。要在我正在使用的设备上查找音乐文件:
ContentResolver musicResolver = main.getContentResolver();
Uri musicUri = android.provider.MediaStore.Audio.Media.EXTERNAL_CONTENT_URI;
Cursor musicCursor = musicResolver.query(musicUri, null, null, null, null);
但是我收到了一个SecurityException:
10-08 12:17:03.060:E / AndroidRuntime(19130):引起:java.lang.SecurityException:Permission Denial:读取com.android.providers.media.MediaProvider uri content:// media / external /音频/媒体来自pid = 19130,uid = 10170需要android.permission.READ_EXTERNAL_STORAGE或grantUriPermission()
我添加了READ_EXTERNAL_STORAGE权限。我以前的开发设备运行Android 10,但这个错误没有发生。我的新版本是版本19.这是我的清单,显示权限。
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.robclouth.thetechnomat"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="11"
android:targetSdkVersion="19" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.RECORD_AUDIO" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.robclouth.thetechnomat.MainActivity"
android:configChanges="fontScale|keyboard|keyboardHidden|locale|mnc|mcc|navigation|orientation|screenLayout|screenSize|smallestScreenSize|uiMode|touchscreen"
android:label="@string/app_name"
android:screenOrientation="portrait"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<service android:name="org.puredata.android.service.PdService" />
</application>
</manifest>
我找不到任何关于此的信息,因为所有答案都是“添加READ_EXTERNAL_STORAGE权限”,当然我已经拥有了。我的智慧结束了!
它似乎与此类似,但错误信息不同: Android KitKat securityException when trying to read from MediaStore
感谢。