CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
hrydgard

CoCalc provides the best real-time collaborative environment for Jupyter Notebooks, LaTeX documents, and SageMath, scalable from individual users to large groups and classes!

GitHub Repository: hrydgard/ppsspp
Path: blob/master/android/README.TXT
Views: 1401
1
================================================================
2
3
NOTE: These are legacy instructions for building using ndk-build.
4
5
We mostly only use this on CI because it's faster than gradle.
6
There might also be some holdouts around still using eclipse.
7
8
================================================================
9
10
First, build the C++ static library:
11
12
> cd android
13
> ./ab.sh
14
Or
15
> ./ab.cmd
16
17
as appropriate.
18
19
Start Eclipse, import the android directory as an existing project
20
You need to also load the "native" project into your eclipse workspace
21
Build and run.
22
23
If you modify the C++ code, you need to rebuild the static library, of
24
course. To get Eclipse to understand that you have in fact changed something
25
if you haven't also changed any Java code, just add a space character to
26
PPSSPPActivity.java, or right click the project and choose Refresh, and then
27
relaunch the app on the device.
28
29
A real Android device is strongly recommended for testing. Don't trust
30
the emulator.
31
32