When I upload simple SVG code or a PNG file to replace the app’s logo, the image either appears broken or the agent ends up generating its own interpretation of the image instead of using the image itself.
Also, as I said, I used SVG ‘code’ instead of an SVG file because Google AI Studio won’t allow me to do that. Please allow us to upload SVG files/icons.
Hi, I was wondering if you were able to figure out how to change the logo SVG? I’m having the same issue and it’s unfortunate that it’s either the generic SVG or a broken icon image. I have tried to upload the code directly into Google AI studio, asked ChatGPT, asked Gemini, I even went into VS Code and asked copilot and it kept giving me an error when trying to recreate the Header.tsx about an older way to import react , but I can’t remember exactly at the moment.
Please let me know if you have found a way to successfully replace the logo! I’m really happy with the functionality of this new AI studio, but this should have been a simple replacement that has cost me too much time trying to diagnose this issue!
Unfortunately, no, I haven’t found the solution. I actually went back to using Firebase Studio since it at least does the basics that AI Studio can’t yet do. It takes a bit more iteration than AI Studio, but I’m usually able to work my way around its faults. I’m hopeful to return to AI Studio, but I have also wasted so much time trying to basically fit a square peg in a round hole on many occasions.
AI Studio currently only supports uploading raster image formats like PNG or JPG, and does not accept raw SVG code or files for logo assets. If your PNG appears broken, make sure it meets standard web-safe dimensions (e.g., 512×512) and is under the size limit shown in the upload dialog. For best results, convert your SVG to a high‑resolution PNG using a tool like Inkscape or ImageMagick before uploading. You can also submit feature requests for SVG support directly through Help > Send Feedback in AI Studio so the team can track demand.
Here the same problem. It won’t use my logo.png. I put it in a public map as he asked. There its shows the picture. But in de app he can’t find is. I punt the logo in with a link to my website. Not ideal.
Thank you sharing your experience with Google AI Studio.
The issue you are describing—where the image appears correctly in the file explorer (or “public map”) but fails to resolve within the running app—is likely due to how the AI Studio preview sandbox handles relative paths for local assets.
You might be able to get the local file to work by ensuring the path is explicitly relative to the root. Instead of src=“logo.png” or src=“/logo.png”, try moving the file to a specific assets folder and referencing it as ./assets/logo.png.