Bug 797652 - Current code agent code crashes on android 2.3. r=wlach

This commit is contained in:
Joel Maher 2012-10-10 10:17:40 -04:00
parent ba90630e94
commit d83a18bcfd

View File

@ -746,8 +746,8 @@ public class SUTAgentAndroid extends Activity
if (sHWID != null)
return sHWID;
// If we're on SDK version >= 8, use Build.SERIAL
if (android.os.Build.VERSION.SDK_INT >= 8) {
// If we're on SDK version > 8, use Build.SERIAL
if (android.os.Build.VERSION.SDK_INT > 8) {
sHWID = android.os.Build.SERIAL;
}