summaryrefslogtreecommitdiffstats
path: root/proguard.flags
diff options
context:
space:
mode:
authorRuben Brunk <rubenbrunk@google.com>2013-03-11 19:00:12 -0700
committerRuben Brunk <rubenbrunk@google.com>2013-03-13 18:01:42 -0700
commit64cf19a431c4bfe20260cb36356e1f76b7e820e0 (patch)
treef3cfc1e0b6cbd2d62d15ace6ebf5a97e60d43fb4 /proguard.flags
parentdf7e37face0245ce8651a50ba3ee16febc2b2bdb (diff)
downloadandroid_packages_apps_Snap-64cf19a431c4bfe20260cb36356e1f76b7e820e0.tar.gz
android_packages_apps_Snap-64cf19a431c4bfe20260cb36356e1f76b7e820e0.tar.bz2
android_packages_apps_Snap-64cf19a431c4bfe20260cb36356e1f76b7e820e0.zip
Exif parser modifications.
Bug: 8018327 Change-Id: I66a2ec309f9807ac255bbf29d8f5f26de60e89b8
Diffstat (limited to 'proguard.flags')
-rw-r--r--proguard.flags17
1 files changed, 3 insertions, 14 deletions
diff --git a/proguard.flags b/proguard.flags
index 45221e211..8cb04867d 100644
--- a/proguard.flags
+++ b/proguard.flags
@@ -64,23 +64,12 @@
# For unit testing:
# - Required for running exif tests on userdebug
--keepclassmembers class com.android.gallery3d.exif.ExifTag {
- *** setValue(...);
- *** valueToString(...);
-}
--keepclassmembers class com.android.gallery3d.exif.ExifParser {
- *** parse(...);
-}
+-keep class com.android.gallery3d.exif.ExifTag { *; }
+-keep class com.android.gallery3d.exif.ExifData { *; }
+-keep class com.android.gallery3d.exif.ExifInterface { *; }
-keepclassmembers class com.android.gallery3d.exif.Util {
*** closeSilently(...);
}
--keepclassmembers class com.android.gallery3d.exif.ExifData {
- *** addInteroperabilityTag(...);
- *** addThumbnailTag(...);
- *** getTag(...);
- *** getInteroperabilityTag(...);
- *** getThumbnailTag(...);
-}
# - Required for running blobcache tests on userdebug
-keep class com.android.gallery3d.common.BlobCache { *; }