summary refs log tree commit diff
path: root/pkgs/development/mobile/androidenv
diff options
context:
space:
mode:
authorLuca Favatella <lucafavatella@users.noreply.github.com>2020-03-09 00:44:04 +0000
committerLuca Favatella <lucafavatella@users.noreply.github.com>2020-03-09 04:47:40 +0000
commit6da0e0b7d795f9d0ca4cc70e3a624f40a66be2e0 (patch)
treeb9dbf2fc708e297c268a86b7d9372abf5a50d465 /pkgs/development/mobile/androidenv
parente003ca046c788100c094a6c13b9ba195a1378cc5 (diff)
downloadnixpkgs-6da0e0b7d795f9d0ca4cc70e3a624f40a66be2e0.tar
nixpkgs-6da0e0b7d795f9d0ca4cc70e3a624f40a66be2e0.tar.gz
nixpkgs-6da0e0b7d795f9d0ca4cc70e3a624f40a66be2e0.tar.bz2
nixpkgs-6da0e0b7d795f9d0ca4cc70e3a624f40a66be2e0.tar.lz
nixpkgs-6da0e0b7d795f9d0ca4cc70e3a624f40a66be2e0.tar.xz
nixpkgs-6da0e0b7d795f9d0ca4cc70e3a624f40a66be2e0.tar.zst
nixpkgs-6da0e0b7d795f9d0ca4cc70e3a624f40a66be2e0.zip
androidenv: bump emulator version to latest stable - as per Linux
Move to a known version of the emulator.  Each OS has a distinct
version... pick the one on Linux.  A better solution would be to let
the user of `emulateApp` overload what the emulator version shall be
(and maybe it is already possible and I do not see it) - without need
to reproduce large portions of `default.nix`.

Using the previous emulator showed the following warning:
```
Your emulator is out of date, please update by launching Android Studio:
```

I am not aware of any reasons for not wanting the latest emulator (as
I expect it shall be compatible usually with more system images - not
less), so bump its default version.

Emulator release notes:
https://developer.android.com/studio/releases/emulator
Diffstat (limited to 'pkgs/development/mobile/androidenv')
-rw-r--r--pkgs/development/mobile/androidenv/compose-android-packages.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/mobile/androidenv/compose-android-packages.nix b/pkgs/development/mobile/androidenv/compose-android-packages.nix
index fb548bf3f9f..3cff323a8dc 100644
--- a/pkgs/development/mobile/androidenv/compose-android-packages.nix
+++ b/pkgs/development/mobile/androidenv/compose-android-packages.nix
@@ -4,7 +4,7 @@
 , platformToolsVersion ? "28.0.1"
 , buildToolsVersions ? [ "28.0.3" ]
 , includeEmulator ? false
-, emulatorVersion ? "28.0.14"
+, emulatorVersion ? "30.0.3"
 , platformVersions ? []
 , includeSources ? false
 , includeDocs ? false