Latest Update | Current Stable Release | Next Release Candidate | Beta Release | Alpha Release |
---|---|---|---|---|
November 20, 2019 | 1.1.0 | - | - | - |
Declaring dependencies
To add a dependency on Exifinterface, you must add the Google Maven repository to your project. Read Google's Maven repository for more information.
Add the dependencies for the artifacts you need in the build.gradle
file for
your app or module:
dependencies { implementation "androidx.exifinterface:exifinterface:1.1.0" }
For more information about dependencies, see Add build dependencies.
Version 1.1.0
Version 1.1.0
November 20, 2019
androidx.exifinterface:exifinterface:1.1.0
is released. Version 1.1.0 contains these commits.
Important changes since 1.0.0
- Support for HEIF format and more XMP tags
- Added support for constructing an
ExifInterface
object from aFile
orFileDescriptor
- Added more methods for getting attribute:
hasAttribute
,getAttributeBytes
, andgetAttributesRange
Version 1.1.0-rc01
October 9, 2019
androidx.exifinterface:exifinterface:1.1.0-rc01
is released. Version 1.1.0-rc01 contains these commits.
Bug fixes
- Added a missing format name (IFD) to prevent an
ArrayIndexOutOfBoundsException
onloadAttributes
- Prevented the deletion of the origin file when an exception happens while calling
saveAttributes
- Fixed an exception issue when there is a call to
saveAttributes()
after overwriting a file.
Version 1.1.0-beta01
July 2, 2019
androidx.exifinterface:exifinterface:1.1.0-beta01
is released. The commits included in this version can be found here.
New features
- Throws
NullPointerException
whennull
is set for@NonNull
arguments - Support for XMP tags
API changes
- Added more methods for getting attribute info
hasAttribute
,getAttributeBytes
, andgetAttributesRange
Bug fixes
- Prevent file descriptor memory leak
Version 1.1.0-alpha01
March 13, 2019
androidx.exifinterface:exifinterface:1.1.0-alpha01
is released. The full list of commits included in this version can be found here.
New features
- Support HEIF format
API changes
- Added more constructors of ExifInterface
- Fixed Typo:
TAG_CAMARA_OWNER_NAME
->TAG_CAMERA_OWNER_NAME
Bug fixes
- Fixed the check of possible overflow for thumbnail image (aosp/748608)