From 76a6b13151a1fbeeb7182e77c2b23c75ddaf2f90 Mon Sep 17 00:00:00 2001 From: Uilian Ries Date: Wed, 10 Dec 2025 11:31:36 +0100 Subject: [PATCH 1/3] Fix assets date Signed-off-by: Uilian Ries --- _posts/2025-12-10-GameDev-Raylib-Android.markdown | 8 ++++---- .../{2025-11-24 => 2025-12-10}/game_running.gif | Bin .../{2025-11-24 => 2025-12-10}/jump-to-survive.gif | Bin .../{2025-11-24 => 2025-12-10}/new_project.png | Bin .../{2025-11-24 => 2025-12-10}/project_cppstd.png | Bin .../{2025-11-24 => 2025-12-10}/project_name.png | Bin 6 files changed, 4 insertions(+), 4 deletions(-) rename assets/post_images/{2025-11-24 => 2025-12-10}/game_running.gif (100%) rename assets/post_images/{2025-11-24 => 2025-12-10}/jump-to-survive.gif (100%) rename assets/post_images/{2025-11-24 => 2025-12-10}/new_project.png (100%) rename assets/post_images/{2025-11-24 => 2025-12-10}/project_cppstd.png (100%) rename assets/post_images/{2025-11-24 => 2025-12-10}/project_name.png (100%) diff --git a/_posts/2025-12-10-GameDev-Raylib-Android.markdown b/_posts/2025-12-10-GameDev-Raylib-Android.markdown index f697a1b5..dc404878 100644 --- a/_posts/2025-12-10-GameDev-Raylib-Android.markdown +++ b/_posts/2025-12-10-GameDev-Raylib-Android.markdown @@ -16,7 +16,7 @@ the **Android NDK**, and **Conan** for dependency management. By the end of this guide, you'll have your Raylib game running on Android devices with touch controls.
- Jump to Survive on Android

@@ -38,7 +38,7 @@ In order to run our Raylib game on Android, we need to create a new Android proj * Select **Native C++** from the templates
- New Native C++ Project in Android Studio

@@ -50,7 +50,7 @@ In order to run our Raylib game on Android, we need to create a new Android proj * Choose **Groovy DSL** for the build configuration language
- New Native C++ Project in Android Studio

@@ -58,7 +58,7 @@ In order to run our Raylib game on Android, we need to create a new Android proj * Next, select **C++17** as the C++ Standard (we'll match this in our Conan profile)
- New Native C++ Project in Android Studio

diff --git a/assets/post_images/2025-11-24/game_running.gif b/assets/post_images/2025-12-10/game_running.gif similarity index 100% rename from assets/post_images/2025-11-24/game_running.gif rename to assets/post_images/2025-12-10/game_running.gif diff --git a/assets/post_images/2025-11-24/jump-to-survive.gif b/assets/post_images/2025-12-10/jump-to-survive.gif similarity index 100% rename from assets/post_images/2025-11-24/jump-to-survive.gif rename to assets/post_images/2025-12-10/jump-to-survive.gif diff --git a/assets/post_images/2025-11-24/new_project.png b/assets/post_images/2025-12-10/new_project.png similarity index 100% rename from assets/post_images/2025-11-24/new_project.png rename to assets/post_images/2025-12-10/new_project.png diff --git a/assets/post_images/2025-11-24/project_cppstd.png b/assets/post_images/2025-12-10/project_cppstd.png similarity index 100% rename from assets/post_images/2025-11-24/project_cppstd.png rename to assets/post_images/2025-12-10/project_cppstd.png diff --git a/assets/post_images/2025-11-24/project_name.png b/assets/post_images/2025-12-10/project_name.png similarity index 100% rename from assets/post_images/2025-11-24/project_name.png rename to assets/post_images/2025-12-10/project_name.png From fd02ee583de9ed7da13d8c40175285f6bdfac0f2 Mon Sep 17 00:00:00 2001 From: Uilian Ries Date: Wed, 10 Dec 2025 11:33:34 +0100 Subject: [PATCH 2/3] Update target post date Signed-off-by: Uilian Ries --- _posts/2018-01-30-Cross-building-Boost-Android.markdown | 2 +- _posts/2018-02-13-Android-Studio-project-Conan-Boost.markdown | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/_posts/2018-01-30-Cross-building-Boost-Android.markdown b/_posts/2018-01-30-Cross-building-Boost-Android.markdown index b50a504e..d719b322 100644 --- a/_posts/2018-01-30-Cross-building-Boost-Android.markdown +++ b/_posts/2018-01-30-Cross-building-Boost-Android.markdown @@ -4,7 +4,7 @@ comments: false title: Cross building Boost C++ libraries to Android with Conan deprecated: true deprecated_reason: "This information is outdated. See the updated post." -deprecated_link: /cpp/gamedev/android/conan/raylib/2025/11/24/GameDev-Raylib-Android.html +deprecated_link: /cpp/gamedev/android/conan/raylib/2025/12/10/GameDev-Raylib-Android.html # other options --- diff --git a/_posts/2018-02-13-Android-Studio-project-Conan-Boost.markdown b/_posts/2018-02-13-Android-Studio-project-Conan-Boost.markdown index 06eb3d4a..769321ec 100644 --- a/_posts/2018-02-13-Android-Studio-project-Conan-Boost.markdown +++ b/_posts/2018-02-13-Android-Studio-project-Conan-Boost.markdown @@ -4,7 +4,7 @@ comments: false title: Android Studio project using Conan and C++ Boost libraries deprecated: true deprecated_reason: "This information is outdated. See the updated post." -deprecated_link: /cpp/gamedev/android/conan/raylib/2025/11/24/GameDev-Raylib-Android.html +deprecated_link: /cpp/gamedev/android/conan/raylib/2025/12/10/GameDev-Raylib-Android.html --- In the previous blog post [Cross building Boost C++ libraries to Android with Conan](https://blog.conan.io/2018/01/30/Cross-building-Boost-Android.html) From da8e76aea6b69e14d9bbb563122e9d1d89ec47db Mon Sep 17 00:00:00 2001 From: Uilian Ries Date: Wed, 10 Dec 2025 11:36:11 +0100 Subject: [PATCH 3/3] Update gif to android version Signed-off-by: Uilian Ries --- _posts/2025-12-10-GameDev-Raylib-Android.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_posts/2025-12-10-GameDev-Raylib-Android.markdown b/_posts/2025-12-10-GameDev-Raylib-Android.markdown index dc404878..6a84c9e1 100644 --- a/_posts/2025-12-10-GameDev-Raylib-Android.markdown +++ b/_posts/2025-12-10-GameDev-Raylib-Android.markdown @@ -16,7 +16,7 @@ the **Android NDK**, and **Conan** for dependency management. By the end of this guide, you'll have your Raylib game running on Android devices with touch controls.
- Jump to Survive on Android