Skip to content

Instantly share code, notes, and snippets.

View L-Briand's full-sized avatar

Lionel Briand L-Briand

  • Orandja
  • Bordeaux
View GitHub Profile
@L-Briand
L-Briand / build_vdtool.sh
Last active August 9, 2021 19:24 — forked from michpohl/build_vdtool.sh
Bash script to build vd-tool from Android sources to batch convert SVG to VectorDrawables via terminal
#!/bin/bash
# inspiration for this script comes from here: https://www.androiddesignpatterns.com/2018/11/android-studio-svg-to-vector-cli.html
DESIRED_PATH="$1"
if [ -z "$1" ]
then
echo "No path provided.Please specify a path to clone the source files into."
echo -e "\nUsage: $ ./build_vdtool.sh [my-desired-path]\n"
echo "It is suggested to place these files outside of your dbx source in order to not mess up the project files"