Releases: quittle/gradle-android-emulator
v0.4.5
Added support for a new configuration field: additionalSdkManagerArguments
. This allows you to pass arguments to sdkmanager
when it installs dependencies automatically. This could be used to pass the --verbose
flag for debugging or passing proxy arguments.
Note: There may be two different versions of the sdkmanager used depending on your setup. If you have an old version of the sdkmanager, it will first upgrade itself to the latest version and then install its dependencies. The arguments set with this flag will be passed to both versions.
What's Changed
- Bump com.github.spotbugs from 5.0.5 to 5.0.6 in /android-emulator-plugin by @dependabot in #162
- feature: adding sdkmanager common arguments by @baytsurov in #161
- Bump mockito-junit-jupiter from 4.2.0 to 4.3.1 in /android-emulator-plugin by @dependabot in #155
Full Changelog: 0.4.4...0.4.5
0.4.4
0.4.2
0.4.1
0.4.0
Added support for multiple Android SDK configurations to work with when installing deoendencies. In order of precedence:
- The
cmdline-tools
only bundle. - The
cmdline-tools;latest
package if installed withsdkmanager
. - The highest version of the
cmdline-tools
package if installed withsdkmanager
for a specific version. - The older, SDK Tools bundle which used to be the only source supported.
Note that if cmdline-tools;latest
was installed when the latest version was 1.0 and then later cmdline-tools;2.0
is installed without reinstalling latest, this plugin will use the 1.0 version installed under "latest" rather than 2.0.
0.2.1
0.0.3: Fix Android Emulator not running in some environments
* Fixed by adding ANDROID_HOME environment variable to commands * Added new logEmulatorOutput flag to extension for easier debugging