From 6bce625b1229b494a5fd68cacec55c469cccb458 Mon Sep 17 00:00:00 2001 From: Harkamal Randhawa Date: Wed, 15 Apr 2026 08:13:53 -0600 Subject: [PATCH] point android app at azure backend --- android/app/build.gradle.kts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/android/app/build.gradle.kts b/android/app/build.gradle.kts index caaf8e17..146d8d64 100644 --- a/android/app/build.gradle.kts +++ b/android/app/build.gradle.kts @@ -16,9 +16,9 @@ val localProperties = Properties().apply { fun quoted(value: String): String = "\"$value\"" val emulatorBackendUrl = - (localProperties.getProperty("petstore.backend.emulatorUrl") ?: "http://10.0.2.2:8080/").trim() + (localProperties.getProperty("petstore.backend.emulatorUrl") ?: "https://petshop-backend.nicepond-c7280126.westus2.azurecontainerapps.io/").trim() val deviceBackendUrl = - (localProperties.getProperty("petstore.backend.deviceUrl") ?: "http://10.0.0.200:8080/").trim() + (localProperties.getProperty("petstore.backend.deviceUrl") ?: "https://petshop-backend.nicepond-c7280126.westus2.azurecontainerapps.io/").trim() android { namespace = "com.example.petstoremobile"