Reputation: 673
I am trying to upload my app to the Google Play store.
The app was created using Xamarin Forms.
After I upload, READ ACCESS EXTERNAL STORAGE
and WRITE ACCESS EXTERNAL STORAGE
.
I have checked my manifest file and neither 'write' nor 'read' is checked in it.
Can it be because of any nugget packages that might require external storage?
Details:
min android version - 4.3
install location - internal only
Target android version - API 24 (automatic)
Thanks.
Upvotes: 1
Views: 784
Reputation: 177
I had the same problem. Removing this line from AssemblyInfo.cs fixed it.
// Add some common permissions, these can be removed if not needed
[assembly: UsesPermission(Android.Manifest.Permission.WriteExternalStorage)]
Upvotes: 0