Получение ant build error "Невозможно найти указанный базовый класс" mx.core.Application "для компонента - PullRequest
0 голосов
/ 01 февраля 2012

Я пытаюсь создать приложение Ant 3.5 и продолжаю получать сообщение об ошибке: Невозможно найти указанный базовый класс 'mx.core.Application' для класса компонента 'main'.

myФайл build.xml выглядит примерно так:

<project name="ASC App" default="compile flex project">

<!-- load previously defined configuration properties file -->
<property file="build.properties" />

<!-- points to our flexTasks.jar we copied to the libs folder to distribute with the project -->
<taskdef resource="flexTasks.tasks" classpath="${basedir}/libs/flexTasks.jar"/> 

<!-- delete and create the DEPLOY dir again -->
<target name="init">
  <delete dir="${DEPLOY_DIR}" />
  <mkdir dir="${DEPLOY_DIR}" />       
</target>

<!-- Build and output the Main.swf-->
<target name="compile flex project" depends="init">
  <mxmlc file="src/main.mxml" output="${DEPLOY_DIR}/main.swf">
     <load-config filename="${FLEX_HOME}/frameworks/flex-config.xml"/>
     <source-path path-element="${FLEX_HOME}/frameworks"/>
     <source-path path-element="${APP_COMMON}"/>
     <source-path path-element="${FLEX_COMMON}"/>
<library-path dir="${LIBS_DIR}/AlivePDF/" append="true"/>
<library-path dir="${LIBS_DIR}" append="true"/>
     <compiler.debug>false</compiler.debug>    
  </mxmlc>
</target>

и мои build.properties:

# Application name
APP_NAME=AS App

# SWF file
APP=main

# Common library
APP_COMMON=../ASC_common
FLEX_COMMON=../common
ALIVE_PDF=../libraries/AlivePDF/SWC/AlivePDF

# change this to your Flex SDK directory path
FLEX_HOME=/SDKs/flex_sdk_3_4

# this points to your project's src directory
SRC_DIR =${basedir}/src

# points to the project's libs directory
LIBS_DIR =${basedir}/libs

# this is the folder we want to publish the swf to
DEPLOY_DIR = ${basedir}/DEPLOY

Ваша помощь будет принята с благодарностью!

1 Ответ

1 голос
/ 01 февраля 2012

Я пытаюсь собрать с помощью приложения ant a Flex 3.5

Еще у вас естьFLEX_HOME = / SDKs / flex_sdk_3_4

...