Merge branch 'master' of git.linphone.org:linphone-android

This commit is contained in:
Simon Morlat 2011-02-14 16:08:37 +01:00
commit 43211e9682

View file

@ -26,8 +26,8 @@ import android.os.Build;
*/
public class Version {
private static final int buildVersion =
Integer.parseInt(Build.VERSION.SDK);
private static final int buildVersion = Integer.parseInt(Build.VERSION.SDK) >= 9?
8 : Integer.parseInt(Build.VERSION.SDK); // Force versions above 9 to 8
// 7; // 2.1
public static final boolean sdkAbove(int value) {