├── .gitignore ├── AndroidIcons ├── globals.xml.ftl ├── recipe.xml.ftl ├── root │ └── readme.txt └── template.xml ├── README.md ├── menu.png └── template.png /.gitignore: -------------------------------------------------------------------------------- 1 | *.DS_Store 2 | AndroidIcons/root/assets/ -------------------------------------------------------------------------------- /AndroidIcons/globals.xml.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/androidicons-adt-template/HEAD/AndroidIcons/globals.xml.ftl -------------------------------------------------------------------------------- /AndroidIcons/recipe.xml.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/androidicons-adt-template/HEAD/AndroidIcons/recipe.xml.ftl -------------------------------------------------------------------------------- /AndroidIcons/root/readme.txt: -------------------------------------------------------------------------------- 1 | Include your androidicons.com assets folder here. -------------------------------------------------------------------------------- /AndroidIcons/template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/androidicons-adt-template/HEAD/AndroidIcons/template.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/androidicons-adt-template/HEAD/README.md -------------------------------------------------------------------------------- /menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/androidicons-adt-template/HEAD/menu.png -------------------------------------------------------------------------------- /template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgilfelt/androidicons-adt-template/HEAD/template.png --------------------------------------------------------------------------------