博文

目前显示的是 2015的博文

Cordova android SSL issue

http://ivancevich.me/articles/ignoring-invalid-ssl-certificates-on-cordova-android-ios/ Ignoring invalid SSL certificates on Cordova for Android and iOS written by  jc ivancevich When developing  mobile apps , it’s very common that we have to connect to web services or APIs which may be secure (https) but are still under development, so its  SSL  certificate is not valid  or self-signed. This would happen unless you want to spend a hundred bucks on a wildcard certificate for development environments. For cases like the mentioned above it’s useful to be able to  ignore errors generated by invalid certificates,  so we can test the app, install it on any device , etc. In order to get rid of this problem, the process changes depending on the platform we’re targeting. iOS (Objective-C / Swift / Cordova) iOS will  always complain  about invalid certificates, either in debug or release mode. To avoid thi...

SVN with Xcode

转自这里: http://blog.csdn.net/brokge/article/details/16807167 http://www.cnblogs.com/gloolo/archive/2011/12/20/2295232.html 首先:xcode目录下的xcode-》preferences-》accounts删除左边栏所有的检出的操作数据 其次:重新打开xcode开始重新checkout 最后:我的成功了Y(^_^)Y http://stackoverflow.com/questions/19177699/using-svn-1-8-3-with-xcode-5 Writing to 'defaults' won't work for Xcode 5. Newer version of Xcode ship with it's own SVN binary located in: /Applications/ Xcode . app / Contents / Developer / usr / bin / You need to replace this binary to upgrade Xcode's SVN client to 1.8. Assuming your new SVN client is located in /usr/local/bin/ (default brew install path) type the following in a terminal: cd / Applications / Xcode . app / Contents / Developer / usr / bin / sudo mv ./ svn ./ svn . org sudo mv ./ svnadmin ./ svnadmin . org sudo mv ./ svndumpfilter ./ svndumpfilter . org sudo mv ./ svnlook ./ svnlook . org sudo mv ./ svnrdump ./ svnrdump . org sudo mv ./ svnserve ./ svnserve . org sudo...

Android Studio SNV 1.8 on MAC

Install xCode Commad Line Tool: http://railsapps.github.io/xcode-command-line-tools.html Upgrade to SVN 1.8: http://www.jarysta.com/2014/10/16/updating-to-svn-1-8-for-mac-os-x-10-10-yosemite/ Make it work with Android Studio: http://andowebsit.es/blog/noteslog.com/post/how-to-upgrade-subversion-on-osx/ SNV 1.8.9 cannot verify the SSL for server use Brew install svn to install 1.8.13 and it works!!! Yay! Finally, it works