Skip to content

Releases: quittle/gradle-android-emulator

v0.4.5

21 Feb 14:59
67d9cf0
Compare
Choose a tag to compare

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

09 Feb 13:13
Compare
Choose a tag to compare

Improves emulator shutdown by forcefully killing lingering processes. This ensures future runs aren't hung up on previous ones.

0.4.2

14 Dec 01:12
Compare
Choose a tag to compare

Bugfix to upgrade dependencies. Contains log4j upgrade to 2.15.0

0.4.1

24 Oct 13:15
Compare
Choose a tag to compare

Added support for running this plugin alongside other emulators or attached devices.

0.4.0

17 Oct 09:27
Compare
Choose a tag to compare

Added support for multiple Android SDK configurations to work with when installing deoendencies. In order of precedence:

  1. The cmdline-tools only bundle.
  2. The cmdline-tools;latest package if installed with sdkmanager.
  3. The highest version of the cmdline-tools package if installed with sdkmanager for a specific version.
  4. 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

18 Jul 08:28
Compare
Choose a tag to compare

Added support for device flag when specifying your emulator via the extension

0.0.3: Fix Android Emulator not running in some environments

05 Nov 10:44
Compare
Choose a tag to compare
* Fixed by adding ANDROID_HOME environment variable to commands
* Added new logEmulatorOutput flag to extension for easier debugging