You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
fluffychat/scripts/add-firebase-messaging.sh

10 lines
255 B
Bash

#!/usr/bin/env bash
flutter pub add fcm_shared_isolate
flutter pub get
if [[ "$OSTYPE" == "darwin"* ]]; then
sed -i '' 's,//<GOOGLE_SERVICES>,,g' lib/utils/background_push.dart
else
sed -i 's,//<GOOGLE_SERVICES>,,g' lib/utils/background_push.dart
fi