Queries element for manifest

Hello Devs

I wish to add a query element to the Android manifest

It is as follows :slightly_smiling_face: :

<queries>
        <intent>
            <action android:name="android.intent.action.VIEW"/>
            <category android:name="android.intent.category.BROWSABLE"/>
            <data android:scheme="https"/>
        </intent>
        <intent>
            <action android:name="android.support.customtabs.action.CustomTabsService"/>
        </intent>
    </queries>

Is there any annotation for acheiving this?

There is:

3 Likes

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.