Book Image

Android 6 Essentials

By : Yossi Elkrief
Book Image

Android 6 Essentials

By: Yossi Elkrief

Overview of this book

Android 6 is the latest and greatest version of the Android operating system, and comes packed with cutting edge new features for you to harness for the benefit of building better applications. This step-by-step guide will take you through the basics of the Android Marshmallow permissions model and beyond into other crucial areas such as the Audio,Video,Camera API and Android’s at work features. Learn how to create, deploy, and manage Android applications with Marshmallow’s API and the latest functionalities. The combination of instructions and real-world examples will make your application deployment and testing a breeze.
Table of Contents (16 chapters)
Android 6 Essentials
Credits
About the Author
Acknowledgments
About the Reviewer
www.PacktPub.com
Preface
Index

Testing app links


As with every new feature we add, we must test the app links feature that we will add to our application.

Checking manifest and listing domains

Our first step is to go over the manifest and make sure all the domains are registered correctly and all intent filters are well defined. Only the links/domains under all the criteria mentioned in the following bullets are the ones we need to test:

  • The android:scheme attribute with a value of HTTP or HTTPS

  • The android:host attribute with a domain URI pattern

  • The category element, which can be one of the following:

    • android.intent.action.VIEW

    • android.intent.category.BROWSABLE

The Digital Asset Links API

We can use the Digital Asset Links API to confirm that our link's JSON file is properly hosted and defined using the following syntax:

https://digitalassetlinks.googleapis.com/v1/statements:list?source.web.site=https://<DOMAIN>:<port>& relation=delegate_permission/common.handle_all_urls

Testing our intent

Now that we have...