13 lines
260 B
Bash
Executable file
13 lines
260 B
Bash
Executable file
#!/bin/bash
|
|
if [ ! -d "scripts" ]; then
|
|
cd ..
|
|
fi
|
|
|
|
PUBSPEC_PATH="../pubspec.yaml"
|
|
|
|
flutter clean
|
|
|
|
sed -i 's/aves_services_google/aves_services_huawei/g' "$PUBSPEC_PATH"
|
|
sed -i 's/aves_report_crashlytics/aves_report_console/g' "$PUBSPEC_PATH"
|
|
|
|
flutter pub get
|