LoginSignup
12
9

More than 5 years have passed since last update.

UnityからAndroidのVersion取得

Last updated at Posted at 2014-12-19

ごく普通のコードです。道端に転がってた毒コードに惑わされないように。

    var cls = new AndroidJavaClass("android.os.Build$VERSION");
    var apiLevel = cls.GetStatic<int>("SDK_INT");
    Debug.Log(apiLevel);
12
9
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
12
9