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

What's new at Firebase Summit 2019 [ja]

What's new at Firebase Summit 2019 [ja]

What's new at Firebase Summit 2019 [ja]

Daichi Furiya (Wasabeef)

September 27, 2019
Tweet

More Decks by Daichi Furiya (Wasabeef)

Other Decks in Programming

Transcript

  1. Firebase App Distribution 必要な手順を踏んでいきます # npm install -g firebase-tools #

    fastlane add_plugin firebase_app_distribution Fastlane を使う場合は、Firebaese CLI が必要になります firebase_app_distribution を追加します
  2. Firebase App Distribution Gradle でも配信できますが、Fabric は Fastlane で配信してたので、これを例にします platform :ios

    do desc "My awesome app" lane :distribute do build_ios_app(...) # build_ios_app is a built-in fastlane action. firebase_app_distribution( app: "1:123456789:android:abcd1234", groups: "developers", release_notes: "Lots of amazing new features to test out", firebase_cli_path: "/usr/local/bin/firebase" ) end end