2021-05-27 00:01:50 +08:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
mv src/ui/flutter_app/android/key.jks ../
|
|
|
|
mv src/ui/flutter_app/android/key.properties ../
|
|
|
|
|
|
|
|
git clean -fdx
|
|
|
|
|
|
|
|
mv ../key.jks src/ui/flutter_app/android/
|
|
|
|
mv ../key.properties src/ui/flutter_app/android/
|
|
|
|
|
2021-07-11 16:08:01 +08:00
|
|
|
if [ "$(uname)" == "Darwin" ]; then
|
|
|
|
echo "TODO: macOS"
|
|
|
|
elif [ "$(expr substr $(uname -s) 1 5)" == "Linux" ]; then
|
|
|
|
echo "TODO: Lniux"
|
|
|
|
else
|
|
|
|
./flutter-windows-init.sh
|
|
|
|
fi
|