2016年8月15日 星期一

Xcode 7.2 安裝CocoaPods

安裝CocoaPods

打開Terminal(終端機),打以下的的指令:
$ sudo gem install cocoapods


1. 用Xcode新增一個專案
2. 用Terminal(終端機),cd .../專案/,打以下的指令
$ pod init
3. 在打上
$ pod install
4. 以上指令跑完後,會新增 專案.xcworkspace,以後就直接開.xcworkspace的檔案

2016年3月7日 星期一

Xcode 7 上架時遇到 憑證無效...

解決方式:
1. 打開Key Chan在 登入 跟 系統 裡面 把 The Apple Worldwide Developer Relations Certification Intermediate Certificate刪除
2. https://developer.apple.com/certificationauthority/AppleWWDRCA.cer 下載後,點兩下安裝
3. Finish.

Xcode 7 上架時遇到 unexpected cfbundleexecutable key ... googleplus.bundle ... 錯誤

解決方式:
在找出你import的googleplus.bundle
1. googleplus.bundle/Info.plist
2. googleplus.bundle/GPPCommonSharedResources.bundle/Info.plist
3. googleplus.bundle/GPPShareboxSharedResources.bundle/Info.plist
請將這三個檔案的Executable file -> string 的值 清除

2016年1月4日 星期一

Ubuntu OpenSSL 更新或安裝

一、確認OpenSSL版本
# openssl version

二、下載你要更新的版本
OpenSSL 下載連結
# wget https://openssl.org/source/openssl-1.0.2d.tar.gz 
# tar -zxvf openssl-1.0.2d.tar.gz -C /usr/local/src

三、安裝
# cd /usr/local/src/openssl-1.0.2d
# ./config
# make
# make install
安裝完後,請移動資料夾
# mv /usr/bin/openssl /root/
# ln -s /usr/local/ssl/bin/openssl /usr/bin/openssl

後來在確認是否有更新版本
# openssl version

Xcode 7 使用google+ SDK遇到錯誤

GoogleOpenSource.framework/GoogleOpenSource(GTLDateTime.o)' does not contain bitcode. You must rebuild it with bitcode enabled (Xcode setting ENABLE_BITCODE), obtain an updated library from the vendor, or disable bitcode for this target. for architecture arm64

我們只要進入 Build Settings -> Build Options 將 Enable Bitcode 改成NO