Home | History | Annotate | Download | only in find_java
      1 <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
      2 
      3 <!--
      4   For details on the Assembly Manifest, please look here:
      5   http://msdn.microsoft.com/en-us/library/aa374191(VS.85).aspx
      6 -->
      7 
      8 <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
      9 
     10     <application>
     11         <!--The ID below indicates application support for Windows Vista -->
     12         <supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}" />
     13         <!--The ID below indicates application support for Windows 7 -->
     14         <supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}" />
     15     </application>
     16 
     17     <assemblyIdentity version="1.0.0.0"
     18         processorArchitecture="x86"
     19         name="Android.SDK.FindJava"
     20         type="win32"
     21         />
     22 
     23     <description>Utility to find java.exe on the local system.</description>
     24 
     25     <!-- Identify the application security requirements. -->
     26     <trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
     27         <security>
     28             <requestedPrivileges>
     29                 <requestedExecutionLevel level="asInvoker" uiAccess="false" />
     30             </requestedPrivileges>
     31         </security>
     32     </trustInfo>
     33 </assembly>
     34