clean-ios:
	flutter clean
	flutter pub get
	cd ios && pod deintegrate || true
	cd ios && rm -rf Pods Podfile.lock .symlinks
	rm -rf ~/Library/Developer/Xcode/DerivedData
	pod cache clean --all
	cd ios && pod install --repo-update

clean-android:
	flutter clean
	flutter pub get
	cd android && ./gradlew clean