Home | History | Annotate | Download | only in 3_software
      1 ## 3.15\. Instant Apps
      2 
      3 Device implementations MUST satisfy the following requirements:
      4 
      5 *   [C-0-1] Instant Apps MUST only be granted permissions that have the
      6     [`android:protectionLevel`](https://developer.android.com/guide/topics/manifest/permission-element.html#plevel)
      7     set to `"ephemeral"`.
      8 *   [C-0-2] Instant Apps MUST NOT interact with installed apps via [implicit intents](https://developer.android.com/reference/android/content/Intent.html)
      9     unless one of the following is true:
     10     *   The component's intent pattern filter is exposed and has CATEGORY_BROWSABLE
     11     *   The action is one of ACTION_SEND, ACTION_SENDTO, ACTION_SEND_MULTIPLE
     12     *   The target is explicitly exposed with [android:visibleToInstantApps](https://developer.android.com/reference/android/R.attr.html#visibleToInstantApps)
     13 *   [C-0-3] Instant Apps MUST NOT interact explicitly with installed apps unless the
     14     component is exposed via android:visibleToInstantApps.
     15 *   [C-0-4] IInstalled Apps MUST NOT see details about Instant Apps on the
     16     device unless the Instant App explicitly connects to the
     17     installed application.
     18