Upgrade to Pro — share decks privately, control downloads, hide ads and more …

LGTM @PORT mokumoku

toshi0383
October 22, 2016

LGTM @PORT mokumoku

「第21回【フリースタイル】PORTもくもく会【学生歓迎!】」での発表資料です。
http://freestyle-mokumoku.connpass.com/event/40831/

toshi0383

October 22, 2016
Tweet

More Decks by toshi0383

Other Decks in Programming

Transcript

  1. Who I am • Toshihiro Suzuki ླ໦ ढ़༟ • iOS/Mac

    dev as indie • Owner of TVMLKitchen • iOS,tvOS dev/DRM Agent dev at NEXTSCAPE • CerFfied Widevine ImplementaFon Partner © Toshihiro Suzuki 2016 2
  2. Features • On memory image pre-cache • Markdown (GitHub, Backlog,

    HTML <img> tag and Raw URL) • Fav • Fun! © Toshihiro Suzuki 2016 8
  3. Realm Mobile Pla,orm • mBaas by Realm • Easy to

    setup • DigitalOcean © Toshihiro Suzuki 2016 13
  4. ITMS-90060 ERROR ITMS-90060: "This bundle is invalid. The value for

    key CFBundleShortVersionString '3.0.0-beta.1' in the Info.plist file must be a period-separated list of at most three non-negative integers." © Toshihiro Suzuki 2016 15
  5. ITMS-90056 ERROR ITMS-90056: "This bundle Payload/LGTM.app/Frameworks /Async.framework is invalid. The

    Info.plist file is missing the required key: CFBundleVersion." © Toshihiro Suzuki 2016 16
  6. workaround $ cat scripts/fix-lib-version-strings-if-needed.sh #!/bin/bash major=${1:?} minor=${2:?} name=${3:?} for i

    in `find Carthage/Checkouts/${name} -name "*.plist"`; do plutil -replace 'CFBundleShortVersionString' -string ${major} "$i" plutil -replace 'CFBundleVersion' -string ${minor} "$i" done; $ ./scripts/fix-lib-version-strings-if-needed.sh 3.0.0 1 RxSwift © Toshihiro Suzuki 2016 17
  7. Solu%ons • RxSwi' => "Do not submit the beta version."

    Reac;veX/RxSwi'/ issues/878#issuecomment-247425466 • Async => duemunk/Async/pull/108 © Toshihiro Suzuki 2016 18