74
72

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 5 years have passed since last update.

Androidでchromeからアプリを開くか、なければPlayストアを開く方法

Last updated at Posted at 2013-06-13

Androidにおいて、ブラウザからアプリを開くが、もし、アプリがインストールされていなかったらgoogle playを開きたい、という動作は下の方法で対応していた。

アプリがインストールされてなかったらApp Storeへ誘導する

しかし、chromeでは、セキュリティ対策のため、iframeを使った方法では動作しなくなったようだ。
対応策はここ

JavaScript使ってややこしいことをする必要がなく、下のようなタグを作れば良い。

<a href="intent://sample#Intent;scheme=foo;package=jp.example.foo;end">OPEN</a>

アプリがあれば、アプリ(foo://sample)を開き、無ければ jp.example.fooで登録されたアプリのページをPlayストアで開いてくれる。

74
72
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
74
72

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?