hyoyin_Kyuoma
hyoyin_Kyuoma

Reputation: 673

READ and WRITE external storage permissions gets added when not specified in manifest file

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:

Thanks.

Upvotes: 1

Views: 784

Answers (1)

Mohammad Mahdi
Mohammad Mahdi

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

Related Questions