Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save dmitry-salnikov/934ed1a6a58c2b275f0cac04b1f3029f to your computer and use it in GitHub Desktop.

Select an option

Save dmitry-salnikov/934ed1a6a58c2b275f0cac04b1f3029f to your computer and use it in GitHub Desktop.
Update Android sdkmanager licenses automatically
#!/bin/bash
/usr/bin/expect -c '
set timeout -1;
spawn '"${ANDROID_HOME}"'/tools/bin/sdkmanager --licenses;
expect {
"y/N" { exp_send "y\r" ; exp_continue }
eof
}
'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment