Slide 22
Slide 22 text
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