Android URI Schemes

0

I'm trying to create a Scheme URI for an application in Android Studio, so that I can eventually use DeepLinks to open a specific application screen, but it's not working. I read it in several places and everything I found basically told me to change the code only in AndroidManifest.xml and include the lines:

<intent-filter>
            <action android:name="android.intent.action.ACTION_VIEW" />
            <category android:name="android.intent.category.DEFAULT" />
            <category android:name="android.intent.category.BROWSABLE" />
            <data android:scheme="myapp" android:host="open"/>
</intent-filter>

After including these lines I tested as a direct link in the mobile browser, such as "myapp: //" but did not recognize, and also tried using a platform of DeepLinks called Branch, where within the link it asks to be specified the URI Scheme to open if the user clicking on the link already has the App installed, and neither form worked.

What is missing (or what would I have to change) for this Scheme to work and can I open the App via a link?

    
asked by anonymous 25.05.2017 / 18:06

0 answers