Skip to content

Latest commit

 

History

History
50 lines (38 loc) · 870 Bytes

README.md

File metadata and controls

50 lines (38 loc) · 870 Bytes

PNG assets script for Android

Simple script to organize automatically assets for different screen densities

Android project structure

project/
  app/
    src/main/res
  assets/
    png/
    svg/
    create_png.sh

Workflow

1. Assets from designer

The designer exports png assets from sketch in 4 sizes:

  • x1 (drawable-mdpi)
  • x1,5 (drawable-hdpi)
  • x2 (drawable-xhdpi)
  • x3 (drawable-xxhdpi)
  • x4 (drawable-xxxhdpi)

The assets will be in a unique folder with flat hierarchy. The png files are named in the following format:

2. Convert to android drawable-xxx structure

  1. Move these assets to assets/png/.
  2. Run create_png.sh
  3. Done