Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8f959c65 authored by Jonathan Klee's avatar Jonathan Klee
Browse files

Merge branch '3102-a14-fix-deep-links' into 'main'

Auto verify links

See merge request !550
parents c55bb085 083556b4
Loading
Loading
Loading
Loading
Loading
+10 −0
Original line number Diff line number Diff line
@@ -83,6 +83,16 @@
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
            <nav-graph android:value="@navigation/navigation_resource" />
            <intent-filter android:autoVerify="true">
                <action android:name="android.intent.action.VIEW" />
                <category android:name="android.intent.category.DEFAULT" />
                <category android:name="android.intent.category.BROWSABLE" />
                <data android:scheme="http" />
                <data android:scheme="https" />
                <data android:host="play.google.com" />
                <data android:host="f-droid.org" />
                <data android:host="play.app.goog.gl" />
            </intent-filter>
        </activity>

        <service
+3 −0
Original line number Diff line number Diff line
@@ -52,6 +52,9 @@
    <!-- Updating targetSdk requires further testing and is not the scope of this issue -->
    <issue id="ExpiredTargetSdkVersion" severity="warning" />

    <!-- We cannot update https://play.google.com/.well-known/assetlinks.json ourself -->
    <issue id="AppLinksAutoVerify" severity="warning" />

    <issue id="all" severity="error"/>
</lint>