Where did you try to place your newly built library ? Note that /system folder is mounted as read only in simulator. To ensure this run: $ adb $ su # mount .... /dev/block/mtdblock0 /system yaffs2 ro 0 0 ...
You need to find out how to remount /system as read-write... PS: as it was mentioned early this is not application development topic, but firmware related... On Mon, Jun 27, 2011 at 2:38 PM, rinks24583 <[email protected]> wrote: > I am sure that files are included in build. Now I am able to build > *.so individually. Its mandatory to run following commands before > giving mm command: > > source build/envsetup.sh > lunch 1 > cd frameworks/base > mm > > But I have problem transferring them to emulator. Whenever I try to > transfer newly build *.SO file, it says there is "No space left on > device" and doesn't transfer that file. > > Can anybody through some light on this issue? > > -Rinkal > > On Jun 27, 1:19 pm, Sergey Nilga <[email protected]> wrote: > > Are you shure that the files you modified are included into the build > > configuration that you use ? I mean that some real files might be > excluded > > from, say, simulator build and some stubs might be used instead. Changing > of > > such files then does not affect them to be rebuild. > > On Jun 27, 2011 9:59 AM, "rinks24583" <[email protected]> wrote: > > > > > Hi, > > > > > Currently I am making changes to source files in frameworks/base/media/ > > > libmedia and frameworks/base/media/libstagefright of Android 2.3 > > > (Gingerbread). After making any change I am compiling the complete > > > Gingerbread pacakge and SDK by giving following commands: > > > > > make -j12 > > > make sdk > > > > > This process take a lot of time. To avoid this I tried compiling just > > > framework/base folder libraries by giving following command: > > > source build/envsetup.sh > > > mm frameworks/base > > > > > Its says "make: Nothing to be done for `frameworks/base/'.". I am sure > > > that I have made changes to some files in frameworks/base/media/ > > > libmedia and frameworks/base/media/libstagefright folders. But I am > > > not sure why it doesn't compile those libraries in frameworks/base > > > folder. > > > > > Please let me know if I am missing anything. Also please let me know > > > if there is any other method to compile some part of Android 2.3 > > > individually to avoid time consuming process of compiling the complete > > > Gingerbread repo. > > > > > Regards, > > > Rinkal > > > > > -- > > > You received this message because you are subscribed to the Google > > > Groups "Android Developers" group. > > > To post to this group, send email to > [email protected] > > > To unsubscribe from this group, send email to > > > [email protected] > > > For more options, visit this group at > > >http://groups.google.com/group/android-developers?hl=en > > -- > You received this message because you are subscribed to the Google > Groups "Android Developers" group. > To post to this group, send email to [email protected] > To unsubscribe from this group, send email to > [email protected] > For more options, visit this group at > http://groups.google.com/group/android-developers?hl=en > -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

