summary refs log tree commit diff
path: root/doc
diff options
context:
space:
mode:
authorSander van der Burg <svanderburg@gmail.com>2020-04-05 14:59:04 +0200
committerGitHub <noreply@github.com>2020-04-05 14:59:04 +0200
commit542a74a9dc77ec20a3996088b15b38b83d3bba31 (patch)
treef0cfd2aa80b432020cc8fad1f944a75fe0f1a754 /doc
parent7c345bb6943fdb4e4306bbc8064d10956038b0c9 (diff)
parentd56fd6975cbbfff53854266fc53c01aa098e381a (diff)
downloadnixpkgs-542a74a9dc77ec20a3996088b15b38b83d3bba31.tar
nixpkgs-542a74a9dc77ec20a3996088b15b38b83d3bba31.tar.gz
nixpkgs-542a74a9dc77ec20a3996088b15b38b83d3bba31.tar.bz2
nixpkgs-542a74a9dc77ec20a3996088b15b38b83d3bba31.tar.lz
nixpkgs-542a74a9dc77ec20a3996088b15b38b83d3bba31.tar.xz
nixpkgs-542a74a9dc77ec20a3996088b15b38b83d3bba31.tar.zst
nixpkgs-542a74a9dc77ec20a3996088b15b38b83d3bba31.zip
Merge pull request #82118 from lucafavatella/androidenv-update-2
androidenv: update generated expressions
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";
 }
 ```