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 ```