Reputation: 187
I have been trying to install Android Studio 0.3.2 but every time I end up with this error message: Android Studio.app is damaged and can't be opened. You should move it to the trash
Can I download older version from somewhere, seems the app uploaded isn't working properly.
Upvotes: 10
Views: 3029
Reputation: 101
Here's a solution if you're trying to install onto a USB:
Install Android Studio onto your newly clean drive. And I recommend you to download it in a folder(like "Applications") that you created, not just directly in /Volumes//..
Upvotes: 1
Reputation: 40126
You can go to Settings > Security & Privacy > General tab and choose "Anywhere".
In case if "Anywhere" option is missing from Settings > Security & Privacy > General Tab,
Open Terminal and run,
sudo spctl --master-disable
Then close and reopen Settings > Security & Privacy > General Tab. It will be available that time.
After you finished you make it hidden for security purpose by,
sudo spctl --master-enable
Upvotes: 2
Reputation: 80010
It's colliding with the system security feature that requires all apps to be signed (and preferably only distributed through the Apple app store). You can go to Settings > Security & Privacy > General tab and choose "Anywhere" from "Allow apps downloaded from". You can change this temporarily while you launch Android Studio the first time, and then change it back. You can also usually right-click on the Android Studio icon and choose "Open" from the menu; it will give you a different warning with the option to proceed with launching it.
Upvotes: 16