<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android">

    <application>
        <activity android:name=".MainActivity" taskAffinity="com.suno.android.staff">
            <!-- Custom suno schema for staging -->
            <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="suno" />
                <data android:host="@string/host_uri_staging" />
                <data android:pathPrefix="@string/oauth_redirect_path" />
                <data android:pathPrefix="/song" />
                <data android:pathPrefix="/playlist" />
                <data android:pathPrefix="/notifications" />
                <data android:pathPrefix="/create" />
                <data android:pathPrefix="/hook" />
                <data android:pathPrefix="/subscribe" />
                <data android:pathPrefix="/s" />
            </intent-filter>
        </activity>
    </application>

</manifest>
