Skip to content

Instantly share code, notes, and snippets.

@sushant-j
Last active November 29, 2017 11:21
Show Gist options
  • Save sushant-j/68f32b55371473f047bb08dc3569599c to your computer and use it in GitHub Desktop.
Save sushant-j/68f32b55371473f047bb08dc3569599c to your computer and use it in GitHub Desktop.
Copies resources from drawable-xxx/ folder to proper folders in {N} project > App_Resources.
# Android
cp -u drawable-hdpi/* ~/sminq-global/global-product-hybrid-app/app/App_Resources/Android/drawable-hdpi/
cp -u drawable-mdpi/* ~/sminq-global/global-product-hybrid-app/app/App_Resources/Android/drawable-mdpi/
cp -u drawable-xhdpi/* ~/sminq-global/global-product-hybrid-app/app/App_Resources/Android/drawable-xhdpi/
cp -u drawable-xxhdpi/* ~/sminq-global/global-product-hybrid-app/app/App_Resources/Android/drawable-xxhdpi/
cp -u drawable-xxxhdpi/* ~/sminq-global/global-product-hybrid-app/app/App_Resources/Android/drawable-xxxhdpi/
# iOS
cp -u *.png ~/sminq-global/global-product-hybrid-app/app/App_Resources/iOS/images/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment