u/Sebastian1989101

Testing with subscription - weird results?

Testing with subscription - weird results?

I'm currently testing to implement subscriptions to my apps on Android (the system is already in place for iOS). But what did I miss here? I had a setup for monthly, every 3 months, every 6 months and yearly. See:

https://preview.redd.it/l22omudrg32h1.png?width=336&format=png&auto=webp&s=b6b780fd32b0c16e1ddb884696a711af3f069d4d

However when I open my app and tap on the subscription, the dialog that comes up from the PlayStore API (so outside of my app) is telling me 1,99€/5 Min for monthly, 3,99€/10 Min for every 3 months, 6,99€/15 Min for every 6 month and 9,99€/30 Min for yearly?! Is there something wrong configured as the Play Console shows it correcty?

Edit: This is not a debug version of the app. It's a production version though Google Play installed one.

reddit.com
u/Sebastian1989101 — 3 days ago

Need advice: Random Timeout on self hosted DevOps

I have a self hosted Azure DevOps server running. On the same maschine, a buildagent is running. Now since about two weeks, this buildagent randomly goes into timeout in the .NET build task. It's not 100% of the time, it's random on which project. This server builds 27 .NET MAUI apps each time changes are pushed to it. The pipelines did not change. The server got not updated or changed. Usually the build jobs are just 3-5min long. So nothing that should come close to the 1h timeout.

I have opened Visual Studio 2026 once on the maschine to check something and I believe that is where all the problems started. The hosting Windows Server is updated on a weekly basis while the DevOps server install and the buildagents are only updated when needed.

Since the issues started I have tried these things:

  • Updated the Buildagent, fully removed the old one and configured it as new one (deleted everything from the old buildagent)
  • Updated Visual Studio and .NET
  • Cleared the NuGet cache and repaired the .NET
  • Tried different pipeline configurations

This is my pipeline configuration:

trigger:
- master


pool:
  name: default


variables:
  buildConfiguration: 'Debug'
  solution: '**/SampleCompanion.sln'
  testProject: '**/*Tests.csproj'


steps:
- checkout: self
  name: CheckoutCode
  displayName: 'Checkout Repository and Submodules'
  submodules: true


- task: UseDotNet@2
  name: UseDotNetSdk
  displayName: 'Use .NET 9 SDK'
  inputs:
    packageType: 'sdk'
    version: '9.0.x'
    installationPath: $(Agent.ToolsDirectory)/dotnet


- script: |
    dotnet workload install maui-android
    dotnet workload install maui-ios
    dotnet workload install maccatalyst
    dotnet workload restore
    dotnet nuget locals all --clear
  name: InstallAndPrepareWorkloads
  displayName: 'Install MAUI Workloads and Clear Caches'


- task: DotNetCoreCLI@2
  name: RestorePackages
  displayName: 'Restore .NET Packages'
  inputs:
    command: 'restore'
    projects: '$(solution)'


- task: DotNetCoreCLI@2
  name: BuildSolution
  displayName: 'Build .NET Solution'
  inputs:
    command: 'build'
    projects: '$(solution)'
    arguments: '--configuration $(buildConfiguration)'


- task: DotNetCoreCLI@2
  name: RunTests
  displayName: 'Run xUnit Tests'
  inputs:
    command: 'test'
    projects: '$(testProject)'
    arguments: '--configuration $(buildConfiguration) --logger trx'
    publishTestResults: true


- task: PublishTestResults@2
  name: PublishTestResults
  displayName: 'Publish Test Results'
  inputs:
    testResultsFormat: 'VSTest'
    testResultsFiles: '**/TestResults/*.trx'
    failTaskOnFailedTests: true

And if it fails, it always hangs on the "Build .NET Solution" task. This is the end of the log:

2026-05-08T15:15:59.1860893Z     0 Error(s)
2026-05-08T15:15:59.1860929Z 
2026-05-08T15:15:59.1861036Z Time Elapsed 00:01:58.30
2026-05-08T15:16:09.2345309Z Die STDIO-Datenströme wurden nicht innerhalb von 10 Sekunden nach dem Beendigungsereignis aus dem Prozess "C:\agent\_work\_tool\dotnet\dotnet.exe" geschlossen. Möglicherweise hat ein untergeordneter Prozess die STDIO-Datenströme geerbt und wurde noch nicht beendet.
2026-05-08T15:16:09.2350258Z Info: In Azure Pipelines gehostete Agents wurden aktualisiert und enthalten jetzt .NET 5.x SDK/Runtime zusammen mit der älteren .NET Core-Version (zurzeit LTS). Wenn Sie Ihr Projekt nicht auf eine SDK-Version festgelegt haben, wird möglicherweise das 5.x SDK abgerufen. Dieses kann im Vergleich zu früheren Versionen zur Unterbrechung der Funktionalität führen. Weitere Informationen zu Breaking Changes finden Sie hier: https://docs.microsoft.com/de-de/dotnet/core/tools/ und https://docs.microsoft.com/de-de/dotnet/core/compatibility/. Weitere Informationen zu diesen Änderungen und zur Problembehandlung finden Sie hier: https://docs.microsoft.com/de-de/azure/devops/pipelines/tasks/build/dotnet-core-cli?view=azure-devops#troubleshooting.
2026-05-08T16:13:08.1228378Z ##[error]Der Vorgang wird abgebrochen. Die nächsten Schritte enthalten möglicherweise keine erwarteten Protokolle.
2026-05-08T16:13:08.1402572Z ##[error]The operation was canceled.
2026-05-08T16:13:08.1405432Z ##[section]Build .NET Solution wird fertiggstellt
u/Sebastian1989101 — 7 days ago

Be careful, Bonus Rolls broken once again... Indie Company at work

Bonus Rolls are broken. I just got a Item I already got last week from a Bonus Roll. This is not fair as I only missed one Item from this dungeon at the end of last week... Now I have the stupid Void Ring from NPX twice from Bonus Rolls while still missing the Caster Staff...

Update: Got a response for my ticket and I'm sure they're messing with me. Got a "not looted items will be delivered via mail" response with the hint I could reopen the ticket... Spoiler, their Reopen button for tickets does just work as their loot system this addon. Not at all.

reddit.com
u/Sebastian1989101 — 9 days ago