Skip to content

Blog

Setting Up an Android project using Gradle without using an IDE

Modern Android development offers many tools to streamline setup, but understanding the build system is crucial for debugging, customizing, and scaling projects efficiently. While Android Studio provides an easy wizard to generate projects, blindly relying on it can be limiting. This article walks through the minimal manual setup of an Android project using Gradle, focusing on clarity and control over generated files. This guide provides a deeper understanding of how Gradle structures Android projects, empowering developers to make informed configuration decisions.

Setting Up a Modern C++ Project with CMake

In this blog post, I'll walk you through setting up a new C++ project using CMake. We'll explore folder structure, dependency management, and how to share your project with others. I will use my little game project as an example.