[android-developers] Re: how to install .apk to hardware board as app

2009-02-23 Thread dillirao malipeddi
use In Eclips right click on the Apidemos choose android tool -> Export Unsigned Application Package and sign the apk file and install it on device http://code.google.com/android/devel/sign-publish.html On Tue, Feb 24, 2009 at 11:49 AM, susanner wrote: > I want to install Apidemo.apk as on

[android-developers] Re: how to install .apk to hardware board as app

2009-02-26 Thread susanner
thanks dilirao malipeddi, must I sign it to run on my hardware board?may I just run unsigned .apk? 在2009-02-24,"dillirao malipeddi" 写道: use In Eclips right click on the Apidemos choose android tool -> Export Unsigned Application Package and sign the apk file and install it on device

[android-developers] Re: how to install .apk to hardware board as app

2009-02-26 Thread susanner
oh,sorrry , i didn't look at http://code.google.com/android/devel/sign-publish.html it describes this issue very clearly. 在2009-02-27,susanner 写道: thanks dilirao malipeddi, must I sign it to run on my hardware board?may I just run unsigned .apk? 在2009-02-24,"dillirao malipeddi" 写道: use

[android-developers] Re: how to install .apk to hardware board as app

2009-02-26 Thread susanner
Thanks dilirao malipeddi again: I finally got the reason why my .apk can't be finded, I use android tools:export unsigned application package, and then I didn't sign it. Because I have no intention to release it , i should just copy the .spk file bin/Mediaplayer.apk , this apk file has been s

[android-developers] Re: how to install .apk to hardware board as app

2009-02-27 Thread Anil Yadav
Hi All No need to specially sign it for porting into target device... you can just run your application then eclipse will automatically signs your application with debug keystore. and stores .APK file in BIN folder of application Thanks Anil Yadav On Feb 27, 8:29 am, susanner wrote: > Thank