Instant NFC Applications

I am trying to open an instant application through NFC.

I have something like below in my AndroidManifest.xml

<intent-filter android:autoVerify="true"> <action android:name="android.intent.action.VIEW" /> <action android:name="android.nfc.action.NDEF_DISCOVERED" /> <category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.BROWSABLE" /> <data android:scheme="https" /> <data android:scheme="http" /> <data android:host="example-refresh.herokuapp.com" /> </intent-filter> 

When you go to https://example-refresh.herokuapp.com (for example, a link to a link) from a link, click so that the application instantly loads correctly. When you open this link from the nfc tag, the browser simply loads. I also tried to open nfc AAR ( https://developer.android.com/guide/topics/connectivity/nfc/nfc.html#aar ), this leads to the opening of the link in the playback store when the application is not installed and the application opens correctly from nfc when it is installed. If I have something else on nfc, so it shows uncompromising options, then I can choose the instant application for the browser option, but I would like it to be the default for the instant application.

Is there something I am missing to get the nfc tag to download an instant application? I also tried using a branch, but no luck.

+8
android deep-linking nfc android-instant-apps
source share

No one has answered this question yet.

See similar questions:

3
Opening Google Play in a pop-up menu (e.g. Vimeo, Wisher, Buzzfeed) - instant application
one
How to simulate tag binding from another application
0
how to implement google instant nfc app in android studio

or similar:

nine
Android: handle OAuth callback with intent filter
4
Correct Android intent filter configuration to associate file type with activity?
2
Deep link to the application (specific activity) using the NFC tag
2
Android NFC tag with URL opening browser, not my application
one
Android - try connecting to Dropbox API version 2
0
Can I skip the current track using an NFC tag?
0
Use application links to run instant applications
0
OnNewIntent is not called when Activity starts through an NFC tag
0
How can I get a multiple NFC record after starting an AAR application
0
Android NFC - Add Parameter to AAR

All Articles