Commit 3ce1685d authored by Devon Carew's avatar Devon Carew

update comments for android abi

parent e939b152
......@@ -52,9 +52,9 @@ class AndroidDevice extends Device {
bool get isLocalEmulator {
if (_isLocalEmulator == null) {
// sample values: x86, armeabi-v7a
// http://developer.android.com/ndk/guides/abis.html (x86, armeabi-v7a, ...)
String value = runCheckedSync(adbCommandForDevice(['shell', 'getprop', 'ro.product.cpu.abi']));
_isLocalEmulator = value == 'x86';
_isLocalEmulator = value.startsWith('x86');
}
return _isLocalEmulator;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment