Where does Xcode 4 store Scheme Data?

Finally found the answer on somebody’s Twitter. Schemes are stored per user by default, but if you go to Manage Schemes and click the “Shared” checkbox on the far right for each one, they’ll show up in the xcshareddata directory instead of your xcuserdata directory, where they’ll be seen and used by everyone. Hopefully this … Read more

iOS5 Storyboard error: Storyboards are unavailable on iOS 4.3 and prior

I also got this problem and finally I solved this by following procedure: Open XXXXXX.storyboard Open Identity and Type tab in your right view of Xcode. Set the value of Development in Document Versioning to “Xcode 4.2” (my default value is “Default Version (Xcode 4.1)”. Change the value of Deployment from Project SDK Version (iOS … Read more

How to build executable with name other than Golang package

go build -o <your desired name> You can specify the executable name using the -o switch with go build. For your example it would look something like: cd $GOPATH/github.com/username/go-foobar && go build -o foobar. However, you’re just left with the executable in the package’s folder — you still need to install it somehow. However, I … Read more

Android Studio build fails with “Task ” not found in root project ‘MyProject’.”

Though late in answering, this is a hard one to Google (the single quotes) and it’s not clear what’s happening. I don’t have the reputation yet to comment or ask for scope (or post 3 links), so this answer may be a little tedious. To answer fast, you may have multiple Gradle plugins in your … Read more