#2361·love

.love files could launch the app on android via intent

Author: emdeteCreated Sep 8, 2026Updated Sep 8, 2026

i dont know if i am just late for the party and the topic was already discussed (i didnt find any issue about it) but why doesnt the app register an intent (like this:

<intent-filter>
    <action android:name="android.intent.action.VIEW" />
    <category android:name="android.intent.category.DEFAULT" />
    <category android:name="android.intent.category.BROWSABLE" />
    <data
        android:mimeType="application/x-love-game"
        android:pathSuffix=".love" />
</intent-filter>

) to be launched if someone uses a filebrowser and clicks the .love file?