Last active
May 4, 2016 01:03
-
-
Save robertoestivill/fa5e17dae563226a3364 to your computer and use it in GitHub Desktop.
Intellij Case Sensitivity Warning Fix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This is a quick fix for the IntelliJ / AndroidStudio case sensitivity warning. | |
https://confluence.jetbrains.com/display/IDEADEV/Filesystem+Case-Sensitivity+Mismatch | |
This warning comes up everytime after platform updates, and it is display when projects are located in case sensitive partition. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
printf '\nidea.case.sensitive.fs=true' >> /Applications/Android\ Studio.app/Contents/bin/idea.properties | |
# chmod +x |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# /Users/<user>/.profile | |
alias intellij-case-fix="printf '\nidea.case.sensitive.fs=true' >> /Applications/Android\ Studio.app/Contents/bin/idea.properties" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment