Difference between revisions of "Application:getDeviceInfo"
m (Text replacement - "</source" to "</syntaxhighlight") |
|||
(7 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
− | + | ||
− | ''' | + | '''Available since:''' Gideros 2011.6<br/> |
− | ''' | + | '''Class:''' [[Application]]<br/> |
− | === | + | |
− | + | === Description === | |
− | Returns information about device.< | + | Returns information about device. |
− | < | + | <syntaxhighlight lang="lua"> |
− | + | (varies) = application:getDeviceInfo() | |
− | + | </syntaxhighlight> | |
− | + | ||
− | + | ||
− | + | * for iOS, returns 5 values: "iOS", iOS version, device type, user interface idiom and device model<br/> | |
− | + | * for Android, returns 4 values: "Android", Android version, manufacturer and model information<br/> | |
− | <br | + | * for Windows returns 1 value: "Windows"<br/> |
+ | * for Mac OS X returns 1 value: "Mac OS"<br/> | ||
+ | * for Win32 returns 1 value: "Win32"<br/> | ||
+ | * for HTML5 returns 2 values: "Web", Browser ID string<br/> | ||
+ | |||
+ | === Return values === | ||
+ | '''Returns''' (varies) information about device, returned informations varies depending on platform</br> | ||
==== iOS values ==== | ==== iOS values ==== | ||
Line 21: | Line 27: | ||
4th value -> UI_USER_INTERFACE_IDIOM() (as "iPhone" or "iPad")<br/> | 4th value -> UI_USER_INTERFACE_IDIOM() (as "iPhone" or "iPad")<br/> | ||
5th value -> hw.machine. <br/> | 5th value -> hw.machine. <br/> | ||
− | + | ||
− | Here are the possibilities:<br/> | + | '''Here are the possibilities''':<br/> |
iPhone1,1 -> iPhone 1G, M68<br/> | iPhone1,1 -> iPhone 1G, M68<br/> | ||
iPhone1,2 -> iPhone 3G, N82<br/> | iPhone1,2 -> iPhone 3G, N82<br/> | ||
Line 35: | Line 41: | ||
iPhone5,1 -> iPhone Next Gen, TBD<br/> | iPhone5,1 -> iPhone Next Gen, TBD<br/> | ||
iPhone5,1 -> iPhone Next Gen, TBD<br/> | iPhone5,1 -> iPhone Next Gen, TBD<br/> | ||
− | + | ||
iPod1,1 -> iPod touch 1G, N45<br/> | iPod1,1 -> iPod touch 1G, N45<br/> | ||
iPod2,1 -> iPod touch 2G, N72<br/> | iPod2,1 -> iPod touch 2G, N72<br/> | ||
Line 41: | Line 47: | ||
iPod3,1 -> iPod touch 3G, N18<br/> | iPod3,1 -> iPod touch 3G, N18<br/> | ||
iPod4,1 -> iPod touch 4G, N80<br/> | iPod4,1 -> iPod touch 4G, N80<br/> | ||
− | + | ||
iPad1,1 -> iPad 1G, WiFi and 3G, K48<br/> | iPad1,1 -> iPad 1G, WiFi and 3G, K48<br/> | ||
iPad2,1 -> iPad 2G, WiFi, K93<br/> | iPad2,1 -> iPad 2G, WiFi, K93<br/> | ||
Line 52: | Line 58: | ||
iPad4,2 -> (iPad 4G, GSM)<br/> | iPad4,2 -> (iPad 4G, GSM)<br/> | ||
iPad4,3 -> (iPad 4G, CDMA)<br/> | iPad4,3 -> (iPad 4G, CDMA)<br/> | ||
− | + | ||
i386, x86_64 -> iPhone Simulator<br/> | i386, x86_64 -> iPhone Simulator<br/> | ||
− | |||
==== Android values ==== | ==== Android values ==== | ||
Line 60: | Line 65: | ||
2nd value -> android.os.Build.VERSION.SDK_INT<br/> | 2nd value -> android.os.Build.VERSION.SDK_INT<br/> | ||
3rd value -> android.os.Build.MANUFACTURER<br/> | 3rd value -> android.os.Build.MANUFACTURER<br/> | ||
− | 4th value -> android.os.Build.MODEL | + | 4th value -> android.os.Build.MODEL<br/> |
− | |||
− | |||
− | |||
− | <br/> | ||
− | + | {{Application}} | |
− |
Latest revision as of 16:56, 12 July 2023
Available since: Gideros 2011.6
Class: Application
Description
Returns information about device.
(varies) = application:getDeviceInfo()
- for iOS, returns 5 values: "iOS", iOS version, device type, user interface idiom and device model
- for Android, returns 4 values: "Android", Android version, manufacturer and model information
- for Windows returns 1 value: "Windows"
- for Mac OS X returns 1 value: "Mac OS"
- for Win32 returns 1 value: "Win32"
- for HTML5 returns 2 values: "Web", Browser ID string
Return values
Returns (varies) information about device, returned informations varies depending on platform
iOS values
1st value -> "iOS"
2nd value -> [[UIDevice currentDevice] systemVersion]
3rd value -> [[UIDevice currentDevice] model]
4th value -> UI_USER_INTERFACE_IDIOM() (as "iPhone" or "iPad")
5th value -> hw.machine.
Here are the possibilities:
iPhone1,1 -> iPhone 1G, M68
iPhone1,2 -> iPhone 3G, N82
iPhone2,1 -> iPhone 3GS, N88
iPhone3,1 -> iPhone 4/AT&T, N89
iPhone3,2 -> iPhone 4/Other Carrier?, ??
iPhone3,3 -> iPhone 4/Verizon, TBD
iPhone4,1 -> (iPhone 4S/GSM), TBD
iPhone4,2 -> (iPhone 4S/CDMA), TBD
iPhone4,3 -> (iPhone 4S/???)
iPhone5,1 -> iPhone Next Gen, TBD
iPhone5,1 -> iPhone Next Gen, TBD
iPhone5,1 -> iPhone Next Gen, TBD
iPod1,1 -> iPod touch 1G, N45
iPod2,1 -> iPod touch 2G, N72
iPod2,2 -> Unknown, ??
iPod3,1 -> iPod touch 3G, N18
iPod4,1 -> iPod touch 4G, N80
iPad1,1 -> iPad 1G, WiFi and 3G, K48
iPad2,1 -> iPad 2G, WiFi, K93
iPad2,2 -> iPad 2G, GSM 3G, K94
iPad2,3 -> iPad 2G, CDMA 3G, K95
iPad3,1 -> (iPad 3G, WiFi)
iPad3,2 -> (iPad 3G, GSM)
iPad3,3 -> (iPad 3G, CDMA)
iPad4,1 -> (iPad 4G, WiFi)
iPad4,2 -> (iPad 4G, GSM)
iPad4,3 -> (iPad 4G, CDMA)
i386, x86_64 -> iPhone Simulator
Android values
1st value -> "Android"
2nd value -> android.os.Build.VERSION.SDK_INT
3rd value -> android.os.Build.MANUFACTURER
4th value -> android.os.Build.MODEL
- Application:canOpenUrl
- Application:checkPermission
- Application:configureFrustum
- Application:enableDrawInfo
- Application:enableOnDemandDraw
- Application:exit
- Application:get
- Application:getApiVersion
- Application:getAppId
- Application:getBackgroundColor
- Application:getClipboard
- Application:getContentHeight
- Application:getContentWidth
- Application:getDeviceHeight
- Application:getDeviceInfo
- Application:getDeviceName
- Application:getDeviceOrientation
- Application:getDeviceSafeArea
- Application:getDeviceWidth
- Application:getFps
- Application:getKeyboardModifiers
- Application:getLanguage
- Application:getLocale
- Application:getLogicalBounds
- Application:getLogicalHeight
- Application:getLogicalScaleX
- Application:getLogicalScaleY
- Application:getLogicalTranslateX
- Application:getLogicalTranslateY
- Application:getLogicalWidth
- Application:getNativePath
- Application:getOrientation
- Application:getProjectProperties
- Application:getScaleMode
- Application:getScreenDensity
- Application:getTextureMemoryUsage
- Application:isPlayerMode
- Application:openUrl
- Application:requestPermissions
- Application:set
- Application:setBackgroundColor
- Application:setClipboard
- Application:setEventMerging
- Application:setFps
- Application:setFullScreen
- Application:setKeepAwake
- Application:setKeyboardVisibility
- Application:setLogicalDimensions
- Application:setOrientation
- Application:setScaleMode
- Application:setTextInput
- Application:setWindowSize
- Application:vibrate