androidenv: align basic emulateApp usage example

... to the actually tested one.
This commit is contained in:
Luca Favatella 2020-03-09 19:46:41 +00:00
parent f01278dea2
commit d56fd6975c

View File

@ -186,7 +186,7 @@ with import <nixpkgs> {};
androidenv.emulateApp {
name = "emulate-MyAndroidApp";
platformVersion = "28";
abiVersion = "x86_64"; # armeabi-v7a, mips, x86
abiVersion = "x86"; # armeabi-v7a, mips, x86_64
systemImageType = "google_apis_playstore";
}
```