Reputation: 365
I have came up with an issue where my phone used Android 10 OS and the API 29 doesn't grant permission with current runtime method for writing in from in the internal storage
So I have found that there is a need to use an old permission for writing in the storage,but since visual studio automatically generated the manifest file I can't really enable it,also tried using the attributes in the Main activity but it doesn't seem to work
Upvotes: 1
Views: 767
Reputation: 21321
As documented in Working with the Android Manifest,
you create an AndroidManifest.xml
in your Android project's Property
folder.
Visual Studio merges what you put there, into the final AndroidManifest.xml that it creates in bin/Debug or Release folder.
Upvotes: 2