Category: Tech

Migrate Android App to Ktm App

📚 Migrating an Android App Module to Kotlin Multiplatform: Full Technical Guide

⸻

🛠 1. Objective

Transform a standard Android application module into a Kotlin Multiplatform module, while: • Preserving Android application functionality • Preparing clean future expansion for other platforms (e.g., iOS, Desktop) • Aligning to Kotlin 1.9+ and Android SourceSet Layout V2

Read more...

Local K8s Setup

Configure Kubernetes Locally

  • Install kubectl
  • Install helm:
    • brew install helm
  • Install AWS CLI:
curl "https://awscli.amazonaws.com/AWSCLIV2.pkg" -o "AWSCLIV2.pkg"
sudo installer -pkg AWSCLIV2.pkg -target /

At this point, by default, kubectl tries to verify the local cluster. This local cluster does not exist unless it has been initialized (Minikube, also usable via Docker Desktop or Orbstack).

Read more...