Introduction
Here is the source code for Main.java
Source
//package com.java2s;
public class Main {
private static Integer SDK = null;
public static boolean IsFroyo() {
if (SDK == null) {
SDK = Integer.valueOf(Integer.parseInt(android.os.Build.VERSION.SDK));
}
return SDK.intValue() == 8;
}
}