From ee6264f4b407c0bf51ee99d162247cfd7a1f465e Mon Sep 17 00:00:00 2001 From: Sikander Saleem Date: Mon, 16 Dec 2024 10:58:24 +0300 Subject: [PATCH] v3 api added. --- lib/controllers/api_routes/urls.dart | 7 ++++--- pubspec.yaml | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/lib/controllers/api_routes/urls.dart b/lib/controllers/api_routes/urls.dart index 2daf08d2..7964ce5e 100644 --- a/lib/controllers/api_routes/urls.dart +++ b/lib/controllers/api_routes/urls.dart @@ -1,11 +1,12 @@ class URLs { URLs._(); - static const host1 = "https://atomsm.hmg.com"; // production url - // static const host1 = "https://atomsmdev.hmg.com"; // local UAT url + // static const host1 = "https://atomsm.hmg.com"; // production url + static const host1 = "https://atomsmdev.hmg.com"; // local UAT url // static String _baseUrl = "$_host/mobile"; - static String _baseUrl = "$_host/mobile"; // new V2 apis + // static String _baseUrl = "$_host/mobile"; + static String _baseUrl = "$_host/v3/mobile"; // new V3 apis static String _host = host1; diff --git a/pubspec.yaml b/pubspec.yaml index b82dcd6b..e0204a23 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -15,7 +15,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev # In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion. # Read more about iOS versioning at # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html -version: 1.2.4+11 +version: 1.2.5+12 environment: sdk: ">=2.7.0 <3.0.0"