0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

アプリのディープリンクまとめ

Posted at

ディープリンクとは?

urlでアプリの特定画面を開く技術全般のこと。

Androidにおいては、intent-filterでActivityを起動する仕組みのことも指す。

http/https以外のschemaに反応させたい場合もこれを使う。
tel:// とか mailto://とか)

Androidアプリリンク

Android版Universal Links

intent-filterだと、同じ条件が設定されているActivityが起動し得るので(メールアドレスをタップすると複数のメーラーが候補に出てくるように)起動するアプリを限定したいときに使用する。
検証用にアプリサーバーなどに所有者を示すファイルを置く必要がある。

Universal Links

iOSにおけるディープリンクの新しい実装。
Androidアプリリンクとだいたいの動作は同じ。
(使えるようになるまでの手順も似ている)

Custom URLs

Androidにおけるintent-filterによるディープリンクの実装と同じもの(古い実装)。
例えば、Facebookならfb://user/hogehoge みたいなurlでFacebookアプリのユーザーページを開く、といったurlのこと。

DynamicLinks

Android/iOSにおけるディープリンクの実装をラップしたサービス。
内部的には前述の実装を使い分けている。

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?