mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-06 09:13:48 +08:00
mod: add buildconfig
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
@@ -1 +1,16 @@
|
||||
flutter build apk --target-platform android-arm64 --split-per-abi
|
||||
#!/bin/bash
|
||||
|
||||
if [[ "$OSTYPE" == "darwin"* ]]; then
|
||||
build_time=$(date -u -v+8H +"%Y-%m-%d %H:%M:%S")
|
||||
else
|
||||
build_time=$(date -u +"%Y-%m-%d %H:%M:%S" -d "+8 hours")
|
||||
fi
|
||||
|
||||
commit_hash=$(git rev-parse HEAD)
|
||||
|
||||
cat <<EOL > lib/build_config.dart
|
||||
class BuildConfig {
|
||||
static const String buildTime = '$build_time';
|
||||
static const String commitHash = '$commit_hash';
|
||||
}
|
||||
EOL
|
||||
|
||||
Reference in New Issue
Block a user