2012年11月26日月曜日

iOS xcode 設定

1. Go to the Project Settings screen, select the Artists target and under Build Settings type “compiler” into the search box. This will filter the list to bring up just the compiler options:

2. Under the Warnings header, also set the Other Warning Flags option to -Wall. The compiler will now check for all possible situations that can cause problems.

3. For the exact same reason, also enable the Run Static Analyzer option under the Build Options header:

4. To try out ARC

Search for “automatic” and set the Objective-C Automatic Reference Counting option to Yes.  

Androidにインストール済みAPK解析

Androidにインストール済みAPK一覧を表示する。
adb shell pm list packages -f

特定APKを解析する
aapt dump badging target.apk

2012年11月23日金曜日

Redmine 2.1をCentOS 6.3にインストールする手順

基本は下記に通りで問題なし
http://blog.redmine.jp/articles/redmine-2_1-installation_centos/

■注意事項
1. iptablesでHTTPを許可について、特に設定しなかった。
2. rmagickを設定する必要はない(個人的に要らない)
    # bundle install --without development test postgresql sqlite
 ではなく、下記を設定した。
  # bundle install --without development test postgresql sqlite rmagick

internetに公開する際の設定事項
http://blog.redmine.jp/articles/project-visibility/