From 60f5830ac3c6ab340f9efc711169afc8052e1907 Mon Sep 17 00:00:00 2001 From: renato97 Date: Sun, 23 Nov 2025 21:42:36 +0100 Subject: [PATCH] Fix Device Registry URL: Update localhost to public IP MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Changed DEVICE_REGISTRY_URL from localhost to 194.163.191.200:4000 - Allows remote device registration with dashboard - Enables proper Device Registry functionality 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- app/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/build.gradle b/app/build.gradle index b72826b..25682d3 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -10,7 +10,7 @@ android { targetSdk 33 versionCode 91010 versionName "9.1.1" - buildConfigField "String", "DEVICE_REGISTRY_URL", '"http://localhost:4000"' + buildConfigField "String", "DEVICE_REGISTRY_URL", '"http://194.163.191.200:4000"' } buildTypes {