エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
記事へのコメント1件
- 注目コメント
- 新着コメント
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
Androidで自身のアプリのPlay Storeを開く - Qiita
fun openMyAppPlayStore() { val id = BuildConfig.applicationIdForStore try { context.startActivity... fun openMyAppPlayStore() { val id = BuildConfig.applicationIdForStore try { context.startActivity(Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id=" + id))) } catch (anfe: android.content.ActivityNotFoundException) { context.startActivity(Intent(Intent.ACTION_VIEW, Uri.parse("https://play.google.com/store/apps/details?id=" + id))) } } BuildConfig.applicationIdForStoreは追加で設定したもので詳細は後で記載します
2016/12/16 リンク