Cannot resolve symbol 'WRITE_EXTERNAL_STORAGE'
时间: 2023-10-30 18:42:37 浏览: 115
Python库 | pkgutil_resolve_name-0.0.0a0.tar.gz
This error typically occurs when you are trying to use the WRITE_EXTERNAL_STORAGE permission in your Android application but have not declared it in the AndroidManifest.xml file.
To resolve this error, add the following line of code to your AndroidManifest.xml file:
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
This will declare the WRITE_EXTERNAL_STORAGE permission and allow your application to write to external storage.
阅读全文