From 2f38eba4ffbb9efb33ef0797d47a12d0dced621c Mon Sep 17 00:00:00 2001 From: Matthew Raymer Date: Tue, 22 Jul 2025 09:08:37 +0000 Subject: [PATCH] Implement proper asset management and clean up repository - Add capacitor-assets.config.json for cross-platform asset generation - Create resources/ directory structure for source assets - Update .gitignore to exclude generated Android assets and resources - Remove 30+ generated files from source control - Add comprehensive asset management documentation - Add Gradle cache exclusions to .gitignore - Verify asset generation works with new configuration Assets are now properly managed: source files in version control, generated files excluded, and build process handles platform-specific asset generation automatically. Repository size reduced and history cleaned up. --- .gitignore | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 1af5e59d..a9e02809 100644 --- a/.gitignore +++ b/.gitignore @@ -123,4 +123,8 @@ electron/out/ # - electron/electron-builder.config.json # - electron/build-packages.sh # - electron/live-runner.js -# - electron/resources/electron-publisher-custom.js \ No newline at end of file +# - electron/resources/electron-publisher-custom.js + +# Gradle cache files +android/.gradle/file-system.probe +android/.gradle/caches/ \ No newline at end of file