RSSAmplifier

Blog

Nikl's Blog

Personal website with programming projects and related blog posts

nikl.meRSS feed ↗7 posts

Latest posts

Bevy ECS as a data layer for static site generation with Leptos

TLDR: I wrote a static site generator using Leptos and Bevy ECS called Cinnog. There are many static site generators and since I tend to use…

Notes on mobile development with Bevy #2

My Bevy mobile app is very incomplete, but I would like to be able to distribute test builds early on. That means Android builds need to be…

GitHub workflow to publish a Bevy Android app

This is a guide on how to configure a GitHub workflow for building, signing and publishing an Android app that uses Bevy (there is a…

GitHub workflow to publish an iOS app

Last update Jan 24 2026 (fixed an appstore connect link) I built a GitHub workflow to bundle, sign and publish an iOS app. There are already…

Notes on Android development using Bevy

While working on an Android logic puzzle app with Bevy, I learned some things about the current state of Android support in the engine and…

Dynamic assets

One of my favorite Bevy projects at the moment is the plugin bevy_asset_loader (repository). Its goal is to minimize boilerplate for asset…

Asset handling in Bevy apps

This post outlines the path that led to me writing bevy_asset_loader (repository), a plugin to simplify asset handling in Bevy applications…