views:

105

answers:

1

I'm porting my native C engine to android 2.1 using NDK r6, but I can't use the commands like: "adb root" or "adb remout" to my Nexus one. How should I do to upload my engine(.so file) to Nexus one?

A: 

Generally, you shouldn't add extra libraries on the phone (and rely on them). Your application should supply whatever extra libraries it needs packed within the apk and use them (and only them).

Shade