June 18, 2026 • by Soham

OpenCalc Running Through Winedroid

OpenCalc is the first 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.

We are moving fast.