summaryrefslogtreecommitdiffstats
path: root/gallerycommon/src
diff options
context:
space:
mode:
authorOwen Lin <owenlin@google.com>2012-07-05 17:06:56 +0800
committerOwen Lin <owenlin@google.com>2012-07-05 17:06:56 +0800
commit3969aca03ea7537e793c5c55acec752148151480 (patch)
tree61157fcef0447d95745e126861d37ec38f57455e /gallerycommon/src
parent362f50ca3adea7a13302e22b07bd9a45a952333b (diff)
downloadandroid_packages_apps_Snap-3969aca03ea7537e793c5c55acec752148151480.tar.gz
android_packages_apps_Snap-3969aca03ea7537e793c5c55acec752148151480.tar.bz2
android_packages_apps_Snap-3969aca03ea7537e793c5c55acec752148151480.zip
Don't test the EXTRA_LOCAL_ONLY before HC.
Change-Id: Idebb2aba994e38cf7eead795f1834ff98eaec27d
Diffstat (limited to 'gallerycommon/src')
-rw-r--r--gallerycommon/src/com/android/gallery3d/common/ApiHelper.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/gallerycommon/src/com/android/gallery3d/common/ApiHelper.java b/gallerycommon/src/com/android/gallery3d/common/ApiHelper.java
index 06518108b..20098e4b4 100644
--- a/gallerycommon/src/com/android/gallery3d/common/ApiHelper.java
+++ b/gallerycommon/src/com/android/gallery3d/common/ApiHelper.java
@@ -67,6 +67,9 @@ public class ApiHelper {
public static final boolean HAS_REMOTE_VIEWS_SERVICE =
Build.VERSION.SDK_INT >= VERSION_CODES.HONEYCOMB;
+ public static final boolean HAS_INTENT_EXTRA_LOCAL_ONLY =
+ Build.VERSION.SDK_INT >= VERSION_CODES.HONEYCOMB;
+
private static boolean hasField(Class<?> klass, String fieldName) {
try {
klass.getDeclaredField(fieldName);