Skip to content

android-studio

The Android Studio resource installs Android Studios. It supports the current and all previous versions. It also allows preview and beta versions to be installed.

Parameters:

  • version: (string) The version to install. This will default to the latest stable version if it isn’t specified. For a list of all available versions please see: https://developer.android.com/studio/archive.

  • directory: (string) A custom directory to install Android Studios to. This defaults to /Applications if left unspecified

Example usage:

Stable version:

codify.json
[
{
"type": "Android Studio"
}
]

Stable and previous version:

codify.json
[
{
"type": "Android Studio"
},
{
"type": "Android Studio",
"version": "2024.2.1.8"
}
]

Custom directory:

codify.json
[
{
"type": "Android Studio",
"version": "2024.2.1.7",
"directory": "~/programs"
}
]