========================================================================================== Overview: ========= - The InstallApacheFlex AIR application provides an easy, single-click installation of the Apache Flex SDK and all its dependencies. This will make it suitable for working with IDEs such as Adobe Flash Builder, FDT, IntelliJ IDEA, FlashDevelop, etc. The application downloads the following dependencies: - The AIR sdk (Windows vs. Mac) based on the current platform - Adobe Flash Player playerglobal.swc - SwfObject - Open Source Media Framework (OSMF) - Adobe Text Layout Format (TLF) Optionally, the application will download these files if the user explicitly agrees to the licensing terms: - Adobe BlazeDS - Adobe embedded font support All the file names and urls of the downloaded files are available in installer/src/sdk-installer-config.xml. When the dependencies file names or urls change in future, update the sdk-installer-config.xml to ensure that the application works correctly. - The application uses http://incubator.apache.org/flex/single-mirror-url.cgi to determine the preferred mirror url to download Apache Flex SDK binary from. - Once the Apache Flex SDK binary file is downloaded, a MD5 hash is generated for it. This hash is compared with the hash from the Apache Flex SDK release site. If they match, we verify that the downloaded binary file is a valid Apache release and proceed to unzip the file. - The Adobe AIR SDK will be downloaded and the relevant files are copied to the required locations. - The Adobe Flash Player playerglobal.swc file and the config files are placed in the required locations. - Then the rest of the external dependencies and the optional files (if selected by user) are downloaded and copied into the appropriate locations. ========================================================================================== How to build the installer using ANT (no Flash Builder or any other IDE required): ========================================================================================== 1. Unzip the source distribution. You should see the 'installer' directory and the 'common' directory in the root. 2. In the installer directory, run: ant build [-DFLEX_HOME=/path/to/apache/flex/sdk] [-DAIR_HOME=/path/to/air/sdk] FLEX_HOME is the absolute path to the Apache Flex SDK If you omit this argument, and the system environment variable, FLEX_HOME exists, it is used. Otherwise, the FLEX_HOME_MAC or FLEX_HOME_WIN property in installer/build.properties is used. AIR_HOME is the absolute path to the Adobe AIR SDK If you omit this argument, and the system environment variable, AIR_HOME exists, it is used. Otherwise, the AIR_HOME_MAC or AIR_HOME_WIN property in installer/build.properties is used. 2. The installer executable file created in the installer/release directory. If you are on Windows, you will see an .exe file; if you are on Mac OS, you will see a .dmg file. A temporary digital signing certificate - temp.p12 will be created in the installer directory as well. The password for this file is available in the build.properties file (var: TEMP_PASS_CHANGE_THIS) ========================================================================================== How to set up the project for working with Adobe Flash Builder (or any other IDE): ========================================================================================== 1. Unzip the source distribution. You should see the 'installer' directory and the 'common' directory in the root. 2. In the installer directory run: ant get-as3commons.swc This step downloads the required as3commons library and saves it in the libs directory. 3. If using Adobe Flash Builder, add a linked resource called: APACHE_FLEX_UTILITIES_ROOT and point it to the directory path where the 'installer' and 'common' directories are located. 4. In the installer project, add ${APACHE_FLEX_UTILITIES_ROOT}/common/src as a source path.