From 48952ff5a83ca038b795a8d93353ee6cae5415ee Mon Sep 17 00:00:00 2001 From: Marcel Kapfer Date: Sat, 29 Jul 2017 21:42:01 +0200 Subject: [PATCH] Added README for android-studio-hidpi --- android-studio-hidpi/README.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 android-studio-hidpi/README.md diff --git a/android-studio-hidpi/README.md b/android-studio-hidpi/README.md new file mode 100644 index 0000000..3fe8855 --- /dev/null +++ b/android-studio-hidpi/README.md @@ -0,0 +1,29 @@ +# android-studio-hidpi.sh + +This is a small script for enabling and disabling HiDPI support in Android Studio. It works just like the one for IntelliJ IDEA since Android Studio is based upon this IDE. + +## How to use + +Download it from GitLab. To make it runnable execute: + +``` +chmod +x android-studio-hidpi.sh +``` + +For some help run + +``` +./android-studio-hidpi.sh -h +``` + +To enable HiDPI support + +``` +./android-studio-hidpi.sh -e +``` + +To disable it + +``` +./android-studio-hidpi.sh -d +```