AssemblyInfo.cs 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. using System.Reflection;
  2. using System.Runtime.CompilerServices;
  3. using System.Runtime.InteropServices;
  4. using Android.App;
  5. // General Information about an assembly is controlled through the following
  6. // set of attributes. Change these attribute values to modify the information
  7. // associated with an assembly.
  8. [assembly: AssemblyTitle("PRS.Mobile.Droid")]
  9. [assembly: AssemblyDescription("")]
  10. [assembly: AssemblyConfiguration("")]
  11. [assembly: AssemblyCompany("CompanyName")]
  12. [assembly: AssemblyProduct("PRS.Mobile.Droid")]
  13. [assembly: AssemblyCopyright("Copyright © CompanyName Year")]
  14. [assembly: AssemblyTrademark("CompanyTrademark")]
  15. [assembly: AssemblyCulture("")]
  16. [assembly: ComVisible(false)]
  17. // Version information for an assembly consists of the following four values:
  18. //
  19. // Major Version
  20. // Minor Version
  21. // Build Number
  22. // Revision
  23. //
  24. // You can specify all the values or you can default the Build and Revision Numbers
  25. // by using the '*' as shown below:
  26. // [assembly: AssemblyVersion("1.0.*")]
  27. [assembly: AssemblyVersion("1.0.0.0")]
  28. [assembly: AssemblyFileVersion("1.0.0.0")]
  29. // https://learn.microsoft.com/en-au/xamarin/essentials/media-picker?context=xamarin%2Fandroid&tabs=android
  30. // Needed for Picking photo/video
  31. [assembly: UsesPermission(Android.Manifest.Permission.ReadExternalStorage)]
  32. // Needed for Taking photo/video
  33. [assembly: UsesPermission(Android.Manifest.Permission.WriteExternalStorage)]
  34. [assembly: UsesPermission(Android.Manifest.Permission.Camera)]
  35. // Add these properties if you would like to filter out devices that do not have cameras, or set to false to make them optional
  36. [assembly: UsesFeature("android.hardware.camera", Required = false)]
  37. [assembly: UsesFeature("android.hardware.camera.autofocus", Required = false)]