Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I wish to install a apk file in beagle board having gingerbread Android. Unable to access files which are in my sdk card.

share|improve this question

1 Answer

up vote 0 down vote accepted

If you install the files by writing on the SD card it won't work, you have to install them.

The official solution to do so is to call (from the shell)

   adb install [-r] yourPackage.apk

(the -r is optional and may be necessary from time to time)

On the beagleboard you usually run a android that is rooted with write-access to system, so installing shouldn't be a problem.

If the adb can't find a device please read the official documentation. You may have to add the usb-vendor id to adb.ini/android.ini and modify udev-rules on linux systems. But all this is documented in the 'android for beagleboard' release you've got.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.