2

1.I had add default url "https://example.com" on LAUNCHER Activity;

2.used App Links Assistant Test All is Ok(Associate website is OK);

play store tip:The default URL "https://example.com" is not mapped to your Instant application?

What was problem?

kolin
  • 63
  • 7

1 Answers1

1

in the installed module: app/manifest

<activity android:name="com.example.MainActivity">

        <meta-data
                android:name="default-url"
                android:value="https://example.com/app" />
 </activity>

And the same metadata in your feature manifest

Pablo Cegarra
  • 20,955
  • 12
  • 92
  • 110