我更新了air sdk來編譯我的應用程序。我用flex3.9進行了flex4.6編譯,並且爲apk和ipa進行了包裝。現在我需要空氣24進行編輯。我得到:錯誤:打包ipa文件時無法找到mx.logging.targets :: LineFormattedTarget。誰能幫我?我檢查它開始與空氣22,我的意思是我編譯它與flex4.6_air_21和它的工作,但與22它開始給這個錯誤當打包ipa文件時出現錯誤:mx.logging.targets :: LineFormattedTarget找不到並且編譯abc失敗
回答
問題撒謊。我們在之前的sdk中有不同的flextasks.jar。當我們將它們複製到新的sdk時,它解決了這個問題。重疊FlexSDK和Air SDK與這個問題無關,首先你使用flex sdk進行編譯,然後你使用air sdk進行蒸發和包裝(對於iOS和Android)。只要你指向適當的工具,你就可以分開使用這兩種SDK。
我認爲你需要覆蓋AIR sdk到Flex sdk。 說明現在的位置:用Ant任務 https://helpx.adobe.com/x-productkb/multi/how-overlay-air-sdk-flex-sdk.html
Exit Flash Builder.
(Optional) Back up the Flex SDK by copying the entire directory.
In Flash Builder, for example, copy the directory at:
Windows: C:/Program Files/Adobe/Flash Builder 4.7/sdks/4.6.0
Mac OS: /Applications/Adobe Flash Builder 4.7/sdks/4.6.0
Download the appropriate AIR SDK file for your operating system from www.adobe.com/products/air/sdk/, and save it to the root directory of the Flex SDK.
Windows: AIRSDK_Compiler.zip
Mac OS: AIRSDK_Compiler.dmg
Extract the contents of the AIR SDK archive and overwrite the existing SDK files.
Windows: Right-click the ZIP file and select Extract All, or use a decompression tool of your choice.
Mac OS: In Terminal, run these commands:
hdiutil attach AIRSDK_Compiler.dmg cp -rf /Volumes/AIR\ SDK/* /path-to-empty-FLEXSDK-directory If you have trouble overwriting files due to file permissions, try these commands:
sudo hdiutil attach AIRSDK_Compiler.dmg sudo cp -rf /Volumes/AIR\ SDK/* /path-to-empty-FLEXSDK-directory (Optional) To access the new AIR 3.4 APIs, update your application descriptor file to the 3.4 namespace.
To update the namespace, change the xmlns attribute in your application descriptor to:
(Optional) To ensure that the output SWF file targets SWF version 17, pass an additional compiler argument: -swf-version=17.
- 1. Flash Builder(Flex)Air Project mx。* libraries swc Class mx.logging.targets :: LineFormattedTarget找不到
- 2. yocto:無法找到Python.h並且交叉編譯失敗
- 3. 編譯時出現Xcode .pch錯誤。鐺文件未找到
- 4. 編譯文件時出現C++錯誤
- 5. 找不到-lsrc(gcc編譯失敗)
- 6. 打開chm文件時出現失敗錯誤
- 7. 編譯生成失敗時出現xcode錯誤
- 8. 錯誤:編譯包'Rcpp'失敗
- 9. 打開.pyc文件時出現錯誤
- 10. 在編譯終端中的java文件時出現「找不到符號」錯誤
- 11. 編譯* .cc文件時出現Gcc編譯錯誤
- 12. 編譯Cython文件時出錯:包中未找到pxd
- 13. 編譯程序並僅在編譯失敗時報告(不顯示錯誤)
- 14. 編譯失敗,錯誤'文件未找到'和'鏈接器命令失敗,退出代碼1'
- 15. 安裝失敗並出現錯誤(Eclipse)
- 16. 編譯java時找不到軟件包
- 17. 打開文件時出現C++錯誤
- 18. Crystal編譯失敗,出現鏈接錯誤
- 19. 使用boost program_options失敗,出現奇怪的編譯錯誤
- 20. FHIR編譯失敗,出現NoSuchMethodError錯誤:net.sf.saxon.Configuration.newConfiguration()
- 21. Glassfish 3.1b41 - JDO83008:CMP編譯失敗:找不到類文件
- 22. 耙資產:預編譯失敗:找不到文件「把手」
- 23. 編譯時找不到符號錯誤。
- 24. Unity iOS部署錯誤:Codesign錯誤,找不到.ipa文件
- 25. 編譯庫時出現「編譯時出現不同版本」錯誤
- 26. 構建IPA時出現Xcode 6.1錯誤
- 27. NDK-打造的OpenSSL編譯彙編文件時失敗
- 28. 在Cloudera CDH4上編譯R軟件包時出現GCC錯誤
- 29. 在設備上安裝IPA文件時出現0xE8003FFE錯誤
- 30. 在Linux下編譯C文件時出現彙編錯誤
我在這裏沒有使用IDE。它在與螞蟻的控制檯中完成。 – piokub