Hi,
Ran across this solution http://www.appsurfer.com/ that allows Android apps to be tried in browser. Presumably it’s a cloud streaming thing with a virtual machine running on their servers and streamed to user. I thought this might be an interesting for presskits / getting someone to review your game. Any-hoo, decided to signup and uploaded an apk and got this error
Porting existing ARM apps to x86.
Looks like your app uses ndk to build native code. Your app currently runs ARM code, which is not compatible with AppSurfer platform as of now. So you could recompile your APK to be compatible with AppSurfer.
This is how you can do it.
You should add x86 to your APP_ABI definition in your Application.mk file to build for x86 platforms. For example, the following line instructs ndk-build to build your code for both ARM and x86 :
APP_ABI := armeabi x86
As you can see we just added x86 to your existing line.
Unless you rely on architecture-specific assembly sources, such as ARM assembly code, your app should run fine on x86.
* App is required to target Android 2.3 (API Level 9) or higher.
Since that’s the stuff under Corona hood, sounds like something that’s probably not easy to resolve? Anyone with more details/experiences.
Matias
