에어 디스크립터 파일

<?xml version="1.0" encoding="UTF-8"?>
<application xmlns="http://ns.adobe.com/air/application/1.0">
    <!-- 어플리케이션 ID(필수) -->
    <id>com.example.HelloWorld</id>
    <!-- 파일이름(필수) -->
    <filename>Hello World</filename>
    <!-- 설치할 때 표시되는 이름(제어판 추가삭제에도 나타남) -->
    <name>Example Co. AIR Hello World</name>
    <!-- 어플리케이션 버젼(필수) -->
    <version>2.0</version>
    <!-- 설명(어플리케이션 설치 시 나타남) -->
    <description>
        The Hello World sample file from the Adobe AIR documentation.
    </description>
    <!-- 카피라이트 정보 -->
    <copyright>Copyright (c) 2006 Example Co.</copyright>
    <initialWindow>
        <!-- 실제 실행될 swf 또는 html 파일 -->
        <content>[This value will be overwritten by Flex Builder in the output app.xml]</content>
        <!-- 메인 윈도우 타이틀 -->
        <title>Hello World</title>
        <!-- 사용할 윈도우크롬(기본값 : standard) -->
        <systemChrome>none</systemChrome>
        <!-- 윈도우의 투명여부(systemChrome이 none일 경우에만 동작) -->
        <transparent>true</transparent>
        <!-- 시작시 윈도우의 가시여부 설정 -->
        <visible>true</visible>
        <!-- 어플리케이션 최소와 기능 설정 -->
        <minimizable>true</minimizable>
        <!-- 어플리케이션 최대화 기능 설정 -->
        <maximizable>true</maximizable>
        <!-- 어플리케이션 크기조절 가능여부 설정 -->
        <resizable>true</resizable>
        <!-- 윈도우의 초기 너비 -->
        <width>640</width>
        <!-- 윈도우의 초기 높이 -->
        <height>480</height>
        <!-- 윈도우의 x위치 -->
        <x>100</x>
        <!-- 윈도우의 y위치 -->
        <y>100</y>
        <!-- 윈도우의 최소 사이즈 정의 -->
        <minSize>400 200</minSize>
        <!-- 윈도우의 최대 사이즈 정의 -->
        <maxSize>1600 800</maxSize>
    </initialWindow>
    <!-- 어플리케이션을 설치할 경로 -->
    <installFolder>Example Co/Hello World</installFolder>
    <!-- 어플리케이션이 프로그램 폴더에 위치할 경로 -->
    <programMenuFolder>Example Co</programMenuFolder>
    <!-- 어플리케이션에 사용되는 아이콘 파일(PNG 포맷) -->
    <icon>
        <image16x16>icons/smallIcon.png</image16x16>
        <image32x32>icons/mediumIcon.png</image32x32>
        <image48x48>icons/bigIcon.png</image48x48>
        <image128x128>icons/biggestIcon.png</image128x128>
    </icon>
    <!-- 업데이트 할 때 사용자 정의 UI를 사용할지 여부 -->
    <customUpdateUI>true</customUpdateUI>
    <!-- 브라우저에서 어플리케이션을 실행할 수 있는지 여부 -->
    <allowBrowserInvocation>false</allowBrowserInvocation>
    <!-- 어플리케이션에 연결된 파일 타입 -->
    <fileTypes>
        <fileType>
            <!-- 이름 -->
            <name>adobe.VideoFile</name>
            <!-- 확장자(필수) -->
            <extension>avf</extension>
            <!-- 설명 -->
            <description>Adobe Video File</description>
            <!-- The MIME 타입 -->
            <contentType>application/vnd.adobe.video-file</contentType>
            <!-- 파일에 사용되는 아이콘 파일(PNG 포맷) -->
            <icon>
                <image16x16>icons/avfIcon_16.png</image16x16>
                <image32x32>icons/avfIcon_32.png</image32x32>
                <image48x48>icons/avfIcon_48.png</image48x48>
                <image128x128>icons/avfIcon_128.png</image128x128>
            </icon>
        </fileType>
    </fileTypes>
</application>