Update: 2026-05-16 21:51:45

This commit is contained in:
Hamza-Ayed
2026-05-16 21:51:45 +03:00
parent 4df9cb17f1
commit a9aaf65b8d
64 changed files with 5771 additions and 5581 deletions

16
fix_images.py Normal file
View File

@@ -0,0 +1,16 @@
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.")