kolin
kolin

Reputation: 63

Instant Application publish error: The default URL "https://xxxl.com" is not mapped to your Instant application

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?

Upvotes: 2

Views: 1772

Answers (1)

Pablo C. García
Pablo C. García

Reputation: 22404

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

Upvotes: 1

Related Questions