quattro_4 scribble

scribble 落書き (調べた事をただ落書きする)

MotionInMotion Episode 22 - Distribute your RubyMotion apps with TestFlight and HockeyApp

Distribute your RubyMotion apps with TestFlight and HockeyApp - MotionInMotion

TestflightとHockeyAppでアプリを配布する

  • keychain access
    • csr
      • request
        • save to disk
    • distribution certificate
      • register into keychain
  • app id
    • bundle id
    • explicit app id
    • Rakefile app.identifier
  • device
    • name, udid
      • bulk save of device id
  • provisioning profile
    • ad hoc distribution
  • mkdir profiles
    • add to gitignore
    • profiles/~.mobileprovision
  • testflight
    • sdk
    • gem motion-testflight
    • Rakefile
      • app.testflight do
        • api token
        • team token
        • app token
        • app.codesign_certificate = "iPhone Distribution: ..."
          • On keychain, copy Common name
        • app.provisioning_profile = "profiles/Tasker.mobileprovision"
        • app.entitlements['get-task-allow'] = false
    • notes for testflight
      • mkdir notes
        • Add to gitignore
        • v0.1.0.notes.sh
      • source notes/v0.1.0.notes.sh
      • echo $notes
      • rake testflight
    • on testflight site
      • activity
      • status installed
  • HockeyApp
    • HockeySDK
      • binary distribution
    • motion-hockeyapp
    • vendor/HockeySDK
      • download, copy and rename
    • Rakefile
      • app.hockeyapp do
        • set :api_token, ENV['HOCKEYAPP_API_TOKEN']
    • Use $notes
    • rake hockeyapp