Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jakoblichterfeld/ansible-role-android_studio
An Ansible role to install Android Studio via download
https://github.com/jakoblichterfeld/ansible-role-android_studio
android-studio ansible ansible-galaxy-role ansible-role
Last synced: 13 days ago
JSON representation
An Ansible role to install Android Studio via download
- Host: GitHub
- URL: https://github.com/jakoblichterfeld/ansible-role-android_studio
- Owner: JakobLichterfeld
- License: mit
- Created: 2023-08-28T11:49:45.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-03-15T10:22:25.000Z (10 months ago)
- Last Synced: 2024-11-11T12:53:28.553Z (about 2 months ago)
- Topics: android-studio, ansible, ansible-galaxy-role, ansible-role
- Homepage:
- Size: 21.5 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Ansible Role: Android Studio
[![CI](https://github.com/JakobLichterfeld/ansible-role-android_studio/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/JakobLichterfeld/ansible-role-android_studio/actions/workflows/ci.yml)
[![Publish role on Ansible Galaxy](https://github.com/JakobLichterfeld/ansible-role-android_studio/actions/workflows/publish_role_on_ansible_galaxy.yml/badge.svg?branch=main)](https://github.com/JakobLichterfeld/ansible-role-android_studio/actions/workflows/publish_role_on_ansible_galaxy.yml)Install Android Studio via download.
- Install required libraries for 64-bit machines
- Download and verify (sha256) the specified Android Studio
- Install to `/opt`## Requirements
None.
## Role Variables
Available variables are listed below, along with default values (see `defaults/main.yml`):
| Name | Default Value | Description |
| -------------- | --------------- | -----------------------------------|
| `download_dir_on_remote_host` | "/home/{{ ansible_user }}/Downloads/automatically_by_ansible_playbook" | Download Base Directory on Remote Host |
| `android_studio.version` | "2022.3.1.19" | Android Studio Version you want to install |
| `android_studio.checksum` | "sha256:250625dcab183e0c68ebf12ef8a522af7369527d76f1efc704f93c05b02ffa9e" | Checksum of the version to be downloaded |## Dependencies
None.
## Example Playbook
```yaml
---
- hosts: all
gather_facts: true
become: trueroles:
- role: jakoblichterfeld.android_studio```
## License
MIT
## Author Information
This role was created in 2023 by [Jakob Lichterfeld](https://github.com/JakobLichterfeld).