https://github.com/f-droid/sdkmanager
[MIRROR] A drop-in replacement for sdkmanager from the Android SDK written in Python, https://gitlab.com/fdroid/sdkmanager
https://github.com/f-droid/sdkmanager
Last synced: about 1 year ago
JSON representation
[MIRROR] A drop-in replacement for sdkmanager from the Android SDK written in Python, https://gitlab.com/fdroid/sdkmanager
- Host: GitHub
- URL: https://github.com/f-droid/sdkmanager
- Owner: f-droid
- License: agpl-3.0
- Created: 2023-05-30T13:17:48.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2025-04-07T14:13:30.000Z (about 1 year ago)
- Last Synced: 2025-04-07T15:26:34.550Z (about 1 year ago)
- Language: Python
- Size: 735 KB
- Stars: 6
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
A drop-in replacement for `sdkmanager` from the Android SDK written in Python.
It implements the exact API of the
[`sdkmanager`](https://developer.android.com/studio/command-line/sdkmanager)
command line. It only deviates from that API if it can be done while being 100%
compatible.
The project also attempts to maintain the same terminal output so it can be
compatible with things that scrape `sdkmanager` output.
## Code Format
This project uses Black to automatically format all the Python code. It uses
the version of Black that is in Debian/stable. To format the code, run:
```bash
black --skip-string-normalization *.py
```