Reputation: 39
I am not a code developer but am a IT expert.
I want to know how can I stay up-to-date on Android SDK platform tools over Windows without installing the whole Android Studio, because I just need adb and fastboot.
Also I don't want to go all months to Android SDK Platform Tools release notes page to check if there is a new release available. Is there a way to have a notification or something similar when a new release comes to air?
Thank you for the answers.
Upvotes: 1
Views: 165
Reputation: 69208
You can run
sdkmanager --update [options]
periodically to get the updates for all the installed packages.
Check --help
for other options.
Upvotes: 1