Post Reply 
 
Thread Rating:
  • 2 Votes - 5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Android based on Intel and not ARM support?
05-16-2013, 09:48 PM (This post was last modified: 05-16-2013 10:22 PM by YaPeL.)
Post: #15
RE: Android based on Intel and not ARM support?
(05-14-2013 04:48 AM)[Unknown] Wrote:  Hmm, so it's saying that the device supports x86, but the package doesn't?

Did you revert this change?

https://github.com/hrydgard/ppsspp/commi...f74d18e166

Also see:
http://software.intel.com/en-us/articles...plications
http://software.intel.com/en-us/articles...plications

Maybe it's because of the API level? Apparently only 9 or higher is supported for x86, per:
http://developer.android.com/tools/sdk/n...orm-compat

-[Unknown]

The api level fixed the warning, but, the warning was just that Tongue

it seems its having issues with this 2 import lines on Android.mk line 261:

$(call import-module,libzip)
$(call import-module,native)

If I remove those 2 lines it goes a little bit further but then I get this:

ERROR: Non-debuggable application installed on the target device.
Please re-install the debuggable version!

Of course I deleted my old app with the new one.
Only places I added to be "debuggable" are on the ab.sh script:

cp -r ../flash0 assets
cp -r ../lang assets
NDK_MODULE_PATH=..:../native/ext $NDK/ndk-build -j3 NDK_DEBUG=1 TARGET_PLATFORM=android-9 - $*

and bin/AndroidManifest.xml :

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.ppsspp.ppsspp"
android:versionCode="76"
android:versionName="0.7.6"
android:debuggable="True"
android:installLocation="auto" >
blabla
</manifest>

after that added an empty space on PpssppActivity.java, and export bla bla.

edit: mm thinking about it, the second error may be due to the removal of $(call import-module,native), since inspecting the app shows no traces of gdb on it.
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
RE: Android based on Intel and not ARM support? - YaPeL - 05-16-2013 09:48 PM

Forum Jump: