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 450a7fb004
commit c7ac4d2fb0

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;
}