Google io 2015 jump from link app, 2015app
Two new features
The biggest change in the Android ecosystem is the release of Android M.
The UI and interaction are not significantly changed. We continue to Design the Material Design language,
The new features introduced by Android M have two major impacts on application developers.
The first is the permission mechanism of the APP. The permission is not confirmed by the user during installation, but is confirmed by the user when the APP requires a certain permission. I think this mechanism is a major enhancement to the security of the Android system. For developers, they need to pay more attention to the use of APP permissions, permissions unrelated to the application business may be questioned and rejected by users. Therefore, I suggest developers carefully check their application permission usage and minimize the use of permissions to meet business needs, so as to use sensitive permissions with caution. The second is Chrome Custom Tab, that is, embedding Chrome into the APP. Compared with the original webview technology, it improves the performance and has more powerful functions, such as automatic password filling, and can jump directly to the associated APP through the connection.
---- The above content is taken from the Internet and is only for personal learning remarks.
From link to APP
How did Android M jump before? The idea is to send the action view + schema mechanism through intent. For more details, see the reference link after the article.
How does Android M work? In addition, the android framework performs further verification (including signature information) based on the manifest configuration to implement exact matching, this removes the 'selection box that pops up, so that you can jump from your link to your app and implement a closed loop.
Two Images
More references
- Http://my.oschina.net/liucundong/blog/168612
- Http://my.oschina.net/liucundong/blog/354029
- Http://blog.csdn.net/buptlzx/article/details/9837137