[android-porting] CPM Plugins don't have permission to write external storage?

2010-05-31 Thread NoraBora
Some CPM plugins have to write drm information on external storage(nand, sdcard). I added WRITE_EXTERNAL_STORAGE permission in app's AndroidManifest.xml but didn't work. because opencore is used by MediaPlayer process. - MediaPlayerService - mediaserver and mediaserver doesn't have 'sdcard_rw'

[android-porting] Re: Changing factory default settings?

2010-05-31 Thread Srikant
I think it should be possible, the settings will be stored in the user data area of flash memory. Unless the user erases the flash, those settings would persist in the device. - Srikant On May 27, 6:34 pm, Jay Slater slater@gmail.com wrote: I'm currently working on a device which doesn't

[android-porting] RE: Data connection via cell modem (GPRS)

2010-05-31 Thread Uhrenfeldt Henrik
Hi Mike, I'm beginning to run out of ideas here. It may be a long shot, but try wiping your cache data partition if you do not do so on a regular basis; there may be stale data here causing the browser activity to fail.. I really think you have to verify that you can actually transfer data

[android-porting] Re: Password lock screen in android

2010-05-31 Thread Soumya
Yeah Froyo 2.2 has password (numeric + alpha numeric) lock screens already implemented. @Bashan which lock do you want to disable, pattern lock or the screen lock ? If you want to disable pattern lock, then you might be interested in unlockscreen.java file. On May 29, 12:45 pm, Huseyin Bashan

[android-porting] Froyo source code

2010-05-31 Thread Soumya
Hi, Can any of the android devs tell as to when the source code of Froyo 2.2 will be released? An approximate date will be good even. Thank you, Soumya -- unsubscribe: android-porting+unsubscr...@googlegroups.com website: http://groups.google.com/group/android-porting

[android-porting] kha...@ti.com

2010-05-31 Thread SpectraCore Technologies
Hi, We are pleased to release the Android port for OMAP-L138 HawkBoard. This release enables developers evaluate CoreDruid's custom Android port for HawkBoard. This release has minimum set of features like 1. Android Donut 2. Qwerty keyboard 3. Ethernet The source code and build instructions

[android-porting] Re: Porting Android SDK For large screen devices(Smartbook)

2010-05-31 Thread ajay pandey
hi, are you able to achieve this on emulator? Thanks, Ajay On Apr 12, 12:32 pm, Along along...@gmail.com wrote: we are going to port android 2.1 on rather large size of scree and the resolution is about 1024X600,what I need to look upon/modify??? also when i also tried to configure with

[android-porting] Re: video player - native application

2010-05-31 Thread Dianne Hackborn
That isn't really how Android works. If you want a video player to run in the background, you would start a Service that controls it (see for example the music app). If you are creating a device with an external display... well, currently there are no APIs for external displays in the platform,

[android-porting] Re: video player - native application

2010-05-31 Thread Deva R
Hi Dianne, Thanks for the reply. If you are creating a device with an external display... well, currently there are no APIs for external displays in the platform, so you are going to need to add something that your app can use to direct video playback to that display. Currently we have