In your command-line run the following commands:
brew doctorbrew update
In your command-line run the following commands:
brew doctorbrew update| #!/bin/bash | |
| # if we are testing a PR, merge it with the latest master branch before testing | |
| # this ensures that all tests pass with the latest changes in master. | |
| set -eu -o pipefail | |
| PR_NUMBER=${CI_PULL_REQUEST//*pull\//} | |
| err=0 | |
| if [ -z "$PR_NUMBER" ]; then |
| require 'net/https' | |
| require 'json' | |
| #-------------------------------------------------------------------------------- | |
| # Configuration | |
| #-------------------------------------------------------------------------------- | |
| configuration = { | |
| :uri => 'https://fabric.io', | |
| :credentials => { | |
| :username => '', |
| How to Completely Remove Android Studio | |
| Execute these commands from the terminal | |
| rm -Rf /Applications/Android\ Studio.app | |
| rm -Rf ~/Library/Preferences/AndroidStudio* | |
| rm ~/Library/Preferences/com.google.android.studio.plist | |
| rm -Rf ~/Library/Application\ Support/AndroidStudio* | |
| rm -Rf ~/Library/Logs/AndroidStudio* |
| using System; | |
| using System.Net; | |
| using System.Windows; | |
| using System.Windows.Controls; | |
| using System.Windows.Documents; | |
| using System.Windows.Ink; | |
| using System.Windows.Input; | |
| using System.Windows.Media; | |
| using System.Windows.Media.Animation; | |
| using System.Windows.Shapes; |