Android通过短信跳转App

2018-03-26  本文已影响0人  追逐未来2016

最佳博客: https://www.jianshu.com/p/76eaa1e0c2b2

<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:host="com.yunjibuyer.yunji"  应用程序包名
                    android:pathPrefix="/test" 自定义
                    android:scheme="https"/> 前缀http://

                <data
                    android:host="com.yunjibuyer.yunji"
                    android:pathPrefix="/test"
                    android:scheme="http"/>
            </intent-filter>

浏览器跳转App指定页: http://www.magicwindow.cn/doc/mlink-sdk-android.html

上一篇 下一篇

猜你喜欢

热点阅读