Skip to content

Commit

Permalink
Fix: #309 - Resolved app name discrepancy in android
Browse files Browse the repository at this point in the history
  • Loading branch information
lijogeorgep authored and josmilan committed Apr 29, 2024
1 parent 55b8481 commit 78ae75e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import '/flavors/environment.dart';

void main() async {
EnvConfig prodConfig = EnvConfig(
appName: "Flutter GetX Template Prod",
appName: "Data4Diabetes",
baseUrl: "https://data4diabetes-staging-api.igrant.io/",
dexComBaseUrl: "https://sandbox-api.dexcom.com",
shouldCollectCrashLog: true,
Expand Down
2 changes: 1 addition & 1 deletion lib/main_dev.dart
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import '/flavors/environment.dart';

void main() async {
EnvConfig devConfig = EnvConfig(
appName: "Flutter GetX Template Dev",
appName: "Data4Diabetes",
baseUrl: "https://data4diabetes-staging-api.igrant.io/",
dexComBaseUrl: "https://sandbox-api.dexcom.com",
shouldCollectCrashLog: true,
Expand Down
2 changes: 1 addition & 1 deletion lib/main_prod.dart
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import '/flavors/environment.dart';

void main() async {
EnvConfig prodConfig = EnvConfig(
appName: "Flutter GetX Template Prod",
appName: "Data4Diabetes",
baseUrl: "https://data4diabetes-staging-api.igrant.io/",
dexComBaseUrl: "https://sandbox-api.dexcom.com",
shouldCollectCrashLog: true,
Expand Down

0 comments on commit 78ae75e

Please sign in to comment.