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?

Nikhil
  • 16,194
  • 20
  • 64
  • 81
Yama
  • 19
  • 1
  • You use the NDK to add your C engine to an Android application so your C engine would be part of a APK and you upload it onto the phone with that, If you want to add your C engine to Android itself you need to create your own ROM from scratch and put it on your device – Donal Rafferty Mar 22 '10 at 09:34
  • Also, there is no NDKr6 publicly available. There is an NDKr3 available for download, though. – CommonsWare Mar 22 '10 at 11:49

1 Answers1

0

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
  • 9,936
  • 5
  • 60
  • 85