-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.lua
32 lines (30 loc) · 1.96 KB
/
config.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
print (" Display Name : ", MOAIEnvironment.appDisplayName)
print (" App ID : ", MOAIEnvironment.appID)
print (" App Version : ", MOAIEnvironment.appVersion)
print (" Cache Directory : ", MOAIEnvironment.cacheDirectory)
print (" Carrier ISO Country Code : ", MOAIEnvironment.carrierISOCountryCode)
print ("Carrier Mobile Country Code : ", MOAIEnvironment.carrierMobileCountryCode)
print ("Carrier Mobile Network Code : ", MOAIEnvironment.carrierMobileNetworkCode)
print (" Carrier Name : ", MOAIEnvironment.carrierName)
print (" Connection Type : ", MOAIEnvironment.connectionType)
print (" Country Code : ", MOAIEnvironment.countryCode)
print (" CPU ABI : ", MOAIEnvironment.cpuabi)
print (" Device Brand : ", MOAIEnvironment.devBrand)
print (" Device Name : ", MOAIEnvironment.devName)
print (" Device Manufacturer : ", MOAIEnvironment.devManufacturer)
print (" Device Mode : ", MOAIEnvironment.devModel)
print (" Device Platform : ", MOAIEnvironment.devPlatform)
print (" Device Product : ", MOAIEnvironment.devProduct)
print (" Document Directory : ", MOAIEnvironment.documentDirectory)
print (" iOS Retina Display : ", MOAIEnvironment.iosRetinaDisplay)
print (" Language Code : ", MOAIEnvironment.languageCode)
print (" OS Brand : ", MOAIEnvironment.osBrand)
print (" OS Version : ", MOAIEnvironment.osVersion)
print (" Resource Directory : ", MOAIEnvironment.resourceDirectory)
print (" Screen DPI : ", MOAIEnvironment.screenDpi)
print (" Screen Height : ", MOAIEnvironment.screenHeight)
print (" Screen Width : ", MOAIEnvironment.screenWidth)
print (" UDID : ", MOAIEnvironment.udid)
--if MOAIEnvironment.osBrand == "Windows" then
dofile ("platforms/windows.lua")
--end