我想编写一个应用程序,允许我从手机远程开始在我的桌面上下载种子文件。如何更改 android 以使用我的应用打开磁力链接?我正在尝试找到一个非浏览器特定的解决方案,可以在安装时执行,而无需用户进行设置。
编辑:
像这样的东西?
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.BROWSABLE" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="magnet" />
<data android:host="*" />
<data android:mimeType="application/myApp" />
</intent-filter>