Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion skills/firebase-basics/references/ios_setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Do not use the Firebase Console. Use the CLI to automate setup:
1. Action: Read the Xcode project (`.pbxproj` or `Info.plist`) to determine the
iOS bundle ID.
1. Register the iOS app:
`npx -y firebase-tools@latest apps:create IOS <bundle-id>`
`npx -y firebase-tools@latest apps:create IOS <bundle-id> --non-interactive`
1. Fetch the config: `npx -y firebase-tools@latest apps:sdkconfig IOS <App-ID>`
1. Save the output as `GoogleService-Info.plist` in your Xcode project folder.
Ensure you remove any non-XML CLI output headers, and ensure the file is
Expand Down
2 changes: 1 addition & 1 deletion skills/firebase-crashlytics/references/ios_setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Use the `firebase-tools` CLI to set up the project if necessary.
1. **Create Firebase Project:** If no project exists, create one:
`npx -y firebase-tools@latest projects:create <project-id> --display-name="My Awesome App"`
1. **Create Firebase App:** Register the iOS app with the discovered bundle ID:
`npx -y firebase-tools@latest apps:create IOS <bundle-id>`
`npx -y firebase-tools@latest apps:create IOS <bundle-id> --non-interactive`
1. **Link the GoogleService-Info.plist file:** Use the script in the
`xcode-project-setup` skill to obtain the config and link.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Use the `firebase-tools` CLI to set up the project if necessary.
1. **Create Firebase Project:** If no project exists, create one:
`npx -y firebase-tools@latest projects:create <project-id> --display-name="My Awesome App"`
1. **Create Firebase App:** Register the iOS app with the discovered bundle ID:
`npx -y firebase-tools@latest apps:create IOS <bundle-id>`
`npx -y firebase-tools@latest apps:create IOS <bundle-id> --non-interactive`
1. **Link the GoogleService-Info.plist file:** Use the script in the
`xcode-project-setup` skill to obtain the config and link.

Expand Down
Loading