OpenCalculator is now the main test APK for Winedroid. It boots through our DEX interpreter/runtime path, renders through the Skia canvas renderer, and basic calculator interactions are working: number input, operators, brackets, output text updates, image drawing, popup menu rendering, and Settings navigation.
The important part is the approach: we are not wrapping Android in a VM or launching an emulator. Winedroid is being built as a translation/runtime layer. APK resources, layouts, menus, DEX methods, Android framework calls, view state, and rendering are being interpreted or modeled directly inside our runtime.
Every missing primitive gets implemented generically, so progress on the calculator is progress on the runtime itself. TextView behavior, ImageView drawables, menu XML parsing, popup overlays, click dispatch, activity navigation, preferences, and resource/theme handling are all in place and reusable for future APKs.
Active areas right now: DEX execution, Android and Java builtins, renderer state, and the test suite, each living in its own focused module.
We are moving fast.