- Add relative path resolution for filesystem-loaded documents in kernel.cpp
- SetDocumentBasePath() tracks document directory for relative resource resolution
- ResolvePath() resolves relative paths like "app.lua" against document base path
- Fix RmlUi context name lookup in sandbox test app (use "default" not "main")
- Add debug logging to timer_manager.cpp to trace timer creation and execution
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
- Remove duplicate sandbox sources from Android (now in core/)
- Update Android CMakeLists to link mosis-core
- Add OpenSSL crypto support for Android
- Update all includes to use core library headers
- Remove duplicate logger from Android (use core logger)
- Add openssl to Android vcpkg dependencies
This removes ~5,500 lines of duplicate code by sharing
the sandbox implementation between desktop and Android.
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Create core/ directory with platform-agnostic sandbox components:
- Timer manager, JSON API, Crypto API, Virtual FS
- Lua sandbox, Permission gate, Audit log, Rate limiter
- Platform abstraction interfaces (IAssetInterface, IFilesystemInterface)
- Platform-agnostic logger with Android/Desktop implementations
Update designer to link against mosis-core library instead of
including sandbox sources directly.
This is the foundation for unifying the Android service and
desktop designer to share the same codebase.
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>