build script for maui apk adjusted 2 #2

Open
itob wants to merge 29 commits from development into master
4 changed files with 6 additions and 6 deletions
Showing only changes of commit f322fb4173 - Show all commits

View File

@ -32,7 +32,7 @@ namespace RBLNews.Shared.Services
public async Task LoadFeeds()
{
Feeds = await httpClient.GetFromJsonAsync<RssVM>($"{this._configService.AppSettings.BackendApiUrl}/api/feeds") ?? new RssVM();
Feeds = await httpClient.GetFromJsonAsync<RssVM>($"{this._configService.AppSettings.BackendApiUrl}/feeds") ?? new RssVM();
DataChanged.Invoke();
}
}

View File

@ -6,6 +6,6 @@
}
},
"App": {
"BackendApiUrl": "https://localhost:5147"
"BackendApiUrl": "https://localhost:7127"
}
}

View File

@ -5,8 +5,8 @@
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*",
"AllowedHosts": "*",
"App": {
"BackendApiUrl": "https://rblnews.de"
"BackendApiUrl": "https://rblnews.de/api"
}
}

View File

@ -5,8 +5,8 @@
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*",
"AllowedHosts": "*",
"App": {
"BackendApiUrl": "https://rbl.wohlleben.dev"
"BackendApiUrl": "https://rbl.wohlleben.dev/api"
}
}