1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Power Apps でアプリのバージョン情報を表示する

Posted at

はじめに

ごきげんよう、百合宮桜(Miyu)です。
今回はアプリのバージョン名の取得についてお話ししたいと思います。
Power Apps のアプリ上に現在のバージョン名を表示したいという要望はよく聞きます。
確かにバージョン名でアプリの最終更新日が分かれば、こまめにアップデートしてくれているのが分かって使いたくなりますもんね♪

image.png

Power Apps では「作成者向け Power Apps 」というコネクタを利用して、アプリのバージョン履歴の変更済み列のデータをバージョン名として表示することができます。

image.png

表示方法

  1. アプリのID を取得します

    image.png
    image.png

  2. データの追加 > 作成者向け Power Apps をクリックします

    image.png

  3. 画面右側に出てくるウィンドウで「接続」をクリックして、データを追加します

    image.png
    image.png

  4. テキストラベルを追加し、テキストプロパティに以下の式を入力します

    First(
        作成者向けPowerApps.GetAppVersions("アプリID").value
    ).properties.appVersion
    

    image.png

終わりに

いかがでしたか? 
作成者向け Power Apps コネクタはバージョン名の他にも様々な情報を取得できます。

ぜひ活用してみてくださいね。

1
0
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
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?