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.

Jean-Sébastien Guay 2016-09-10 08:07:16 -04:00
parent 2a43ba2594
commit adeabdada5
1 changed files with 4 additions and 4 deletions

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