べにやまぶろぐ

技術寄りの話を書くつもり

2014-03-21から1日間の記事一覧

AppStore への Unity アプリ登録時に "Missing Push Notification Entitlement" という警告メールがくる

アプリのアップロードからおよそ二時間ちょっと経過して、iTunes Store から下記の文で始まるメールが届きました。 Dear developer, We have discovered one or more issues with your recent delivery for "進撃のグソクムシ". Your delivery was successfu…

AppStore 申請時の Validation で The entitlements in your app bundle signature do not match the ones that are contained in the provisioning profile. というエラーが出る

http://albatrus.com/main/ios/5279 を参考にして Provisioning Profile を選択してエラーを解消したのですがその際、なかなか設定画面が見つけられなかったのでメモ。 まず左ペインの 1 target, iOS SDK xxx と併記してあるプロジェクトアイコンをクリック …

D3.js で rect を描くと辺の太さが均一にならない

表題の通りなのですが rect を append して下記の svg タグが生成されたとき、 <rect x="0" y="0" width="190" height="200" stroke="#008080" fill="white" stroke-width="5" style="stroke-opacity: 0.5;"></rect> 表示が のようになってしまって明らかに右辺と下辺が太くておかしくなってしまいました。 どうしたものかと調べたところ rect borders are not sharp Try changing your origin…