Skip to content
This repository has been archived by the owner on Jun 23, 2022. It is now read-only.

Commit

Permalink
Merge branch 'master' of github.com:benoitletondor/Android-Studio-MVP…
Browse files Browse the repository at this point in the history
…-template
  • Loading branch information
benoitletondor committed Mar 21, 2017
2 parents 1ebb0af + cc02b75 commit 8e2bc06
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions install.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#!/bin/bash
# Installs IntelliJ templates

echo "Installing template files..."

find /Applications -path "*.app" -prune \( -name "*Android Studio*" -or -name "*IntelliJ IDEA*" \) -print0 | while read -d $'\0' folder
do
echo "\nInstalling to $folder"
cp -frv $( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )/MVP* "$folder/Contents/plugins/android/lib/templates/activities/"
done


echo "Done."
echo ""
echo "Restart IntelliJ and/or AndroidStudio"

0 comments on commit 8e2bc06

Please sign in to comment.