summaryrefslogtreecommitdiffstats
path: root/gallerycommon
diff options
context:
space:
mode:
authorAhbong Chang <cwahbong@google.com>2012-08-30 15:16:50 +0800
committerAhbong Chang <cwahbong@google.com>2012-08-31 14:25:29 +0800
commitfcc407b4e5a6786c1d476c37d90ef9487508b95d (patch)
treea851190385e44970477816636fe85d6f2550358c /gallerycommon
parent8fe96573217f52b1200920e09727f98157610cb0 (diff)
downloadandroid_packages_apps_Snap-fcc407b4e5a6786c1d476c37d90ef9487508b95d.tar.gz
android_packages_apps_Snap-fcc407b4e5a6786c1d476c37d90ef9487508b95d.tar.bz2
android_packages_apps_Snap-fcc407b4e5a6786c1d476c37d90ef9487508b95d.zip
Add api check for FLAG_SECURE.
Bug: 7023285 Change-Id: I515123a7454595846bbea6369c05cd22b7d2ec60
Diffstat (limited to 'gallerycommon')
-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 ca778365c..418e3cdd2 100644
--- a/gallerycommon/src/com/android/gallery3d/common/ApiHelper.java
+++ b/gallerycommon/src/com/android/gallery3d/common/ApiHelper.java
@@ -154,6 +154,9 @@ public class ApiHelper {
public static final boolean CAN_START_PREVIEW_IN_JPEG_CALLBACK =
Build.VERSION.SDK_INT >= VERSION_CODES.ICE_CREAM_SANDWICH;
+ public static final boolean CAN_USE_FLAG_SECURE =
+ Build.VERSION.SDK_INT >= VERSION_CODES.HONEYCOMB;
+
public static int getIntFieldIfExists(Class<?> klass, String fieldName,
Class<?> obj, int defaultVal) {
try {