.. _15 How to get device manufacturer name: 15 How to get device manufacturer name ============================================== If developers want to load the corresponding SDK on different devices when starting up apps, we recommend to retrieve manufacturer name as below to proceed with judgement. 1. Android: .. code-block:: c++ String manufacturer = android.os.Build.MANUFACTURER; 2. Unity: .. code-block:: c++ AndroidJavaClass ajc = new AndroidJavaClass("android.os.Build"); string deviceManufacturer = ajc.GetStatic("MANUFACTURER"); 3. Unreal: Refer to the document about `PicoVR Jar Usage in Unreal`_ to call Android interface to get the manufacturer. .. _PicoVR Jar Usage in Unreal: https://sdk.picovr.com/docs/JarUnreal/index.html