-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Security : Migrated exifInterface to androidx exif.interface #6013
Conversation
@@ -66,13 +63,13 @@ class EditActivity : AppCompatActivity() { | |||
ExifInterface.TAG_GPS_TIMESTAMP, | |||
ExifInterface.TAG_IMAGE_LENGTH, | |||
ExifInterface.TAG_IMAGE_WIDTH, | |||
ExifInterface.TAG_ISO, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For reviewers:
As per linked issue I migrated to TAG_ISO
to TAG_ISO_SPEED_RATINGS
but this ISO_SPEED_Ratings is deprecated in androidx.exifinterface.media.ExifInterface
so I migrated it to TAG_PHOTOGRAPHIC_SENSITIVITY
ExifInterface.TAG_MAKE, | ||
ExifInterface.TAG_MODEL, | ||
ExifInterface.TAG_ORIENTATION, | ||
ExifInterface.TAG_WHITE_BALANCE, | ||
ExifInterface.WHITEBALANCE_AUTO, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For reviewers:
Deprecated in androidx
Ref : https://developer.android.com/reference/kotlin/androidx/exifinterface/media/ExifInterface#WHITEBALANCE_AUTO()
ExifInterface.TAG_MAKE, | ||
ExifInterface.TAG_MODEL, | ||
ExifInterface.TAG_ORIENTATION, | ||
ExifInterface.TAG_WHITE_BALANCE, | ||
ExifInterface.WHITEBALANCE_AUTO, | ||
ExifInterface.WHITEBALANCE_MANUAL, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For reviewers:
Deprecated in androidx
Ref : https://developer.android.com/reference/kotlin/androidx/exifinterface/media/ExifInterface#WHITEBALANCE_MANUAL()
android.media.ExifInterface;
toandroidx.exifinterface.media.ExifInterface
#5994