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

OSバージョンの取得方法

Posted at

OSバージョンを取得するにはAPIレベルを取得します。APIレベルを使用すれば、端末のバージョンによって処理を分岐したり、Google Playに公開するバージョンを指定できます。

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.VANILLA_ICE_CREAM) {
    // OS15以上の時の処理
} else {
    // OS14以下の時の処理
}

Build.VERSION.SDK_INTは自身の端末のOSバージョンを取得できます。

minSdkVersion 28 // アプリが動作する最小バージョン
targetSdkVersion 34 // アプリの対象バージョン
0
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
0
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?