detect which device your on
Hi,
what are some of the availible options here?
example:
these will all return identical information for motorola droidX and motorola droid2
Capabilities.cpuArchitecture;
Capabilities.manufacturer;
Capabilities.os;Capabilities.screenDPI;
however the screens are much different in phisical size... so i need to detect that at runtime
so... any other methods people use to detect differences at runtime?
thanks!
...oh also to detect iOS v.s android, is this the best option?
if (Capabilities.manufacturer == "Android Linux") {
//android
} else if (Capabilities.manufacturer == "Adobe iOS") {
//iOS
}
