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
Warning: com.steelkiwi.cropiwa.shape.CropIwaOvalShape: can't find referenced method 'int save(int)' in library class android.graphics.Canvas
A class com.steelkiwi.cropiwa.shape.CropIwaOvalShape, error on 45 line:
canvas.save(Canvas.CLIP_SAVE_FLAG);
CLIP_SAVE_FLAG - cannot resolve symbol
CLIP_SAVE_FLAG has been pruned in P, along with the parametarized save() method. Source: https://developer.android.com/sdk/api_diff/28/changes/android.graphics.Canvas
As a workaround (proguard):
-dontwarn com.steelkiwi.** -keep class com.steelkiwi.** -keep interface com.steelkiwi.**
The text was updated successfully, but these errors were encountered:
No branches or pull requests
A class com.steelkiwi.cropiwa.shape.CropIwaOvalShape, error on 45 line:
CLIP_SAVE_FLAG - cannot resolve symbol
As a workaround (proguard):
The text was updated successfully, but these errors were encountered: