From adeabdada58a2a1ae6b0d370cf14a5526fa99cbe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-S=C3=A9bastien=20Guay?= Date: Sat, 10 Sep 2016 08:07:16 -0400 Subject: [PATCH] a) appcompat doesn't need to exist anymore. b) we cd to a path 4 levels from the root of libretro-super, so to get to the cores compiled in dist we need 4 ".." not 3. --- Compilation-guide-(Android-from-Linux).md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Compilation-guide-(Android-from-Linux).md b/Compilation-guide-(Android-from-Linux).md index e7c079d..a87e593 100644 --- a/Compilation-guide-(Android-from-Linux).md +++ b/Compilation-guide-(Android-from-Linux).md @@ -29,15 +29,15 @@ The RetroArch repo is fetched into the `libretro-super` folder as `retroarch` by cd retroarch/pkg/android/phoenix android update project --path . android update project --path libs/googleplay/ -android update project --path libs/appcompat/ +android update project --path libs/appcompat/ # this doesn't seem to exist anymore ``` Now edit `local.properties` to point to the location of your ndk directory by adding a line like this: `ndk.dir=/complete/path/to/android-ndk-r9d` ```bash mkdir -p assets/cores mkdir assets/overlays -cp ../../../dist/android/armeabi-v7a/* assets/cores/ #replace armeabi-v7a here by mips or x86 for those targets -cp -r ../../../dist/info/ assets/ -cp -r ../../../libretro-overlays/* assets/overlays/ +cp ../../../../dist/android/armeabi-v7a/* assets/cores/ #replace armeabi-v7a here by mips or x86 for those targets +cp -r ../../../../dist/info/ assets/ +cp -r ../../../../retroarch/media/overlays/* assets/overlays/ ant clean ant debug ```