diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 0edab56..8f1d6a6 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -20,8 +20,8 @@ jobs: - name: Clone Kiwix-Android run: git clone --single-branch --branch feature/macgills/custom-app-icon-upgrade https://github.com/kiwix/kiwix-android.git - - name: Copy json files into Kiwix-Android - run: bash copy_json_to_kiwix_android.sh + - name: Copy files into Kiwix-Android + run: bash copy_files_to_kiwix_android.sh - name: Decrypt files env: diff --git a/copy_files_to_kiwix_android.sh b/copy_files_to_kiwix_android.sh new file mode 100644 index 0000000..8cfd5b1 --- /dev/null +++ b/copy_files_to_kiwix_android.sh @@ -0,0 +1,12 @@ +#!/usr/bin/env bash +!/bin/bash + +for f in *; do # for all files in current directory + if [ -d ${f} ]; then # if it is a directory + if [ -f "$f/info.json" ] && [ -d "$f/res" ]; then #that has a json file and icon set + mkdir -p "kiwix-android/custom/src/$f/res" #make directory + cp -v "$f/info.json" "kiwix-android/custom/src/$f/info.json" # copy json over + cp -vr "$f/res" "kiwix-android/custom/src/$f/res" #copy icons over + fi + fi +done diff --git a/copy_json_to_kiwix_android.sh b/copy_json_to_kiwix_android.sh deleted file mode 100644 index bb3a95c..0000000 --- a/copy_json_to_kiwix_android.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/bash - -for f in *; do # for all files in current directory - if [ -d ${f} ]; then # if it is a directory - if [ -f "$f/info.json" ]; then #that has a json file - if [ -d "kiwix-android/custom/src/$f" ]; then # and there is a matching directory in kiwix-android - cp -v "$f/info.json" "kiwix-android/custom/src/$f/info.json" # copy it over - fi - fi - fi -done diff --git a/wikimed/ic_launcher-web.png b/wikimed/ic_launcher-web.png new file mode 100644 index 0000000..ff3678a Binary files /dev/null and b/wikimed/ic_launcher-web.png differ diff --git a/wikimed/res/mipmap-anydpi-v26/ic_launcher.xml b/wikimed/res/mipmap-anydpi-v26/ic_launcher.xml new file mode 100644 index 0000000..036d09b --- /dev/null +++ b/wikimed/res/mipmap-anydpi-v26/ic_launcher.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/wikimed/res/mipmap-anydpi-v26/ic_launcher_round.xml b/wikimed/res/mipmap-anydpi-v26/ic_launcher_round.xml new file mode 100644 index 0000000..036d09b --- /dev/null +++ b/wikimed/res/mipmap-anydpi-v26/ic_launcher_round.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/wikimed/res/mipmap-hdpi/ic_launcher.png b/wikimed/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 0000000..8339e8c Binary files /dev/null and b/wikimed/res/mipmap-hdpi/ic_launcher.png differ diff --git a/wikimed/res/mipmap-hdpi/ic_launcher_foreground.png b/wikimed/res/mipmap-hdpi/ic_launcher_foreground.png new file mode 100644 index 0000000..41529f0 Binary files /dev/null and b/wikimed/res/mipmap-hdpi/ic_launcher_foreground.png differ diff --git a/wikimed/res/mipmap-hdpi/ic_launcher_round.png b/wikimed/res/mipmap-hdpi/ic_launcher_round.png new file mode 100644 index 0000000..10c10f3 Binary files /dev/null and b/wikimed/res/mipmap-hdpi/ic_launcher_round.png differ diff --git a/wikimed/res/mipmap-mdpi/ic_launcher.png b/wikimed/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 0000000..466f1c6 Binary files /dev/null and b/wikimed/res/mipmap-mdpi/ic_launcher.png differ diff --git a/wikimed/res/mipmap-mdpi/ic_launcher_foreground.png b/wikimed/res/mipmap-mdpi/ic_launcher_foreground.png new file mode 100644 index 0000000..8eda917 Binary files /dev/null and b/wikimed/res/mipmap-mdpi/ic_launcher_foreground.png differ diff --git a/wikimed/res/mipmap-mdpi/ic_launcher_round.png b/wikimed/res/mipmap-mdpi/ic_launcher_round.png new file mode 100644 index 0000000..1c05965 Binary files /dev/null and b/wikimed/res/mipmap-mdpi/ic_launcher_round.png differ diff --git a/wikimed/res/mipmap-xhdpi/ic_launcher.png b/wikimed/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 0000000..9da64b6 Binary files /dev/null and b/wikimed/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/wikimed/res/mipmap-xhdpi/ic_launcher_foreground.png b/wikimed/res/mipmap-xhdpi/ic_launcher_foreground.png new file mode 100644 index 0000000..7b4cdd1 Binary files /dev/null and b/wikimed/res/mipmap-xhdpi/ic_launcher_foreground.png differ diff --git a/wikimed/res/mipmap-xhdpi/ic_launcher_round.png b/wikimed/res/mipmap-xhdpi/ic_launcher_round.png new file mode 100644 index 0000000..348c8a1 Binary files /dev/null and b/wikimed/res/mipmap-xhdpi/ic_launcher_round.png differ diff --git a/wikimed/res/mipmap-xxhdpi/ic_launcher.png b/wikimed/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 0000000..6385233 Binary files /dev/null and b/wikimed/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/wikimed/res/mipmap-xxhdpi/ic_launcher_foreground.png b/wikimed/res/mipmap-xxhdpi/ic_launcher_foreground.png new file mode 100644 index 0000000..7efd244 Binary files /dev/null and b/wikimed/res/mipmap-xxhdpi/ic_launcher_foreground.png differ diff --git a/wikimed/res/mipmap-xxhdpi/ic_launcher_round.png b/wikimed/res/mipmap-xxhdpi/ic_launcher_round.png new file mode 100644 index 0000000..361962a Binary files /dev/null and b/wikimed/res/mipmap-xxhdpi/ic_launcher_round.png differ diff --git a/wikimed/res/mipmap-xxxhdpi/ic_launcher.png b/wikimed/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 0000000..106c70c Binary files /dev/null and b/wikimed/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/wikimed/res/mipmap-xxxhdpi/ic_launcher_foreground.png b/wikimed/res/mipmap-xxxhdpi/ic_launcher_foreground.png new file mode 100644 index 0000000..e563706 Binary files /dev/null and b/wikimed/res/mipmap-xxxhdpi/ic_launcher_foreground.png differ diff --git a/wikimed/res/mipmap-xxxhdpi/ic_launcher_round.png b/wikimed/res/mipmap-xxxhdpi/ic_launcher_round.png new file mode 100644 index 0000000..ab63e06 Binary files /dev/null and b/wikimed/res/mipmap-xxxhdpi/ic_launcher_round.png differ diff --git a/wikimed/res/values/ic_launcher_background.xml b/wikimed/res/values/ic_launcher_background.xml new file mode 100644 index 0000000..c5d5899 --- /dev/null +++ b/wikimed/res/values/ic_launcher_background.xml @@ -0,0 +1,4 @@ + + + #FFFFFF + \ No newline at end of file diff --git a/wikimedar/ic_launcher-web.png b/wikimedar/ic_launcher-web.png new file mode 100644 index 0000000..92ab0cf Binary files /dev/null and b/wikimedar/ic_launcher-web.png differ diff --git a/wikimedar/res/mipmap-anydpi-v26/ic_launcher.xml b/wikimedar/res/mipmap-anydpi-v26/ic_launcher.xml new file mode 100644 index 0000000..036d09b --- /dev/null +++ b/wikimedar/res/mipmap-anydpi-v26/ic_launcher.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/wikimedar/res/mipmap-anydpi-v26/ic_launcher_round.xml b/wikimedar/res/mipmap-anydpi-v26/ic_launcher_round.xml new file mode 100644 index 0000000..036d09b --- /dev/null +++ b/wikimedar/res/mipmap-anydpi-v26/ic_launcher_round.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/wikimedar/res/mipmap-hdpi/ic_launcher.png b/wikimedar/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 0000000..0532818 Binary files /dev/null and b/wikimedar/res/mipmap-hdpi/ic_launcher.png differ diff --git a/wikimedar/res/mipmap-hdpi/ic_launcher_foreground.png b/wikimedar/res/mipmap-hdpi/ic_launcher_foreground.png new file mode 100644 index 0000000..39e9aa6 Binary files /dev/null and b/wikimedar/res/mipmap-hdpi/ic_launcher_foreground.png differ diff --git a/wikimedar/res/mipmap-hdpi/ic_launcher_round.png b/wikimedar/res/mipmap-hdpi/ic_launcher_round.png new file mode 100644 index 0000000..82c6e15 Binary files /dev/null and b/wikimedar/res/mipmap-hdpi/ic_launcher_round.png differ diff --git a/wikimedar/res/mipmap-mdpi/ic_launcher.png b/wikimedar/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 0000000..ec39d50 Binary files /dev/null and b/wikimedar/res/mipmap-mdpi/ic_launcher.png differ diff --git a/wikimedar/res/mipmap-mdpi/ic_launcher_foreground.png b/wikimedar/res/mipmap-mdpi/ic_launcher_foreground.png new file mode 100644 index 0000000..6c6e5ff Binary files /dev/null and b/wikimedar/res/mipmap-mdpi/ic_launcher_foreground.png differ diff --git a/wikimedar/res/mipmap-mdpi/ic_launcher_round.png b/wikimedar/res/mipmap-mdpi/ic_launcher_round.png new file mode 100644 index 0000000..956e7c8 Binary files /dev/null and b/wikimedar/res/mipmap-mdpi/ic_launcher_round.png differ diff --git a/wikimedar/res/mipmap-xhdpi/ic_launcher.png b/wikimedar/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 0000000..425e2cc Binary files /dev/null and b/wikimedar/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/wikimedar/res/mipmap-xhdpi/ic_launcher_foreground.png b/wikimedar/res/mipmap-xhdpi/ic_launcher_foreground.png new file mode 100644 index 0000000..120fa73 Binary files /dev/null and b/wikimedar/res/mipmap-xhdpi/ic_launcher_foreground.png differ diff --git a/wikimedar/res/mipmap-xhdpi/ic_launcher_round.png b/wikimedar/res/mipmap-xhdpi/ic_launcher_round.png new file mode 100644 index 0000000..30b85b2 Binary files /dev/null and b/wikimedar/res/mipmap-xhdpi/ic_launcher_round.png differ diff --git a/wikimedar/res/mipmap-xxhdpi/ic_launcher.png b/wikimedar/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 0000000..e93dea3 Binary files /dev/null and b/wikimedar/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/wikimedar/res/mipmap-xxhdpi/ic_launcher_foreground.png b/wikimedar/res/mipmap-xxhdpi/ic_launcher_foreground.png new file mode 100644 index 0000000..6aa9373 Binary files /dev/null and b/wikimedar/res/mipmap-xxhdpi/ic_launcher_foreground.png differ diff --git a/wikimedar/res/mipmap-xxhdpi/ic_launcher_round.png b/wikimedar/res/mipmap-xxhdpi/ic_launcher_round.png new file mode 100644 index 0000000..874a6ba Binary files /dev/null and b/wikimedar/res/mipmap-xxhdpi/ic_launcher_round.png differ diff --git a/wikimedar/res/mipmap-xxxhdpi/ic_launcher.png b/wikimedar/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 0000000..4f598d4 Binary files /dev/null and b/wikimedar/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/wikimedar/res/mipmap-xxxhdpi/ic_launcher_foreground.png b/wikimedar/res/mipmap-xxxhdpi/ic_launcher_foreground.png new file mode 100644 index 0000000..64a6585 Binary files /dev/null and b/wikimedar/res/mipmap-xxxhdpi/ic_launcher_foreground.png differ diff --git a/wikimedar/res/mipmap-xxxhdpi/ic_launcher_round.png b/wikimedar/res/mipmap-xxxhdpi/ic_launcher_round.png new file mode 100644 index 0000000..63ddce7 Binary files /dev/null and b/wikimedar/res/mipmap-xxxhdpi/ic_launcher_round.png differ diff --git a/wikimedar/res/values/ic_launcher_background.xml b/wikimedar/res/values/ic_launcher_background.xml new file mode 100644 index 0000000..c5d5899 --- /dev/null +++ b/wikimedar/res/values/ic_launcher_background.xml @@ -0,0 +1,4 @@ + + + #FFFFFF + \ No newline at end of file diff --git a/wikimedde/ic_launcher-web.png b/wikimedde/ic_launcher-web.png new file mode 100644 index 0000000..fe5b24c Binary files /dev/null and b/wikimedde/ic_launcher-web.png differ diff --git a/wikimedde/res/mipmap-anydpi-v26/ic_launcher.xml b/wikimedde/res/mipmap-anydpi-v26/ic_launcher.xml new file mode 100644 index 0000000..036d09b --- /dev/null +++ b/wikimedde/res/mipmap-anydpi-v26/ic_launcher.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/wikimedde/res/mipmap-anydpi-v26/ic_launcher_round.xml b/wikimedde/res/mipmap-anydpi-v26/ic_launcher_round.xml new file mode 100644 index 0000000..036d09b --- /dev/null +++ b/wikimedde/res/mipmap-anydpi-v26/ic_launcher_round.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/wikimedde/res/mipmap-hdpi/ic_launcher.png b/wikimedde/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 0000000..33b4bee Binary files /dev/null and b/wikimedde/res/mipmap-hdpi/ic_launcher.png differ diff --git a/wikimedde/res/mipmap-hdpi/ic_launcher_foreground.png b/wikimedde/res/mipmap-hdpi/ic_launcher_foreground.png new file mode 100644 index 0000000..915417b Binary files /dev/null and b/wikimedde/res/mipmap-hdpi/ic_launcher_foreground.png differ diff --git a/wikimedde/res/mipmap-hdpi/ic_launcher_round.png b/wikimedde/res/mipmap-hdpi/ic_launcher_round.png new file mode 100644 index 0000000..50a158b Binary files /dev/null and b/wikimedde/res/mipmap-hdpi/ic_launcher_round.png differ diff --git a/wikimedde/res/mipmap-mdpi/ic_launcher.png b/wikimedde/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 0000000..81e3e5e Binary files /dev/null and b/wikimedde/res/mipmap-mdpi/ic_launcher.png differ diff --git a/wikimedde/res/mipmap-mdpi/ic_launcher_foreground.png b/wikimedde/res/mipmap-mdpi/ic_launcher_foreground.png new file mode 100644 index 0000000..c728d85 Binary files /dev/null and b/wikimedde/res/mipmap-mdpi/ic_launcher_foreground.png differ diff --git a/wikimedde/res/mipmap-mdpi/ic_launcher_round.png b/wikimedde/res/mipmap-mdpi/ic_launcher_round.png new file mode 100644 index 0000000..a7cccf1 Binary files /dev/null and b/wikimedde/res/mipmap-mdpi/ic_launcher_round.png differ diff --git a/wikimedde/res/mipmap-xhdpi/ic_launcher.png b/wikimedde/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 0000000..6de9cf5 Binary files /dev/null and b/wikimedde/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/wikimedde/res/mipmap-xhdpi/ic_launcher_foreground.png b/wikimedde/res/mipmap-xhdpi/ic_launcher_foreground.png new file mode 100644 index 0000000..0785052 Binary files /dev/null and b/wikimedde/res/mipmap-xhdpi/ic_launcher_foreground.png differ diff --git a/wikimedde/res/mipmap-xhdpi/ic_launcher_round.png b/wikimedde/res/mipmap-xhdpi/ic_launcher_round.png new file mode 100644 index 0000000..2b373df Binary files /dev/null and b/wikimedde/res/mipmap-xhdpi/ic_launcher_round.png differ diff --git a/wikimedde/res/mipmap-xxhdpi/ic_launcher.png b/wikimedde/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 0000000..f8e2f8f Binary files /dev/null and b/wikimedde/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/wikimedde/res/mipmap-xxhdpi/ic_launcher_foreground.png b/wikimedde/res/mipmap-xxhdpi/ic_launcher_foreground.png new file mode 100644 index 0000000..ef7c66f Binary files /dev/null and b/wikimedde/res/mipmap-xxhdpi/ic_launcher_foreground.png differ diff --git a/wikimedde/res/mipmap-xxhdpi/ic_launcher_round.png b/wikimedde/res/mipmap-xxhdpi/ic_launcher_round.png new file mode 100644 index 0000000..9af1f79 Binary files /dev/null and b/wikimedde/res/mipmap-xxhdpi/ic_launcher_round.png differ diff --git a/wikimedde/res/mipmap-xxxhdpi/ic_launcher.png b/wikimedde/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 0000000..ab711f7 Binary files /dev/null and b/wikimedde/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/wikimedde/res/mipmap-xxxhdpi/ic_launcher_foreground.png b/wikimedde/res/mipmap-xxxhdpi/ic_launcher_foreground.png new file mode 100644 index 0000000..a7e36b9 Binary files /dev/null and b/wikimedde/res/mipmap-xxxhdpi/ic_launcher_foreground.png differ diff --git a/wikimedde/res/mipmap-xxxhdpi/ic_launcher_round.png b/wikimedde/res/mipmap-xxxhdpi/ic_launcher_round.png new file mode 100644 index 0000000..d6a327b Binary files /dev/null and b/wikimedde/res/mipmap-xxxhdpi/ic_launcher_round.png differ diff --git a/wikimedde/res/values/ic_launcher_background.xml b/wikimedde/res/values/ic_launcher_background.xml new file mode 100644 index 0000000..c5d5899 --- /dev/null +++ b/wikimedde/res/values/ic_launcher_background.xml @@ -0,0 +1,4 @@ + + + #FFFFFF + \ No newline at end of file diff --git a/wikimedes/ic_launcher-web.png b/wikimedes/ic_launcher-web.png new file mode 100644 index 0000000..a33191f Binary files /dev/null and b/wikimedes/ic_launcher-web.png differ diff --git a/wikimedes/res/mipmap-anydpi-v26/ic_launcher.xml b/wikimedes/res/mipmap-anydpi-v26/ic_launcher.xml new file mode 100644 index 0000000..036d09b --- /dev/null +++ b/wikimedes/res/mipmap-anydpi-v26/ic_launcher.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/wikimedes/res/mipmap-anydpi-v26/ic_launcher_round.xml b/wikimedes/res/mipmap-anydpi-v26/ic_launcher_round.xml new file mode 100644 index 0000000..036d09b --- /dev/null +++ b/wikimedes/res/mipmap-anydpi-v26/ic_launcher_round.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/wikimedes/res/mipmap-hdpi/ic_launcher.png b/wikimedes/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 0000000..d115c0b Binary files /dev/null and b/wikimedes/res/mipmap-hdpi/ic_launcher.png differ diff --git a/wikimedes/res/mipmap-hdpi/ic_launcher_foreground.png b/wikimedes/res/mipmap-hdpi/ic_launcher_foreground.png new file mode 100644 index 0000000..6233740 Binary files /dev/null and b/wikimedes/res/mipmap-hdpi/ic_launcher_foreground.png differ diff --git a/wikimedes/res/mipmap-hdpi/ic_launcher_round.png b/wikimedes/res/mipmap-hdpi/ic_launcher_round.png new file mode 100644 index 0000000..eb01413 Binary files /dev/null and b/wikimedes/res/mipmap-hdpi/ic_launcher_round.png differ diff --git a/wikimedes/res/mipmap-mdpi/ic_launcher.png b/wikimedes/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 0000000..7ab68a8 Binary files /dev/null and b/wikimedes/res/mipmap-mdpi/ic_launcher.png differ diff --git a/wikimedes/res/mipmap-mdpi/ic_launcher_foreground.png b/wikimedes/res/mipmap-mdpi/ic_launcher_foreground.png new file mode 100644 index 0000000..4a33a05 Binary files /dev/null and b/wikimedes/res/mipmap-mdpi/ic_launcher_foreground.png differ diff --git a/wikimedes/res/mipmap-mdpi/ic_launcher_round.png b/wikimedes/res/mipmap-mdpi/ic_launcher_round.png new file mode 100644 index 0000000..71b14f8 Binary files /dev/null and b/wikimedes/res/mipmap-mdpi/ic_launcher_round.png differ diff --git a/wikimedes/res/mipmap-xhdpi/ic_launcher.png b/wikimedes/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 0000000..ef8d64b Binary files /dev/null and b/wikimedes/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/wikimedes/res/mipmap-xhdpi/ic_launcher_foreground.png b/wikimedes/res/mipmap-xhdpi/ic_launcher_foreground.png new file mode 100644 index 0000000..f00d682 Binary files /dev/null and b/wikimedes/res/mipmap-xhdpi/ic_launcher_foreground.png differ diff --git a/wikimedes/res/mipmap-xhdpi/ic_launcher_round.png b/wikimedes/res/mipmap-xhdpi/ic_launcher_round.png new file mode 100644 index 0000000..eb5e9f6 Binary files /dev/null and b/wikimedes/res/mipmap-xhdpi/ic_launcher_round.png differ diff --git a/wikimedes/res/mipmap-xxhdpi/ic_launcher.png b/wikimedes/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 0000000..5cef15d Binary files /dev/null and b/wikimedes/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/wikimedes/res/mipmap-xxhdpi/ic_launcher_foreground.png b/wikimedes/res/mipmap-xxhdpi/ic_launcher_foreground.png new file mode 100644 index 0000000..12f72ab Binary files /dev/null and b/wikimedes/res/mipmap-xxhdpi/ic_launcher_foreground.png differ diff --git a/wikimedes/res/mipmap-xxhdpi/ic_launcher_round.png b/wikimedes/res/mipmap-xxhdpi/ic_launcher_round.png new file mode 100644 index 0000000..0cbc1e8 Binary files /dev/null and b/wikimedes/res/mipmap-xxhdpi/ic_launcher_round.png differ diff --git a/wikimedes/res/mipmap-xxxhdpi/ic_launcher.png b/wikimedes/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 0000000..dbb2ca4 Binary files /dev/null and b/wikimedes/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/wikimedes/res/mipmap-xxxhdpi/ic_launcher_foreground.png b/wikimedes/res/mipmap-xxxhdpi/ic_launcher_foreground.png new file mode 100644 index 0000000..dab0bfb Binary files /dev/null and b/wikimedes/res/mipmap-xxxhdpi/ic_launcher_foreground.png differ diff --git a/wikimedes/res/mipmap-xxxhdpi/ic_launcher_round.png b/wikimedes/res/mipmap-xxxhdpi/ic_launcher_round.png new file mode 100644 index 0000000..0f69200 Binary files /dev/null and b/wikimedes/res/mipmap-xxxhdpi/ic_launcher_round.png differ diff --git a/wikimedes/res/values/ic_launcher_background.xml b/wikimedes/res/values/ic_launcher_background.xml new file mode 100644 index 0000000..c5d5899 --- /dev/null +++ b/wikimedes/res/values/ic_launcher_background.xml @@ -0,0 +1,4 @@ + + + #FFFFFF + \ No newline at end of file diff --git a/wikimedfa/ic_launcher-web.png b/wikimedfa/ic_launcher-web.png new file mode 100644 index 0000000..c70006e Binary files /dev/null and b/wikimedfa/ic_launcher-web.png differ diff --git a/wikimedfa/res/mipmap-anydpi-v26/ic_launcher.xml b/wikimedfa/res/mipmap-anydpi-v26/ic_launcher.xml new file mode 100644 index 0000000..036d09b --- /dev/null +++ b/wikimedfa/res/mipmap-anydpi-v26/ic_launcher.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/wikimedfa/res/mipmap-anydpi-v26/ic_launcher_round.xml b/wikimedfa/res/mipmap-anydpi-v26/ic_launcher_round.xml new file mode 100644 index 0000000..036d09b --- /dev/null +++ b/wikimedfa/res/mipmap-anydpi-v26/ic_launcher_round.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/wikimedfa/res/mipmap-hdpi/ic_launcher.png b/wikimedfa/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 0000000..a9659e2 Binary files /dev/null and b/wikimedfa/res/mipmap-hdpi/ic_launcher.png differ diff --git a/wikimedfa/res/mipmap-hdpi/ic_launcher_foreground.png b/wikimedfa/res/mipmap-hdpi/ic_launcher_foreground.png new file mode 100644 index 0000000..71a9828 Binary files /dev/null and b/wikimedfa/res/mipmap-hdpi/ic_launcher_foreground.png differ diff --git a/wikimedfa/res/mipmap-hdpi/ic_launcher_round.png b/wikimedfa/res/mipmap-hdpi/ic_launcher_round.png new file mode 100644 index 0000000..af7b6f1 Binary files /dev/null and b/wikimedfa/res/mipmap-hdpi/ic_launcher_round.png differ diff --git a/wikimedfa/res/mipmap-mdpi/ic_launcher.png b/wikimedfa/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 0000000..37a1267 Binary files /dev/null and b/wikimedfa/res/mipmap-mdpi/ic_launcher.png differ diff --git a/wikimedfa/res/mipmap-mdpi/ic_launcher_foreground.png b/wikimedfa/res/mipmap-mdpi/ic_launcher_foreground.png new file mode 100644 index 0000000..c41bf92 Binary files /dev/null and b/wikimedfa/res/mipmap-mdpi/ic_launcher_foreground.png differ diff --git a/wikimedfa/res/mipmap-mdpi/ic_launcher_round.png b/wikimedfa/res/mipmap-mdpi/ic_launcher_round.png new file mode 100644 index 0000000..73d78a3 Binary files /dev/null and b/wikimedfa/res/mipmap-mdpi/ic_launcher_round.png differ diff --git a/wikimedfa/res/mipmap-xhdpi/ic_launcher.png b/wikimedfa/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 0000000..8ec7575 Binary files /dev/null and b/wikimedfa/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/wikimedfa/res/mipmap-xhdpi/ic_launcher_foreground.png b/wikimedfa/res/mipmap-xhdpi/ic_launcher_foreground.png new file mode 100644 index 0000000..afed98b Binary files /dev/null and b/wikimedfa/res/mipmap-xhdpi/ic_launcher_foreground.png differ diff --git a/wikimedfa/res/mipmap-xhdpi/ic_launcher_round.png b/wikimedfa/res/mipmap-xhdpi/ic_launcher_round.png new file mode 100644 index 0000000..47fd538 Binary files /dev/null and b/wikimedfa/res/mipmap-xhdpi/ic_launcher_round.png differ diff --git a/wikimedfa/res/mipmap-xxhdpi/ic_launcher.png b/wikimedfa/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 0000000..f7ccaca Binary files /dev/null and b/wikimedfa/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/wikimedfa/res/mipmap-xxhdpi/ic_launcher_foreground.png b/wikimedfa/res/mipmap-xxhdpi/ic_launcher_foreground.png new file mode 100644 index 0000000..e4b6779 Binary files /dev/null and b/wikimedfa/res/mipmap-xxhdpi/ic_launcher_foreground.png differ diff --git a/wikimedfa/res/mipmap-xxhdpi/ic_launcher_round.png b/wikimedfa/res/mipmap-xxhdpi/ic_launcher_round.png new file mode 100644 index 0000000..553c4bd Binary files /dev/null and b/wikimedfa/res/mipmap-xxhdpi/ic_launcher_round.png differ diff --git a/wikimedfa/res/mipmap-xxxhdpi/ic_launcher.png b/wikimedfa/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 0000000..10779fd Binary files /dev/null and b/wikimedfa/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/wikimedfa/res/mipmap-xxxhdpi/ic_launcher_foreground.png b/wikimedfa/res/mipmap-xxxhdpi/ic_launcher_foreground.png new file mode 100644 index 0000000..bfd1fea Binary files /dev/null and b/wikimedfa/res/mipmap-xxxhdpi/ic_launcher_foreground.png differ diff --git a/wikimedfa/res/mipmap-xxxhdpi/ic_launcher_round.png b/wikimedfa/res/mipmap-xxxhdpi/ic_launcher_round.png new file mode 100644 index 0000000..ed243f3 Binary files /dev/null and b/wikimedfa/res/mipmap-xxxhdpi/ic_launcher_round.png differ diff --git a/wikimedfa/res/values/ic_launcher_background.xml b/wikimedfa/res/values/ic_launcher_background.xml new file mode 100644 index 0000000..c5d5899 --- /dev/null +++ b/wikimedfa/res/values/ic_launcher_background.xml @@ -0,0 +1,4 @@ + + + #FFFFFF + \ No newline at end of file diff --git a/wikimedfr/ic_launcher-web.png b/wikimedfr/ic_launcher-web.png new file mode 100644 index 0000000..d12ee12 Binary files /dev/null and b/wikimedfr/ic_launcher-web.png differ diff --git a/wikimedfr/res/mipmap-anydpi-v26/ic_launcher.xml b/wikimedfr/res/mipmap-anydpi-v26/ic_launcher.xml new file mode 100644 index 0000000..036d09b --- /dev/null +++ b/wikimedfr/res/mipmap-anydpi-v26/ic_launcher.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/wikimedfr/res/mipmap-anydpi-v26/ic_launcher_round.xml b/wikimedfr/res/mipmap-anydpi-v26/ic_launcher_round.xml new file mode 100644 index 0000000..036d09b --- /dev/null +++ b/wikimedfr/res/mipmap-anydpi-v26/ic_launcher_round.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/wikimedfr/res/mipmap-hdpi/ic_launcher.png b/wikimedfr/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 0000000..3e8f7a8 Binary files /dev/null and b/wikimedfr/res/mipmap-hdpi/ic_launcher.png differ diff --git a/wikimedfr/res/mipmap-hdpi/ic_launcher_foreground.png b/wikimedfr/res/mipmap-hdpi/ic_launcher_foreground.png new file mode 100644 index 0000000..e29a63b Binary files /dev/null and b/wikimedfr/res/mipmap-hdpi/ic_launcher_foreground.png differ diff --git a/wikimedfr/res/mipmap-hdpi/ic_launcher_round.png b/wikimedfr/res/mipmap-hdpi/ic_launcher_round.png new file mode 100644 index 0000000..7d2ae84 Binary files /dev/null and b/wikimedfr/res/mipmap-hdpi/ic_launcher_round.png differ diff --git a/wikimedfr/res/mipmap-mdpi/ic_launcher.png b/wikimedfr/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 0000000..a522543 Binary files /dev/null and b/wikimedfr/res/mipmap-mdpi/ic_launcher.png differ diff --git a/wikimedfr/res/mipmap-mdpi/ic_launcher_foreground.png b/wikimedfr/res/mipmap-mdpi/ic_launcher_foreground.png new file mode 100644 index 0000000..5f4c539 Binary files /dev/null and b/wikimedfr/res/mipmap-mdpi/ic_launcher_foreground.png differ diff --git a/wikimedfr/res/mipmap-mdpi/ic_launcher_round.png b/wikimedfr/res/mipmap-mdpi/ic_launcher_round.png new file mode 100644 index 0000000..dd77374 Binary files /dev/null and b/wikimedfr/res/mipmap-mdpi/ic_launcher_round.png differ diff --git a/wikimedfr/res/mipmap-xhdpi/ic_launcher.png b/wikimedfr/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 0000000..bce1b5b Binary files /dev/null and b/wikimedfr/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/wikimedfr/res/mipmap-xhdpi/ic_launcher_foreground.png b/wikimedfr/res/mipmap-xhdpi/ic_launcher_foreground.png new file mode 100644 index 0000000..c754006 Binary files /dev/null and b/wikimedfr/res/mipmap-xhdpi/ic_launcher_foreground.png differ diff --git a/wikimedfr/res/mipmap-xhdpi/ic_launcher_round.png b/wikimedfr/res/mipmap-xhdpi/ic_launcher_round.png new file mode 100644 index 0000000..f350068 Binary files /dev/null and b/wikimedfr/res/mipmap-xhdpi/ic_launcher_round.png differ diff --git a/wikimedfr/res/mipmap-xxhdpi/ic_launcher.png b/wikimedfr/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 0000000..2a7be7e Binary files /dev/null and b/wikimedfr/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/wikimedfr/res/mipmap-xxhdpi/ic_launcher_foreground.png b/wikimedfr/res/mipmap-xxhdpi/ic_launcher_foreground.png new file mode 100644 index 0000000..d6d2c5b Binary files /dev/null and b/wikimedfr/res/mipmap-xxhdpi/ic_launcher_foreground.png differ diff --git a/wikimedfr/res/mipmap-xxhdpi/ic_launcher_round.png b/wikimedfr/res/mipmap-xxhdpi/ic_launcher_round.png new file mode 100644 index 0000000..f6d7678 Binary files /dev/null and b/wikimedfr/res/mipmap-xxhdpi/ic_launcher_round.png differ diff --git a/wikimedfr/res/mipmap-xxxhdpi/ic_launcher.png b/wikimedfr/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 0000000..af4d6c6 Binary files /dev/null and b/wikimedfr/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/wikimedfr/res/mipmap-xxxhdpi/ic_launcher_foreground.png b/wikimedfr/res/mipmap-xxxhdpi/ic_launcher_foreground.png new file mode 100644 index 0000000..5524424 Binary files /dev/null and b/wikimedfr/res/mipmap-xxxhdpi/ic_launcher_foreground.png differ diff --git a/wikimedfr/res/mipmap-xxxhdpi/ic_launcher_round.png b/wikimedfr/res/mipmap-xxxhdpi/ic_launcher_round.png new file mode 100644 index 0000000..7ecc150 Binary files /dev/null and b/wikimedfr/res/mipmap-xxxhdpi/ic_launcher_round.png differ diff --git a/wikimedfr/res/values/ic_launcher_background.xml b/wikimedfr/res/values/ic_launcher_background.xml new file mode 100644 index 0000000..c5d5899 --- /dev/null +++ b/wikimedfr/res/values/ic_launcher_background.xml @@ -0,0 +1,4 @@ + + + #FFFFFF + \ No newline at end of file diff --git a/wikimedja/ic_launcher-web.png b/wikimedja/ic_launcher-web.png new file mode 100644 index 0000000..52ce84a Binary files /dev/null and b/wikimedja/ic_launcher-web.png differ diff --git a/wikimedja/res/mipmap-anydpi-v26/ic_launcher.xml b/wikimedja/res/mipmap-anydpi-v26/ic_launcher.xml new file mode 100644 index 0000000..036d09b --- /dev/null +++ b/wikimedja/res/mipmap-anydpi-v26/ic_launcher.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/wikimedja/res/mipmap-anydpi-v26/ic_launcher_round.xml b/wikimedja/res/mipmap-anydpi-v26/ic_launcher_round.xml new file mode 100644 index 0000000..036d09b --- /dev/null +++ b/wikimedja/res/mipmap-anydpi-v26/ic_launcher_round.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/wikimedja/res/mipmap-hdpi/ic_launcher.png b/wikimedja/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 0000000..17f1861 Binary files /dev/null and b/wikimedja/res/mipmap-hdpi/ic_launcher.png differ diff --git a/wikimedja/res/mipmap-hdpi/ic_launcher_foreground.png b/wikimedja/res/mipmap-hdpi/ic_launcher_foreground.png new file mode 100644 index 0000000..ad6f9eb Binary files /dev/null and b/wikimedja/res/mipmap-hdpi/ic_launcher_foreground.png differ diff --git a/wikimedja/res/mipmap-hdpi/ic_launcher_round.png b/wikimedja/res/mipmap-hdpi/ic_launcher_round.png new file mode 100644 index 0000000..8760e97 Binary files /dev/null and b/wikimedja/res/mipmap-hdpi/ic_launcher_round.png differ diff --git a/wikimedja/res/mipmap-mdpi/ic_launcher.png b/wikimedja/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 0000000..df2d1ab Binary files /dev/null and b/wikimedja/res/mipmap-mdpi/ic_launcher.png differ diff --git a/wikimedja/res/mipmap-mdpi/ic_launcher_foreground.png b/wikimedja/res/mipmap-mdpi/ic_launcher_foreground.png new file mode 100644 index 0000000..1d822fd Binary files /dev/null and b/wikimedja/res/mipmap-mdpi/ic_launcher_foreground.png differ diff --git a/wikimedja/res/mipmap-mdpi/ic_launcher_round.png b/wikimedja/res/mipmap-mdpi/ic_launcher_round.png new file mode 100644 index 0000000..8f535e1 Binary files /dev/null and b/wikimedja/res/mipmap-mdpi/ic_launcher_round.png differ diff --git a/wikimedja/res/mipmap-xhdpi/ic_launcher.png b/wikimedja/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 0000000..c79d2e6 Binary files /dev/null and b/wikimedja/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/wikimedja/res/mipmap-xhdpi/ic_launcher_foreground.png b/wikimedja/res/mipmap-xhdpi/ic_launcher_foreground.png new file mode 100644 index 0000000..eb25340 Binary files /dev/null and b/wikimedja/res/mipmap-xhdpi/ic_launcher_foreground.png differ diff --git a/wikimedja/res/mipmap-xhdpi/ic_launcher_round.png b/wikimedja/res/mipmap-xhdpi/ic_launcher_round.png new file mode 100644 index 0000000..49a8218 Binary files /dev/null and b/wikimedja/res/mipmap-xhdpi/ic_launcher_round.png differ diff --git a/wikimedja/res/mipmap-xxhdpi/ic_launcher.png b/wikimedja/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 0000000..3f5875c Binary files /dev/null and b/wikimedja/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/wikimedja/res/mipmap-xxhdpi/ic_launcher_foreground.png b/wikimedja/res/mipmap-xxhdpi/ic_launcher_foreground.png new file mode 100644 index 0000000..ef5e7e7 Binary files /dev/null and b/wikimedja/res/mipmap-xxhdpi/ic_launcher_foreground.png differ diff --git a/wikimedja/res/mipmap-xxhdpi/ic_launcher_round.png b/wikimedja/res/mipmap-xxhdpi/ic_launcher_round.png new file mode 100644 index 0000000..3787fc5 Binary files /dev/null and b/wikimedja/res/mipmap-xxhdpi/ic_launcher_round.png differ diff --git a/wikimedja/res/mipmap-xxxhdpi/ic_launcher.png b/wikimedja/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 0000000..3b1cbde Binary files /dev/null and b/wikimedja/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/wikimedja/res/mipmap-xxxhdpi/ic_launcher_foreground.png b/wikimedja/res/mipmap-xxxhdpi/ic_launcher_foreground.png new file mode 100644 index 0000000..7b856f7 Binary files /dev/null and b/wikimedja/res/mipmap-xxxhdpi/ic_launcher_foreground.png differ diff --git a/wikimedja/res/mipmap-xxxhdpi/ic_launcher_round.png b/wikimedja/res/mipmap-xxxhdpi/ic_launcher_round.png new file mode 100644 index 0000000..aa9765b Binary files /dev/null and b/wikimedja/res/mipmap-xxxhdpi/ic_launcher_round.png differ diff --git a/wikimedja/res/values/ic_launcher_background.xml b/wikimedja/res/values/ic_launcher_background.xml new file mode 100644 index 0000000..c5d5899 --- /dev/null +++ b/wikimedja/res/values/ic_launcher_background.xml @@ -0,0 +1,4 @@ + + + #FFFFFF + \ No newline at end of file diff --git a/wikimedmini/ic_launcher-web.png b/wikimedmini/ic_launcher-web.png new file mode 100644 index 0000000..ff3678a Binary files /dev/null and b/wikimedmini/ic_launcher-web.png differ diff --git a/wikimed_mini/icon.png b/wikimedmini/icon.png similarity index 100% rename from wikimed_mini/icon.png rename to wikimedmini/icon.png diff --git a/wikimed_mini/info.json b/wikimedmini/info.json similarity index 100% rename from wikimed_mini/info.json rename to wikimedmini/info.json diff --git a/wikimedmini/res/mipmap-anydpi-v26/ic_launcher.xml b/wikimedmini/res/mipmap-anydpi-v26/ic_launcher.xml new file mode 100644 index 0000000..036d09b --- /dev/null +++ b/wikimedmini/res/mipmap-anydpi-v26/ic_launcher.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/wikimedmini/res/mipmap-anydpi-v26/ic_launcher_round.xml b/wikimedmini/res/mipmap-anydpi-v26/ic_launcher_round.xml new file mode 100644 index 0000000..036d09b --- /dev/null +++ b/wikimedmini/res/mipmap-anydpi-v26/ic_launcher_round.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/wikimedmini/res/mipmap-hdpi/ic_launcher.png b/wikimedmini/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 0000000..8339e8c Binary files /dev/null and b/wikimedmini/res/mipmap-hdpi/ic_launcher.png differ diff --git a/wikimedmini/res/mipmap-hdpi/ic_launcher_foreground.png b/wikimedmini/res/mipmap-hdpi/ic_launcher_foreground.png new file mode 100644 index 0000000..41529f0 Binary files /dev/null and b/wikimedmini/res/mipmap-hdpi/ic_launcher_foreground.png differ diff --git a/wikimedmini/res/mipmap-hdpi/ic_launcher_round.png b/wikimedmini/res/mipmap-hdpi/ic_launcher_round.png new file mode 100644 index 0000000..10c10f3 Binary files /dev/null and b/wikimedmini/res/mipmap-hdpi/ic_launcher_round.png differ diff --git a/wikimedmini/res/mipmap-mdpi/ic_launcher.png b/wikimedmini/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 0000000..466f1c6 Binary files /dev/null and b/wikimedmini/res/mipmap-mdpi/ic_launcher.png differ diff --git a/wikimedmini/res/mipmap-mdpi/ic_launcher_foreground.png b/wikimedmini/res/mipmap-mdpi/ic_launcher_foreground.png new file mode 100644 index 0000000..8eda917 Binary files /dev/null and b/wikimedmini/res/mipmap-mdpi/ic_launcher_foreground.png differ diff --git a/wikimedmini/res/mipmap-mdpi/ic_launcher_round.png b/wikimedmini/res/mipmap-mdpi/ic_launcher_round.png new file mode 100644 index 0000000..1c05965 Binary files /dev/null and b/wikimedmini/res/mipmap-mdpi/ic_launcher_round.png differ diff --git a/wikimedmini/res/mipmap-xhdpi/ic_launcher.png b/wikimedmini/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 0000000..9da64b6 Binary files /dev/null and b/wikimedmini/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/wikimedmini/res/mipmap-xhdpi/ic_launcher_foreground.png b/wikimedmini/res/mipmap-xhdpi/ic_launcher_foreground.png new file mode 100644 index 0000000..7b4cdd1 Binary files /dev/null and b/wikimedmini/res/mipmap-xhdpi/ic_launcher_foreground.png differ diff --git a/wikimedmini/res/mipmap-xhdpi/ic_launcher_round.png b/wikimedmini/res/mipmap-xhdpi/ic_launcher_round.png new file mode 100644 index 0000000..348c8a1 Binary files /dev/null and b/wikimedmini/res/mipmap-xhdpi/ic_launcher_round.png differ diff --git a/wikimedmini/res/mipmap-xxhdpi/ic_launcher.png b/wikimedmini/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 0000000..6385233 Binary files /dev/null and b/wikimedmini/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/wikimedmini/res/mipmap-xxhdpi/ic_launcher_foreground.png b/wikimedmini/res/mipmap-xxhdpi/ic_launcher_foreground.png new file mode 100644 index 0000000..7efd244 Binary files /dev/null and b/wikimedmini/res/mipmap-xxhdpi/ic_launcher_foreground.png differ diff --git a/wikimedmini/res/mipmap-xxhdpi/ic_launcher_round.png b/wikimedmini/res/mipmap-xxhdpi/ic_launcher_round.png new file mode 100644 index 0000000..361962a Binary files /dev/null and b/wikimedmini/res/mipmap-xxhdpi/ic_launcher_round.png differ diff --git a/wikimedmini/res/mipmap-xxxhdpi/ic_launcher.png b/wikimedmini/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 0000000..106c70c Binary files /dev/null and b/wikimedmini/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/wikimedmini/res/mipmap-xxxhdpi/ic_launcher_foreground.png b/wikimedmini/res/mipmap-xxxhdpi/ic_launcher_foreground.png new file mode 100644 index 0000000..e563706 Binary files /dev/null and b/wikimedmini/res/mipmap-xxxhdpi/ic_launcher_foreground.png differ diff --git a/wikimedmini/res/mipmap-xxxhdpi/ic_launcher_round.png b/wikimedmini/res/mipmap-xxxhdpi/ic_launcher_round.png new file mode 100644 index 0000000..ab63e06 Binary files /dev/null and b/wikimedmini/res/mipmap-xxxhdpi/ic_launcher_round.png differ diff --git a/wikimedmini/res/values/ic_launcher_background.xml b/wikimedmini/res/values/ic_launcher_background.xml new file mode 100644 index 0000000..c5d5899 --- /dev/null +++ b/wikimedmini/res/values/ic_launcher_background.xml @@ -0,0 +1,4 @@ + + + #FFFFFF + \ No newline at end of file diff --git a/wikimedor/ic_launcher-web.png b/wikimedor/ic_launcher-web.png new file mode 100644 index 0000000..ce202a0 Binary files /dev/null and b/wikimedor/ic_launcher-web.png differ diff --git a/wikimedor/res/mipmap-anydpi-v26/ic_launcher.xml b/wikimedor/res/mipmap-anydpi-v26/ic_launcher.xml new file mode 100644 index 0000000..036d09b --- /dev/null +++ b/wikimedor/res/mipmap-anydpi-v26/ic_launcher.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/wikimedor/res/mipmap-anydpi-v26/ic_launcher_round.xml b/wikimedor/res/mipmap-anydpi-v26/ic_launcher_round.xml new file mode 100644 index 0000000..036d09b --- /dev/null +++ b/wikimedor/res/mipmap-anydpi-v26/ic_launcher_round.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/wikimedor/res/mipmap-hdpi/ic_launcher.png b/wikimedor/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 0000000..3b25c71 Binary files /dev/null and b/wikimedor/res/mipmap-hdpi/ic_launcher.png differ diff --git a/wikimedor/res/mipmap-hdpi/ic_launcher_foreground.png b/wikimedor/res/mipmap-hdpi/ic_launcher_foreground.png new file mode 100644 index 0000000..26e747d Binary files /dev/null and b/wikimedor/res/mipmap-hdpi/ic_launcher_foreground.png differ diff --git a/wikimedor/res/mipmap-hdpi/ic_launcher_round.png b/wikimedor/res/mipmap-hdpi/ic_launcher_round.png new file mode 100644 index 0000000..cf2e6eb Binary files /dev/null and b/wikimedor/res/mipmap-hdpi/ic_launcher_round.png differ diff --git a/wikimedor/res/mipmap-mdpi/ic_launcher.png b/wikimedor/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 0000000..027d12c Binary files /dev/null and b/wikimedor/res/mipmap-mdpi/ic_launcher.png differ diff --git a/wikimedor/res/mipmap-mdpi/ic_launcher_foreground.png b/wikimedor/res/mipmap-mdpi/ic_launcher_foreground.png new file mode 100644 index 0000000..21cbfe7 Binary files /dev/null and b/wikimedor/res/mipmap-mdpi/ic_launcher_foreground.png differ diff --git a/wikimedor/res/mipmap-mdpi/ic_launcher_round.png b/wikimedor/res/mipmap-mdpi/ic_launcher_round.png new file mode 100644 index 0000000..29b9af6 Binary files /dev/null and b/wikimedor/res/mipmap-mdpi/ic_launcher_round.png differ diff --git a/wikimedor/res/mipmap-xhdpi/ic_launcher.png b/wikimedor/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 0000000..8d54b32 Binary files /dev/null and b/wikimedor/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/wikimedor/res/mipmap-xhdpi/ic_launcher_foreground.png b/wikimedor/res/mipmap-xhdpi/ic_launcher_foreground.png new file mode 100644 index 0000000..883f45e Binary files /dev/null and b/wikimedor/res/mipmap-xhdpi/ic_launcher_foreground.png differ diff --git a/wikimedor/res/mipmap-xhdpi/ic_launcher_round.png b/wikimedor/res/mipmap-xhdpi/ic_launcher_round.png new file mode 100644 index 0000000..afb071d Binary files /dev/null and b/wikimedor/res/mipmap-xhdpi/ic_launcher_round.png differ diff --git a/wikimedor/res/mipmap-xxhdpi/ic_launcher.png b/wikimedor/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 0000000..373f26f Binary files /dev/null and b/wikimedor/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/wikimedor/res/mipmap-xxhdpi/ic_launcher_foreground.png b/wikimedor/res/mipmap-xxhdpi/ic_launcher_foreground.png new file mode 100644 index 0000000..1ef7318 Binary files /dev/null and b/wikimedor/res/mipmap-xxhdpi/ic_launcher_foreground.png differ diff --git a/wikimedor/res/mipmap-xxhdpi/ic_launcher_round.png b/wikimedor/res/mipmap-xxhdpi/ic_launcher_round.png new file mode 100644 index 0000000..50e662f Binary files /dev/null and b/wikimedor/res/mipmap-xxhdpi/ic_launcher_round.png differ diff --git a/wikimedor/res/mipmap-xxxhdpi/ic_launcher.png b/wikimedor/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 0000000..c45b4a2 Binary files /dev/null and b/wikimedor/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/wikimedor/res/mipmap-xxxhdpi/ic_launcher_foreground.png b/wikimedor/res/mipmap-xxxhdpi/ic_launcher_foreground.png new file mode 100644 index 0000000..60e12e4 Binary files /dev/null and b/wikimedor/res/mipmap-xxxhdpi/ic_launcher_foreground.png differ diff --git a/wikimedor/res/mipmap-xxxhdpi/ic_launcher_round.png b/wikimedor/res/mipmap-xxxhdpi/ic_launcher_round.png new file mode 100644 index 0000000..49f6cf8 Binary files /dev/null and b/wikimedor/res/mipmap-xxxhdpi/ic_launcher_round.png differ diff --git a/wikimedor/res/values/ic_launcher_background.xml b/wikimedor/res/values/ic_launcher_background.xml new file mode 100644 index 0000000..c5d5899 --- /dev/null +++ b/wikimedor/res/values/ic_launcher_background.xml @@ -0,0 +1,4 @@ + + + #FFFFFF + \ No newline at end of file diff --git a/wikimedpt/ic_launcher-web.png b/wikimedpt/ic_launcher-web.png new file mode 100644 index 0000000..a9d8e2f Binary files /dev/null and b/wikimedpt/ic_launcher-web.png differ diff --git a/wikimedpt/res/mipmap-anydpi-v26/ic_launcher.xml b/wikimedpt/res/mipmap-anydpi-v26/ic_launcher.xml new file mode 100644 index 0000000..036d09b --- /dev/null +++ b/wikimedpt/res/mipmap-anydpi-v26/ic_launcher.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/wikimedpt/res/mipmap-anydpi-v26/ic_launcher_round.xml b/wikimedpt/res/mipmap-anydpi-v26/ic_launcher_round.xml new file mode 100644 index 0000000..036d09b --- /dev/null +++ b/wikimedpt/res/mipmap-anydpi-v26/ic_launcher_round.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/wikimedpt/res/mipmap-hdpi/ic_launcher.png b/wikimedpt/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 0000000..8321bec Binary files /dev/null and b/wikimedpt/res/mipmap-hdpi/ic_launcher.png differ diff --git a/wikimedpt/res/mipmap-hdpi/ic_launcher_foreground.png b/wikimedpt/res/mipmap-hdpi/ic_launcher_foreground.png new file mode 100644 index 0000000..e6cf910 Binary files /dev/null and b/wikimedpt/res/mipmap-hdpi/ic_launcher_foreground.png differ diff --git a/wikimedpt/res/mipmap-hdpi/ic_launcher_round.png b/wikimedpt/res/mipmap-hdpi/ic_launcher_round.png new file mode 100644 index 0000000..e964159 Binary files /dev/null and b/wikimedpt/res/mipmap-hdpi/ic_launcher_round.png differ diff --git a/wikimedpt/res/mipmap-mdpi/ic_launcher.png b/wikimedpt/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 0000000..e3142d0 Binary files /dev/null and b/wikimedpt/res/mipmap-mdpi/ic_launcher.png differ diff --git a/wikimedpt/res/mipmap-mdpi/ic_launcher_foreground.png b/wikimedpt/res/mipmap-mdpi/ic_launcher_foreground.png new file mode 100644 index 0000000..429d68f Binary files /dev/null and b/wikimedpt/res/mipmap-mdpi/ic_launcher_foreground.png differ diff --git a/wikimedpt/res/mipmap-mdpi/ic_launcher_round.png b/wikimedpt/res/mipmap-mdpi/ic_launcher_round.png new file mode 100644 index 0000000..c047e59 Binary files /dev/null and b/wikimedpt/res/mipmap-mdpi/ic_launcher_round.png differ diff --git a/wikimedpt/res/mipmap-xhdpi/ic_launcher.png b/wikimedpt/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 0000000..461c4c0 Binary files /dev/null and b/wikimedpt/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/wikimedpt/res/mipmap-xhdpi/ic_launcher_foreground.png b/wikimedpt/res/mipmap-xhdpi/ic_launcher_foreground.png new file mode 100644 index 0000000..82fc0d1 Binary files /dev/null and b/wikimedpt/res/mipmap-xhdpi/ic_launcher_foreground.png differ diff --git a/wikimedpt/res/mipmap-xhdpi/ic_launcher_round.png b/wikimedpt/res/mipmap-xhdpi/ic_launcher_round.png new file mode 100644 index 0000000..3eb1962 Binary files /dev/null and b/wikimedpt/res/mipmap-xhdpi/ic_launcher_round.png differ diff --git a/wikimedpt/res/mipmap-xxhdpi/ic_launcher.png b/wikimedpt/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 0000000..40b45b1 Binary files /dev/null and b/wikimedpt/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/wikimedpt/res/mipmap-xxhdpi/ic_launcher_foreground.png b/wikimedpt/res/mipmap-xxhdpi/ic_launcher_foreground.png new file mode 100644 index 0000000..d939664 Binary files /dev/null and b/wikimedpt/res/mipmap-xxhdpi/ic_launcher_foreground.png differ diff --git a/wikimedpt/res/mipmap-xxhdpi/ic_launcher_round.png b/wikimedpt/res/mipmap-xxhdpi/ic_launcher_round.png new file mode 100644 index 0000000..db794f5 Binary files /dev/null and b/wikimedpt/res/mipmap-xxhdpi/ic_launcher_round.png differ diff --git a/wikimedpt/res/mipmap-xxxhdpi/ic_launcher.png b/wikimedpt/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 0000000..c1e5a63 Binary files /dev/null and b/wikimedpt/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/wikimedpt/res/mipmap-xxxhdpi/ic_launcher_foreground.png b/wikimedpt/res/mipmap-xxxhdpi/ic_launcher_foreground.png new file mode 100644 index 0000000..df81e91 Binary files /dev/null and b/wikimedpt/res/mipmap-xxxhdpi/ic_launcher_foreground.png differ diff --git a/wikimedpt/res/mipmap-xxxhdpi/ic_launcher_round.png b/wikimedpt/res/mipmap-xxxhdpi/ic_launcher_round.png new file mode 100644 index 0000000..8767ca1 Binary files /dev/null and b/wikimedpt/res/mipmap-xxxhdpi/ic_launcher_round.png differ diff --git a/wikimedpt/res/values/ic_launcher_background.xml b/wikimedpt/res/values/ic_launcher_background.xml new file mode 100644 index 0000000..c5d5899 --- /dev/null +++ b/wikimedpt/res/values/ic_launcher_background.xml @@ -0,0 +1,4 @@ + + + #FFFFFF + \ No newline at end of file diff --git a/wikispecies/ic_launcher-web.png b/wikispecies/ic_launcher-web.png new file mode 100644 index 0000000..2542478 Binary files /dev/null and b/wikispecies/ic_launcher-web.png differ diff --git a/wikispecies/res/mipmap-anydpi-v26/ic_launcher.xml b/wikispecies/res/mipmap-anydpi-v26/ic_launcher.xml new file mode 100644 index 0000000..036d09b --- /dev/null +++ b/wikispecies/res/mipmap-anydpi-v26/ic_launcher.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/wikispecies/res/mipmap-anydpi-v26/ic_launcher_round.xml b/wikispecies/res/mipmap-anydpi-v26/ic_launcher_round.xml new file mode 100644 index 0000000..036d09b --- /dev/null +++ b/wikispecies/res/mipmap-anydpi-v26/ic_launcher_round.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/wikispecies/res/mipmap-hdpi/ic_launcher.png b/wikispecies/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 0000000..87114cc Binary files /dev/null and b/wikispecies/res/mipmap-hdpi/ic_launcher.png differ diff --git a/wikispecies/res/mipmap-hdpi/ic_launcher_foreground.png b/wikispecies/res/mipmap-hdpi/ic_launcher_foreground.png new file mode 100644 index 0000000..5cb86c3 Binary files /dev/null and b/wikispecies/res/mipmap-hdpi/ic_launcher_foreground.png differ diff --git a/wikispecies/res/mipmap-hdpi/ic_launcher_round.png b/wikispecies/res/mipmap-hdpi/ic_launcher_round.png new file mode 100644 index 0000000..ee524d6 Binary files /dev/null and b/wikispecies/res/mipmap-hdpi/ic_launcher_round.png differ diff --git a/wikispecies/res/mipmap-mdpi/ic_launcher.png b/wikispecies/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 0000000..30204b4 Binary files /dev/null and b/wikispecies/res/mipmap-mdpi/ic_launcher.png differ diff --git a/wikispecies/res/mipmap-mdpi/ic_launcher_foreground.png b/wikispecies/res/mipmap-mdpi/ic_launcher_foreground.png new file mode 100644 index 0000000..c4b8c74 Binary files /dev/null and b/wikispecies/res/mipmap-mdpi/ic_launcher_foreground.png differ diff --git a/wikispecies/res/mipmap-mdpi/ic_launcher_round.png b/wikispecies/res/mipmap-mdpi/ic_launcher_round.png new file mode 100644 index 0000000..e9ccd43 Binary files /dev/null and b/wikispecies/res/mipmap-mdpi/ic_launcher_round.png differ diff --git a/wikispecies/res/mipmap-xhdpi/ic_launcher.png b/wikispecies/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 0000000..54ac9dd Binary files /dev/null and b/wikispecies/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/wikispecies/res/mipmap-xhdpi/ic_launcher_foreground.png b/wikispecies/res/mipmap-xhdpi/ic_launcher_foreground.png new file mode 100644 index 0000000..336633a Binary files /dev/null and b/wikispecies/res/mipmap-xhdpi/ic_launcher_foreground.png differ diff --git a/wikispecies/res/mipmap-xhdpi/ic_launcher_round.png b/wikispecies/res/mipmap-xhdpi/ic_launcher_round.png new file mode 100644 index 0000000..b2077da Binary files /dev/null and b/wikispecies/res/mipmap-xhdpi/ic_launcher_round.png differ diff --git a/wikispecies/res/mipmap-xxhdpi/ic_launcher.png b/wikispecies/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 0000000..f52de60 Binary files /dev/null and b/wikispecies/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/wikispecies/res/mipmap-xxhdpi/ic_launcher_foreground.png b/wikispecies/res/mipmap-xxhdpi/ic_launcher_foreground.png new file mode 100644 index 0000000..7dc7bea Binary files /dev/null and b/wikispecies/res/mipmap-xxhdpi/ic_launcher_foreground.png differ diff --git a/wikispecies/res/mipmap-xxhdpi/ic_launcher_round.png b/wikispecies/res/mipmap-xxhdpi/ic_launcher_round.png new file mode 100644 index 0000000..c471afe Binary files /dev/null and b/wikispecies/res/mipmap-xxhdpi/ic_launcher_round.png differ diff --git a/wikispecies/res/mipmap-xxxhdpi/ic_launcher.png b/wikispecies/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 0000000..63d494f Binary files /dev/null and b/wikispecies/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/wikispecies/res/mipmap-xxxhdpi/ic_launcher_foreground.png b/wikispecies/res/mipmap-xxxhdpi/ic_launcher_foreground.png new file mode 100644 index 0000000..9865b6a Binary files /dev/null and b/wikispecies/res/mipmap-xxxhdpi/ic_launcher_foreground.png differ diff --git a/wikispecies/res/mipmap-xxxhdpi/ic_launcher_round.png b/wikispecies/res/mipmap-xxxhdpi/ic_launcher_round.png new file mode 100644 index 0000000..0d20d74 Binary files /dev/null and b/wikispecies/res/mipmap-xxxhdpi/ic_launcher_round.png differ diff --git a/wikispecies/res/values/ic_launcher_background.xml b/wikispecies/res/values/ic_launcher_background.xml new file mode 100644 index 0000000..c5d5899 --- /dev/null +++ b/wikispecies/res/values/ic_launcher_background.xml @@ -0,0 +1,4 @@ + + + #FFFFFF + \ No newline at end of file diff --git a/wikivoyage/ic_launcher-web.png b/wikivoyage/ic_launcher-web.png new file mode 100644 index 0000000..437b14e Binary files /dev/null and b/wikivoyage/ic_launcher-web.png differ diff --git a/wikivoyage/res/mipmap-anydpi-v26/ic_launcher.xml b/wikivoyage/res/mipmap-anydpi-v26/ic_launcher.xml new file mode 100644 index 0000000..036d09b --- /dev/null +++ b/wikivoyage/res/mipmap-anydpi-v26/ic_launcher.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/wikivoyage/res/mipmap-anydpi-v26/ic_launcher_round.xml b/wikivoyage/res/mipmap-anydpi-v26/ic_launcher_round.xml new file mode 100644 index 0000000..036d09b --- /dev/null +++ b/wikivoyage/res/mipmap-anydpi-v26/ic_launcher_round.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/wikivoyage/res/mipmap-hdpi/ic_launcher.png b/wikivoyage/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 0000000..bf22c39 Binary files /dev/null and b/wikivoyage/res/mipmap-hdpi/ic_launcher.png differ diff --git a/wikivoyage/res/mipmap-hdpi/ic_launcher_foreground.png b/wikivoyage/res/mipmap-hdpi/ic_launcher_foreground.png new file mode 100644 index 0000000..e901afd Binary files /dev/null and b/wikivoyage/res/mipmap-hdpi/ic_launcher_foreground.png differ diff --git a/wikivoyage/res/mipmap-hdpi/ic_launcher_round.png b/wikivoyage/res/mipmap-hdpi/ic_launcher_round.png new file mode 100644 index 0000000..08b8749 Binary files /dev/null and b/wikivoyage/res/mipmap-hdpi/ic_launcher_round.png differ diff --git a/wikivoyage/res/mipmap-mdpi/ic_launcher.png b/wikivoyage/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 0000000..e5d6233 Binary files /dev/null and b/wikivoyage/res/mipmap-mdpi/ic_launcher.png differ diff --git a/wikivoyage/res/mipmap-mdpi/ic_launcher_foreground.png b/wikivoyage/res/mipmap-mdpi/ic_launcher_foreground.png new file mode 100644 index 0000000..809d4db Binary files /dev/null and b/wikivoyage/res/mipmap-mdpi/ic_launcher_foreground.png differ diff --git a/wikivoyage/res/mipmap-mdpi/ic_launcher_round.png b/wikivoyage/res/mipmap-mdpi/ic_launcher_round.png new file mode 100644 index 0000000..c20c65f Binary files /dev/null and b/wikivoyage/res/mipmap-mdpi/ic_launcher_round.png differ diff --git a/wikivoyage/res/mipmap-xhdpi/ic_launcher.png b/wikivoyage/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 0000000..cfa84ea Binary files /dev/null and b/wikivoyage/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/wikivoyage/res/mipmap-xhdpi/ic_launcher_foreground.png b/wikivoyage/res/mipmap-xhdpi/ic_launcher_foreground.png new file mode 100644 index 0000000..1a9e8eb Binary files /dev/null and b/wikivoyage/res/mipmap-xhdpi/ic_launcher_foreground.png differ diff --git a/wikivoyage/res/mipmap-xhdpi/ic_launcher_round.png b/wikivoyage/res/mipmap-xhdpi/ic_launcher_round.png new file mode 100644 index 0000000..851b1d0 Binary files /dev/null and b/wikivoyage/res/mipmap-xhdpi/ic_launcher_round.png differ diff --git a/wikivoyage/res/mipmap-xxhdpi/ic_launcher.png b/wikivoyage/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 0000000..183978a Binary files /dev/null and b/wikivoyage/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/wikivoyage/res/mipmap-xxhdpi/ic_launcher_foreground.png b/wikivoyage/res/mipmap-xxhdpi/ic_launcher_foreground.png new file mode 100644 index 0000000..f1e12b9 Binary files /dev/null and b/wikivoyage/res/mipmap-xxhdpi/ic_launcher_foreground.png differ diff --git a/wikivoyage/res/mipmap-xxhdpi/ic_launcher_round.png b/wikivoyage/res/mipmap-xxhdpi/ic_launcher_round.png new file mode 100644 index 0000000..186894d Binary files /dev/null and b/wikivoyage/res/mipmap-xxhdpi/ic_launcher_round.png differ diff --git a/wikivoyage/res/mipmap-xxxhdpi/ic_launcher.png b/wikivoyage/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 0000000..217598d Binary files /dev/null and b/wikivoyage/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/wikivoyage/res/mipmap-xxxhdpi/ic_launcher_foreground.png b/wikivoyage/res/mipmap-xxxhdpi/ic_launcher_foreground.png new file mode 100644 index 0000000..fa4a006 Binary files /dev/null and b/wikivoyage/res/mipmap-xxxhdpi/ic_launcher_foreground.png differ diff --git a/wikivoyage/res/mipmap-xxxhdpi/ic_launcher_round.png b/wikivoyage/res/mipmap-xxxhdpi/ic_launcher_round.png new file mode 100644 index 0000000..81903c8 Binary files /dev/null and b/wikivoyage/res/mipmap-xxxhdpi/ic_launcher_round.png differ diff --git a/wikivoyage/res/values/ic_launcher_background.xml b/wikivoyage/res/values/ic_launcher_background.xml new file mode 100644 index 0000000..c5d5899 --- /dev/null +++ b/wikivoyage/res/values/ic_launcher_background.xml @@ -0,0 +1,4 @@ + + + #FFFFFF + \ No newline at end of file diff --git a/wikivoyagede/ic_launcher-web.png b/wikivoyagede/ic_launcher-web.png new file mode 100644 index 0000000..2ff55ce Binary files /dev/null and b/wikivoyagede/ic_launcher-web.png differ diff --git a/wikivoyagede/res/mipmap-anydpi-v26/ic_launcher.xml b/wikivoyagede/res/mipmap-anydpi-v26/ic_launcher.xml new file mode 100644 index 0000000..036d09b --- /dev/null +++ b/wikivoyagede/res/mipmap-anydpi-v26/ic_launcher.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/wikivoyagede/res/mipmap-anydpi-v26/ic_launcher_round.xml b/wikivoyagede/res/mipmap-anydpi-v26/ic_launcher_round.xml new file mode 100644 index 0000000..036d09b --- /dev/null +++ b/wikivoyagede/res/mipmap-anydpi-v26/ic_launcher_round.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/wikivoyagede/res/mipmap-hdpi/ic_launcher.png b/wikivoyagede/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 0000000..bbe2fa7 Binary files /dev/null and b/wikivoyagede/res/mipmap-hdpi/ic_launcher.png differ diff --git a/wikivoyagede/res/mipmap-hdpi/ic_launcher_foreground.png b/wikivoyagede/res/mipmap-hdpi/ic_launcher_foreground.png new file mode 100644 index 0000000..b6988d7 Binary files /dev/null and b/wikivoyagede/res/mipmap-hdpi/ic_launcher_foreground.png differ diff --git a/wikivoyagede/res/mipmap-hdpi/ic_launcher_round.png b/wikivoyagede/res/mipmap-hdpi/ic_launcher_round.png new file mode 100644 index 0000000..d190a7a Binary files /dev/null and b/wikivoyagede/res/mipmap-hdpi/ic_launcher_round.png differ diff --git a/wikivoyagede/res/mipmap-mdpi/ic_launcher.png b/wikivoyagede/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 0000000..ae55ab5 Binary files /dev/null and b/wikivoyagede/res/mipmap-mdpi/ic_launcher.png differ diff --git a/wikivoyagede/res/mipmap-mdpi/ic_launcher_foreground.png b/wikivoyagede/res/mipmap-mdpi/ic_launcher_foreground.png new file mode 100644 index 0000000..53fa1bb Binary files /dev/null and b/wikivoyagede/res/mipmap-mdpi/ic_launcher_foreground.png differ diff --git a/wikivoyagede/res/mipmap-mdpi/ic_launcher_round.png b/wikivoyagede/res/mipmap-mdpi/ic_launcher_round.png new file mode 100644 index 0000000..236d0ae Binary files /dev/null and b/wikivoyagede/res/mipmap-mdpi/ic_launcher_round.png differ diff --git a/wikivoyagede/res/mipmap-xhdpi/ic_launcher.png b/wikivoyagede/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 0000000..0261b87 Binary files /dev/null and b/wikivoyagede/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/wikivoyagede/res/mipmap-xhdpi/ic_launcher_foreground.png b/wikivoyagede/res/mipmap-xhdpi/ic_launcher_foreground.png new file mode 100644 index 0000000..4f89ece Binary files /dev/null and b/wikivoyagede/res/mipmap-xhdpi/ic_launcher_foreground.png differ diff --git a/wikivoyagede/res/mipmap-xhdpi/ic_launcher_round.png b/wikivoyagede/res/mipmap-xhdpi/ic_launcher_round.png new file mode 100644 index 0000000..77f186b Binary files /dev/null and b/wikivoyagede/res/mipmap-xhdpi/ic_launcher_round.png differ diff --git a/wikivoyagede/res/mipmap-xxhdpi/ic_launcher.png b/wikivoyagede/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 0000000..c9da075 Binary files /dev/null and b/wikivoyagede/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/wikivoyagede/res/mipmap-xxhdpi/ic_launcher_foreground.png b/wikivoyagede/res/mipmap-xxhdpi/ic_launcher_foreground.png new file mode 100644 index 0000000..dd6d36c Binary files /dev/null and b/wikivoyagede/res/mipmap-xxhdpi/ic_launcher_foreground.png differ diff --git a/wikivoyagede/res/mipmap-xxhdpi/ic_launcher_round.png b/wikivoyagede/res/mipmap-xxhdpi/ic_launcher_round.png new file mode 100644 index 0000000..553039e Binary files /dev/null and b/wikivoyagede/res/mipmap-xxhdpi/ic_launcher_round.png differ diff --git a/wikivoyagede/res/mipmap-xxxhdpi/ic_launcher.png b/wikivoyagede/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 0000000..34a056e Binary files /dev/null and b/wikivoyagede/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/wikivoyagede/res/mipmap-xxxhdpi/ic_launcher_foreground.png b/wikivoyagede/res/mipmap-xxxhdpi/ic_launcher_foreground.png new file mode 100644 index 0000000..57de106 Binary files /dev/null and b/wikivoyagede/res/mipmap-xxxhdpi/ic_launcher_foreground.png differ diff --git a/wikivoyagede/res/mipmap-xxxhdpi/ic_launcher_round.png b/wikivoyagede/res/mipmap-xxxhdpi/ic_launcher_round.png new file mode 100644 index 0000000..7439bc2 Binary files /dev/null and b/wikivoyagede/res/mipmap-xxxhdpi/ic_launcher_round.png differ diff --git a/wikivoyagede/res/values/ic_launcher_background.xml b/wikivoyagede/res/values/ic_launcher_background.xml new file mode 100644 index 0000000..c5d5899 --- /dev/null +++ b/wikivoyagede/res/values/ic_launcher_background.xml @@ -0,0 +1,4 @@ + + + #FFFFFF + \ No newline at end of file diff --git a/wikivoyage_europe/icon.png b/wikivoyageeurope/icon.png similarity index 100% rename from wikivoyage_europe/icon.png rename to wikivoyageeurope/icon.png diff --git a/wikivoyage_europe/info.json b/wikivoyageeurope/info.json similarity index 100% rename from wikivoyage_europe/info.json rename to wikivoyageeurope/info.json