mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 797652 - Current code agent code crashes on android 2.3. r=wlach
This commit is contained in:
parent
450a7fb004
commit
c7ac4d2fb0
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user