From 742d8c974e82e20e642bd0edc09f5020db378a33 Mon Sep 17 00:00:00 2001 From: Jim McCann Date: Mon, 20 Nov 2023 21:01:16 -0500 Subject: [PATCH] better readme --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index aca1ee9..310211a 100644 --- a/README.md +++ b/README.md @@ -31,9 +31,10 @@ $ mv * latest Now get the things that the ovr SDK says we need (as per https://developer.oculus.com/documentation/native/android/mobile-studio-setup-android/ ): ``` #from android-sdk: -$ ./cmdline-tools/latest/bin/sdkmanager --install 'platforms;android-26' +# android-26 should work acc'd to the OVR docs, but our Maekfile builds against 29: +$ ./cmdline-tools/latest/bin/sdkmanager --install 'platforms;android-29' # "version 28.0.3 or later"; latest as of --list is build-tools;34.0.0-rc3 but: -$ ./cmdline-tools/latest/bin/sdkmanager --install 'build-tools;28.0.3' +$ ./cmdline-tools/latest/bin/sdkmanager --install 'build-tools;33.0.2' # android NDK (no version given, this is latest as of this writing): $ ./cmdline-tools/latest/bin/sdkmanager --install 'ndk;26.1.10909125' ```