* initial scripts n actions * custom cshared isolate * kitlin fixes * integrate and token fix * executable and gstreamer * disable check dupes, fix gstreamer * another linux update, removed 2 android builds * new updates * final android attempt * formatting --------- Co-authored-by: ggurdin <ggurdin@gmail.com>
12 lines
No EOL
466 B
Bash
Executable file
12 lines
No EOL
466 B
Bash
Executable file
#!/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
|
|
sed -i '' -e 's,^/\*,,' -e 's,\*/$,,' android/app/src/main/kotlin/com/talktolearn/chat/FcmPushService.kt
|
|
else
|
|
sed -i 's,//<GOOGLE_SERVICES>,,g' lib/utils/background_push.dart
|
|
sed -i -e 's,^/\*,,' -e 's,\*/$,,' android/app/src/main/kotlin/com/talktolearn/chat/FcmPushService.kt
|
|
fi |