Skip to content

Commit

Permalink
Merge pull request #884 from GoogleChromeLabs/883-bubblewrap-does-not…
Browse files Browse the repository at this point in the history
…-take-scope-from-manifest-into-account-to-generate-androidmanifestxml

Fix #883 Add pathPrefix=scope to Android intent filter
  • Loading branch information
OlegNitz authored Aug 30, 2024
2 parents 2395d6a + 38e6769 commit 7d3f005
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,11 @@
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE"/>
<data android:scheme="https"
android:host="@string/hostName"/>
android:host="@string/hostName"
<% if (fullScopeUrl && fullScopeUrl.pathname !== '/') { %>
android:pathPrefix="<%= fullScopeUrl.pathname %>"
<% } %>
/>
</intent-filter>

<% for (const additionalOrigin of additionalTrustedOrigins) { %>
Expand Down

0 comments on commit 7d3f005

Please sign in to comment.