From 3a45725ad42324cd2db172fb082fe80772d94d3f Mon Sep 17 00:00:00 2001 From: Owen Lin Date: Thu, 28 Jun 2012 11:10:02 +0800 Subject: Don't use Build.VERSION_CODES. Since they won't be available on old platform. bug: 6752318 Change-Id: I55a9e83dbf05b93c83c68cb31f6edcbc29793283 --- src/com/android/gallery3d/app/Wallpaper.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/com/android/gallery3d/app/Wallpaper.java') diff --git a/src/com/android/gallery3d/app/Wallpaper.java b/src/com/android/gallery3d/app/Wallpaper.java index d64eecdcf..1ece66c49 100644 --- a/src/com/android/gallery3d/app/Wallpaper.java +++ b/src/com/android/gallery3d/app/Wallpaper.java @@ -25,6 +25,8 @@ import android.os.Build; import android.os.Bundle; import android.view.Display; +import com.android.gallery3d.common.ApiHelper; + /** * Wallpaper picker for the gallery application. This just redirects to the * standard pick action. @@ -61,10 +63,10 @@ public class Wallpaper extends Activity { } @SuppressWarnings("deprecation") - @TargetApi(Build.VERSION_CODES.HONEYCOMB_MR2) + @TargetApi(ApiHelper.VERSION_CODES.HONEYCOMB_MR2) private Point getDefaultDisplaySize(Point size) { Display d = getWindowManager().getDefaultDisplay(); - if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB_MR2) { + if (Build.VERSION.SDK_INT >= ApiHelper.VERSION_CODES.HONEYCOMB_MR2) { d.getSize(size); } else { size.set(d.getWidth(), d.getHeight()); -- cgit v1.2.3