When I first upgrade my mac to Lion, I can not access the shared drive on lion from my pcs. After I install the bonjour sdk, I can see the shared drive on lion now. Here is the download link for bonjour. https://developer.apple.com/downloads/index.action?q=Bonjour%20SDK%20for%20Windows Add Comment Sometimes, when you compile or run your app, you will get "gcc-4.2 failed with exit code 1 iPhone" error. There is no detail information about what is going on here. But most likely, there are some missing files or libraries in your project cause this kind of error messages. You go to your project and see the files are in red letters, that means these files are missing. You need to replace the files should solve the issue. B&N requires the app exit when user clicks on the home button. In order to make the app take home button action. You need to add a function in your cclayer herder file. virtual void keyBackClicked(); add following to your .cpp file init function this->setIsKeypadEnabled(true); add function at your .cpp file like this void xxxx::keyBackClicked() { CCDirector::sharedDirector()->end(); } this function will take the home button action and exit the app. You need to add this to every scene in your app. You should be able to pass the review by B&N. First, you need to initialize an empty git repository in the project directory. Open the project directory in a terminal window and type the following: git init git add . git commit -m "Initial commit" Then you need to create an empty repository on the remote server or the remote disk using following commands. mkdir myremotegitfolder cd myremotegitfolder git init --bare --shared Then you add the remote repository to your project git remote add remoteserver ssh://yourlogin@yourdomain.com/~yourlogin/myremotegitfolder Last push your local repository to your remote server. git push remoteserver master Note: after the first push, you don't need to type master anymore, just type git push remoteserver That is it! First Post! 04/09/2012
Hi This is Emmy from AbiTalk. I will start blogging my development and marketing experience here for mobile education apps. Hope you can find my blog helpful. | EmmyMobile education apps designer and developer for IOS, android and web. ArchivesCategories |

RSS Feed