We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The following lines use a method which was deprecated in API 26 and removed in API 28. This makes Proguarding this library impossible:
SublimePicker/sublimepickerlibrary/src/main/java/com/appeaser/sublimepickerlibrary/timepicker/RadialTimePickerView.java
Line 704 in 8f573b1
and
Line 713 in 8f573b1
However, the solution is simple. Just use
canvas.save()
instead of
canvas.save(Canvas.CLIP_SAVE_FLAG);
The text was updated successfully, but these errors were encountered:
fix vikramkakkar#90 - remove canvas.save(int)
58927a6
Successfully merging a pull request may close this issue.
The following lines use a method which was deprecated in API 26 and removed in API 28. This makes Proguarding this library impossible:
SublimePicker/sublimepickerlibrary/src/main/java/com/appeaser/sublimepickerlibrary/timepicker/RadialTimePickerView.java
Line 704 in 8f573b1
and
SublimePicker/sublimepickerlibrary/src/main/java/com/appeaser/sublimepickerlibrary/timepicker/RadialTimePickerView.java
Line 713 in 8f573b1
However, the solution is simple. Just use
canvas.save()
instead of
canvas.save(Canvas.CLIP_SAVE_FLAG);
The text was updated successfully, but these errors were encountered: