You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* master:
Prepare for release 2.5.0.
Add support for API 15-19 system images.
Use new cmdline-tools with support for running sdkmanager and avdmanager with Java 8+.
Update test-fixture dependencies. Drop minSdkVersion to 15.
Update to AGP 3.6.0 and Gradle 6.2.1 for test-fixture project.
Copy file name to clipboardExpand all lines: CHANGELOG.md
+5Lines changed: 5 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,10 @@
1
1
# Change Log
2
2
3
+
## v2.5.0
4
+
5
+
* Added support for API 15-19 system images.
6
+
* Switched to the new SDK command-line tools which supports running `sdkmanager` and `avdmanager` with Java 9+.
7
+
3
8
## v2.4.0
4
9
5
10
* Added support for setting custom `working-directory` - e.g. `./android` if your root Gradle project is under the `./android` sub-directory within your repository.
|`api-level`| Required | N/A | API level of the platform system image - e.g. 23 for Android Marshmallow, 29 for Android 10. **Minimum API level supported is 21**. |
72
+
|`api-level`| Required | N/A | API level of the platform system image - e.g. 23 for Android Marshmallow, 29 for Android 10. **Minimum API level supported is 15**. |
73
73
|`target`| Optional |`default`| Target of the system image - `default` or `google_apis`. |
74
-
|`arch`| Optional |`x86`| CPU architecture of the system image - `x86` or `x86_64`. |
74
+
|`arch`| Optional |`x86`| CPU architecture of the system image - `x86` or `x86_64`. Note that `x86_64` image is only available for API 21+. |
75
75
|`profile`| Optional | N/A | Hardware profile used for creating the AVD - e.g. `Nexus 6`. For a list of all profiles available, run `$ANDROID_HOME/tools/bin/avdmanager list` and refer to the results under "Available Android Virtual Devices". |
76
76
|`emulator-options`| Optional | See below | Command-line options used when launching the emulator (replacing all default options) - e.g. `-no-window -no-snapshot -camera-back emulated`. |
77
77
|`disable-animations`| Optional |`true`| Whether to disable animations - `true` or `false`. |
* Installs & updates the Android SDK for the macOS platform, including SDK platform for the chosen API level, latest build tools, platform tools, Android Emulator,
22
24
* and the system image for the chosen API level, CPU arch, and target.
0 commit comments