I submit a Run Configuration for an instantapp module in Android Studio with a Launch URL like https://example.com/?Q1=12345 and it runs fine. The autogenerated code for handleIntent()
extracts the intent data and the query. Then I can extract the query parameter, like this:
queryParm=appLinkIntent.getData().getQueryParameter("Q1")
I then try to test passing a second query parameter like https://example.com/?Q1=12345&Q2=67890. The instantApp Activity crashes without even posting a log entry in Logcat that fires at the top of onCreate()
.
Has anyone been able to pass at least two query paramters to the instantapp? If so, what am I missing?