In case you didn’t know, you can build native Android code using the NDK for MIPS processors. It’s actually super straightforward.
From the Android Developer site:
To generate MIPS machine code, include
mipsin yourApplication.mkfile’sAPP_ABIdefinition. For example:APP_ABI := mipsFor more information about defining the
APP_ABIvariable, seeApplication.mk.The build system places generated libraries into
$PROJECT/libs/mips/, where$PROJECTrepresents your project’s root directory, and embeds them in your APK under the/lib/mips/directory.
The Android robot is reproduced or modified from work created and shared by Google and used according to terms described in the Creative Commons 3.0 Attribution License.
You must be logged in to post a comment.