Hi, I want to launch my Android Air app whenever I it receives a custom url scheme.
In order to do that, I add the next text to the manifest
<android>
<manifestAdditions>
<![CDATA[
<manifest android:installLocation="auto">
<uses-permission android:name="android.permission.INTERNET"/>
<application android:enabled="true">
<activity android:name=".AppEntry">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE"/>
<data android:scheme="testScheme"/>
</intent-filter>
</activity>
</application>
</manifest>
]]>
</manifestAdditions>
</android>
It works fine (testScheme://anything opens the app) BUT the autoOrients and fullScreen tags are ignored, I'm seeing the top bar of the application.
As you see, the app is a basic one. Just adding the intent-filter breaks everything.
Do you know where can be the problem? should I report a bug?
thanks!