<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
    <queries>
        <package android:name="com.spotify.music" />
        <!-- Android 11+ package visibility: lets CustomTabsSupportChecker and our
             preflight guard resolve browsers for https://accounts.spotify.com. -->
        <intent>
            <action android:name="android.intent.action.VIEW" />
            <category android:name="android.intent.category.BROWSABLE" />
            <data android:scheme="https" />
        </intent>
        <intent>
            <action android:name="android.intent.action.VIEW" />
            <category android:name="android.intent.category.BROWSABLE" />
            <data android:scheme="http" />
        </intent>
    </queries>
    <application>
        <meta-data
            android:name="spotifyClientId"
            android:value="${spotifyClientId}" />
        <meta-data
            android:name="spotifyRedirectUri"
            android:value="${spotifyRedirectUri}" />
    </application>
</manifest>
