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
It seems that pkg.Icon(nil) fails if apk uses adaptive icon format
The text was updated successfully, but these errors were encountered:
@fisherWang2017 I just found some random apk and got icon error. Is this a same case? File: file.apk.zip
Sorry, something went wrong.
this code fixed my same problem
icon, err := pkg.Icon(&androidbinary.ResTableConfig{ Density: 720, })
Adaptive Icon is available from SDK Version 26. So, adding SDKVersion: 25 may be a workaround.
SDKVersion: 25
icon, err := pkg.Icon(&androidbinary.ResTableConfig{ SDKVersion: 25, })
No branches or pull requests
It seems that pkg.Icon(nil) fails if apk uses adaptive icon format
The text was updated successfully, but these errors were encountered: