aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2019-08-20 13:38:01 -0400
committerGitHub <noreply@github.com>2019-08-20 13:38:01 -0400
commit5be571eea1e3d6815656fe5342a40c2167911123 (patch)
treea2fbc983066b3d9d79be76595787f69e597eca2e /doc
parente04a39d550ff3c7f797e6ed8ad3a96458d0182d1 (diff)
parent1b81302d49ae9a394ea06f0b7aa0bfe0cd4603f0 (diff)
Merge pull request #66747 from erikarvstedt/androidenv-fixes
Androidenv fixes
Diffstat (limited to 'doc')
-rw-r--r--doc/languages-frameworks/android.section.md9
1 files changed, 4 insertions, 5 deletions
diff --git a/doc/languages-frameworks/android.section.md b/doc/languages-frameworks/android.section.md
index 237f3441874..f268c552566 100644
--- a/doc/languages-frameworks/android.section.md
+++ b/doc/languages-frameworks/android.section.md
@@ -185,10 +185,9 @@ with import <nixpkgs> {};
androidenv.emulateApp {
name = "emulate-MyAndroidApp";
- platformVersion = "24";
- abiVersion = "armeabi-v7a"; # mips, x86 or x86_64
- systemImageType = "default";
- useGoogleAPIs = false;
+ platformVersion = "28";
+ abiVersion = "x86_64"; # armeabi-v7a, mips, x86
+ systemImageType = "google_apis_playstore";
}
```
@@ -201,7 +200,7 @@ with import <nixpkgs> {};
androidenv.emulateApp {
name = "emulate-MyAndroidApp";
platformVersion = "24";
- abiVersion = "armeabi-v7a"; # mips, x86 or x86_64
+ abiVersion = "armeabi-v7a"; # mips, x86, x86_64
systemImageType = "default";
useGoogleAPIs = false;
app = ./MyApp.apk;