summary refs log tree commit diff
path: root/doc
diff options
context:
space:
mode:
authorLuca Favatella <lucafavatella@users.noreply.github.com>2020-03-09 19:46:41 +0000
committerLuca Favatella <lucafavatella@users.noreply.github.com>2020-03-09 19:46:46 +0000
commitd56fd6975cbbfff53854266fc53c01aa098e381a (patch)
treece4ca2dad1d3d52c811a999151fab290d69b978d /doc
parentf01278dea254bd7308e21b9e470f1bd8ee006a8c (diff)
downloadnixpkgs-d56fd6975cbbfff53854266fc53c01aa098e381a.tar
nixpkgs-d56fd6975cbbfff53854266fc53c01aa098e381a.tar.gz
nixpkgs-d56fd6975cbbfff53854266fc53c01aa098e381a.tar.bz2
nixpkgs-d56fd6975cbbfff53854266fc53c01aa098e381a.tar.lz
nixpkgs-d56fd6975cbbfff53854266fc53c01aa098e381a.tar.xz
nixpkgs-d56fd6975cbbfff53854266fc53c01aa098e381a.tar.zst
nixpkgs-d56fd6975cbbfff53854266fc53c01aa098e381a.zip
androidenv: align basic emulateApp usage example
... to the actually tested one.
Diffstat (limited to 'doc')
-rw-r--r--doc/languages-frameworks/android.section.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/languages-frameworks/android.section.md b/doc/languages-frameworks/android.section.md
index d76b590ede3..6ee450eeb59 100644
--- a/doc/languages-frameworks/android.section.md
+++ b/doc/languages-frameworks/android.section.md
@@ -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";
 }
 ```