开发者

Adobe Air - get device name (such as EVO, DROID X..)

开发者 https://www.devze.com 2023-04-12 08:29 出处:网络
I\'m working in Actionscript in Adobe Air, and I want to get a dev开发者_开发百科ice\'s model name, such as \'EVO\' or \'DROID X\'. Has anyone been able to do this? Thanks.Capabilities.os and Capabili

I'm working in Actionscript in Adobe Air, and I want to get a dev开发者_开发百科ice's model name, such as 'EVO' or 'DROID X'. Has anyone been able to do this? Thanks.


Capabilities.os and Capabilities.manufacturer are probably sufficient for identifying an iOS device (iPhone, iPod, iPad, as well as their generation). On Android, the platform you specified, these properties are too general. In my testing, manufacturer is "Android Linux" and os is "Linux" plus numbers indicating the exact Linux version. This is enough for your code to recognize it's running on Android but little else.

To access device name on Android, you'd need to write or find a Native Extension that returns android.os.Build.MODEL. Based on searching, no such extension exists yet.


You can try Android-Native-Device-Info it has device's brand, model, OS version and CPU, LCD Density, etc.


Take a look on Capabilities class (there are two properties os and manufacturer). I'm not sure if the device name is included in any of this.


To get these details (SSID, MAC address and device name) from iOS I found this ANE from as3 Gamegears. Github Project link.


Probably late answer but maybe others still need it. If you looking for Native Extension to get Android device info you can check this DeviceInfoANE. Feel free to use and modify!


I found it... It is here: android.os.Build.MODEL

0

精彩评论

暂无评论...
验证码 换一张
取 消