Quantcast
Channel: Adobe Community : Popular Discussions - AIR Development
Viewing all articles
Browse latest Browse all 24121

Android fullscreen disabled when intent-filter added

$
0
0

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.


Screenshot_2015-06-03-08-49-55.png



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!


Viewing all articles
Browse latest Browse all 24121

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>