Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@pavi2410
Last active December 22, 2020 12:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pavi2410/ca8d3753773ad55d0681f3174c38a291 to your computer and use it in GitHub Desktop.
Save pavi2410/ca8d3753773ad55d0681f3174c38a291 to your computer and use it in GitHub Desktop.
Get Android API Distribution Stats right from PowerShell
Invoke-RestMethod https://dl.google.com/android/studio/metadata/distributions.json | Format-Table name, @{ Label = 'version'; Expression = { $_.version }; Align = 'right' }, apiLevel, @{ Label = 'distribution'; Expression = { "$([math]::Round($_.distributionPercentage * 100, 1))%" }; Align = 'right' }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment