Files
jordan_bot/fix_images.py
2026-05-16 21:51:45 +03:00

17 lines
603 B
Python

import shutil
import os
# Paths
source = "/Users/hamzaaleghwairyeen/.gemini/antigravity/brain/8b778136-a279-49f3-8ad1-37f35e09af27/jordan_bot_tutorial_guide_1778955341656.png"
target = "app/src/main/res/drawable/tutorial_step_restricted.png"
# Ensure target directory exists
os.makedirs(os.path.dirname(target), exist_ok=True)
try:
shutil.copy(source, target)
print("✅ Success! Tutorial image has been moved to your project.")
except Exception as e:
print(f"❌ Error: {e}")
print("Please try to manually copy the image from the brain directory to your project's drawable folder.")