diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index 910aef6..35fd2cc 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -9,7 +9,7 @@ @@ -40,4 +40,4 @@ - \ No newline at end of file + diff --git a/app/src/main/res/drawable-hdpi/etunicorn.png b/app/src/main/res/drawable-hdpi/etunicorn.png new file mode 100644 index 0000000..1cb0d1d Binary files /dev/null and b/app/src/main/res/drawable-hdpi/etunicorn.png differ diff --git a/app/src/main/res/drawable-ldpi/etunicorn.png b/app/src/main/res/drawable-ldpi/etunicorn.png new file mode 100644 index 0000000..facfcb8 Binary files /dev/null and b/app/src/main/res/drawable-ldpi/etunicorn.png differ diff --git a/app/src/main/res/drawable-mdpi/etunicorn.png b/app/src/main/res/drawable-mdpi/etunicorn.png new file mode 100644 index 0000000..8b35989 Binary files /dev/null and b/app/src/main/res/drawable-mdpi/etunicorn.png differ diff --git a/app/src/main/res/drawable-xhdpi/etunicorn.png b/app/src/main/res/drawable-xhdpi/etunicorn.png new file mode 100644 index 0000000..d6a05a9 Binary files /dev/null and b/app/src/main/res/drawable-xhdpi/etunicorn.png differ diff --git a/app/src/main/res/drawable-xxhdpi/etunicorn.png b/app/src/main/res/drawable-xxhdpi/etunicorn.png new file mode 100644 index 0000000..36de803 Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/etunicorn.png differ diff --git a/app/src/main/res/drawable-xxxhdpi/etunicorn.png b/app/src/main/res/drawable-xxxhdpi/etunicorn.png new file mode 100644 index 0000000..5e13da2 Binary files /dev/null and b/app/src/main/res/drawable-xxxhdpi/etunicorn.png differ diff --git a/generateAndroidIcon.sh b/generateAndroidIcon.sh new file mode 100755 index 0000000..b38c32e --- /dev/null +++ b/generateAndroidIcon.sh @@ -0,0 +1,13 @@ +#!/usr/bin/env bash + +DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" + +for density in l-36 m-48 h-72 xh-96 xxh-144 xxxh-192 +do + drawdir="${DIR}/app/src/main/res/drawable-$(echo "$density" | cut -d '-' -f 1)dpi" + mkdir -p "$drawdir" + outfile="${drawdir}/etunicorn.png" + size="$(echo "$density" | cut -d '-' -f 2)" + inkscape -z -e "$outfile" -w "$size" -h "$size" "${DIR}/logo.svg" + optipng -o9 "$outfile" +done diff --git a/logo.svg b/logo.svg new file mode 100644 index 0000000..74fefce --- /dev/null +++ b/logo.svg @@ -0,0 +1,224 @@ + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -- libgit2 0.21.2