Tag Archive for: 105 Error

Adobe AIR Error 104 and 105 FileType

I have discovered that most AIR ‘Build Project’ errors are related to a malformed yourapp-app.xml file. Such is the case with the 105 Error of the FileType variety.

Error 105

I created an AIR app that would support my own File Type extension (mime type). In the fileType’s ‘name’ node, I put ‘My Custom App’. Seemed reasonable since the template comments stated ‘The name that the system displays for the registered file type. Required.

Turns out that the ‘name’ needs to be space-free and separated by dots:

<name>My.Custom.App</name>

Error 104

In the case of the 104 Error, I uncommented the ‘contentType’ and entered the mime type (which was text/xml in my case).

<contenttype>text/xml</contenttype>

Hope this saves someone some time and aggravation.