Finish NNNet app shell, updates, and docs
Some checks failed
Android CI / build (push) Has been cancelled

This commit is contained in:
dom4k
2026-03-16 19:58:13 +00:00
parent 53fc4c1ff4
commit 3e22bb699e
25 changed files with 1619 additions and 127 deletions

View File

@@ -6,6 +6,7 @@ BUILD_FILE="$ROOT_DIR/android/app/build.gradle.kts"
META_DIR="$ROOT_DIR/website/assets/meta"
APK_FILE="$ROOT_DIR/website/downloads/app-debug.apk"
OUTPUT_FILE="$META_DIR/version.json"
RELEASE_NOTES_FILE="$ROOT_DIR/website/assets/meta/release-notes.txt"
mkdir -p "$META_DIR"
@@ -20,7 +21,9 @@ cat > "$OUTPUT_FILE" <<EOF
"versionCode": $version_code,
"buildDateUtc": "$build_date",
"apkPath": "downloads/app-debug.apk",
"apkSizeBytes": $apk_size
"apkSizeBytes": $apk_size,
"releaseNotesTitle": "Что нового",
"releaseNotesPath": "assets/meta/release-notes.txt"
}
EOF