Skip to content

Commit

Permalink
refactor: make Firebase Android parameters optional
Browse files Browse the repository at this point in the history
  • Loading branch information
sharjeelyunus committed Dec 24, 2024
1 parent 6e75d59 commit 5fdaab0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions starter/src/modules.ts
Original file line number Diff line number Diff line change
Expand Up @@ -390,17 +390,17 @@ export const modules: Script[] = [
{
key: 'android_appId',
question: 'Please provide your Firebase Android App ID: ',
required: true,
required: false,
},
{
key: 'android_messagingSenderId',
question: 'Please provide your Firebase Android Messaging Sender ID: ',
required: true,
required: false,
},
{
key: 'android_projectId',
question: 'Please provide your Firebase Android Project ID: ',
required: true,
required: false,
},
{
key: 'ios_apiKey',
Expand Down

0 comments on commit 5fdaab0

Please sign in to comment.