Replies: 1 comment 1 reply
-
You can't change the icon of an Android app at runtime -it's a property of the packaged application, so that's not going to do much. However, if you're getting an error that it "can't find icon", that's because the icon hasn't been packaged correctly. It's impossible to say why it's failing without details. It's also impossible to say why your new icon isn't showing up, because you haven't provided any details about what you've done that would enable me to reproduce your problem. All I can do is tell you that the feature does work, if it's configured correctly. The Toga Testbed app is an example of an app with a custom icon. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi, there are two ways I try to change the app icon, but it doesn't work.
def main():
return demo0529(icon="resources/logo.ico")
Add the path of the icon, but the app raises the error, like
WARNING: Can't find icon resources/demo0706; falling back to default icon
replace the icon image of the resources, delete the android directory, and rerun "briefcase create android", but it also show the old icon.
Beta Was this translation helpful? Give feedback.
All reactions