Skip to content

Instantly share code, notes, and snippets.

View hamdymohamedak's full-sized avatar
🎯
Focusing

Hamdy Mohamed Askander (حمدي) hamdymohamedak

🎯
Focusing
View GitHub Profile
@hamdymohamedak
hamdymohamedak / package.json
Created January 15, 2026 13:56
React Native clean cahces at Android & Ios
{
"clean:android": "cd android && ./gradlew clean && cd ..",
"clean:ios": "cd ios && rm -rf Pods Podfile.lock build && pod install && cd ..",
"clean:all": "npm run clean:android && npm run clean:ios",
"clean": "rm -rf node_modules && npm install && npm run clean:all"
}