[android-porting] Which platform manifest for android-2.6.37-rc7?

2010-12-26 Thread Elvis Dowson
Hi, Which android platform manifest can I use with the android-2.6.37-rc7 experiemental kernel? git://android.git.kernel.org/kernel/experimental.git android-2.6.37- kernel-patchwork branch origin/sandbox/dima/android-2.6.37 I've built the android-2.6.37-rc7 kernel already, but android-2.2

[android-porting] Re: gingerbread alsa build issue

2010-12-26 Thread Joerie
Hi Deepak, Both ALSA and /hardware/ti/omap3 require some patching to build on Gingerbread. In addition to the patches posted already, have a look at my Github repositories [1], which should have all necessary OMAP- related patches. Joerie [1]: https://github.com/ius -- unsubscribe: android-por

[android-porting] Scipad + Android + external keyboard + ssh?

2010-12-26 Thread tijuana
Ok so a friend of mine showed me one of these chinese imitation ipads, which of course turns out to be a piece of crap really slow and with an impossible touchscreen. But it's worth 60 bucks and comes with a usb dongle to connect stuff to it, so it got me thinking: since it already has android,

[android-porting] omapevm3530 kernel panic --- gingerbread

2010-12-26 Thread wei-ting Chang
Hi Deepak, I have the same problem. Can you share the steps you to comment on fs in init.rc file? this is my init.rc file. - on early-init start ueventd on init sysclktz 0 loglevel 3 # setup the global environment export PATH /sbin:/vendor/bin:/system/sbin:/system/bi

[android-porting] Re: Screen Resolution

2010-12-26 Thread Oliver
Hello. I am porting android to a 1024*600 notebook too. Besides some apps can't display perfectly, android can display well. There are some solutions may help you. 1. There is an app called "spare parts" which is default built by android. Slide to the bottom you can see an item called "compatible m

[android-porting] Re: Problem building opensles

2010-12-26 Thread Oliver
Hello. The link error is due to an compiler incompatible issue. I encountered this problem when i use arm-eabi-gcc 4.2.1 to compile gingerbread. When I switched my toolchain to arm-eabi-gcc 4.4.3. The error went away. On 12月26日, 上午5时20分, Bruce Beare wrote: > diff --git a/opensles/libopensles/Andr

[android-porting] Porting Android on MTK6516

2010-12-26 Thread Hiteshwar Vadlamudi
Hi All, I am new to Android porting and I want to get started by porting Android 2.2. on MTK 6516 (Which MTK claims it supports Android) Can you guys help me get started. 1. Where to get an MTK 6516 2. What other hardwares we need. 4. Do we have any vendor supporting this. From where I can pickup

Re: [android-porting] problems with ALSA

2010-12-26 Thread Murali K. Vemuri
Hello there, Sorry for the delayed reply. I see these log messages on "logcat": E/AudioHardwareALSA( 1031): ERROR PIPE (underflow), resetting to RECOVER!! E/AudioHardwareALSA( 1031): and since I am not very familiar with the android config files, I am attaching my default config file. Can someon

Re: [android-porting] Better coding for Android

2010-12-26 Thread Shachar Shemesh
On 26/12/10 18:04, Soumya wrote: TextView tv = (TextView) findViewById(R.id.sampleTextView); tv.setText("Hello World"); -- OR -- ((TextView) findViewById(R.id.sampleTextView)).setText("Hello World"); Upon re-reading the original email, I retract my previous reply. Even if the optimizer

Re: [android-porting] Better coding for Android

2010-12-26 Thread Shachar Shemesh
On 26/12/10 18:04, Soumya wrote: Which will result in lesser memory usage and help in quicker garbage collection. Did you test it? I'm not that familiar with the java compiler, but I know that gcc, for example, will easily pick up the fact that the variable is not used beyond that point, and th

[android-porting] Better coding for Android

2010-12-26 Thread Soumya
Hi all, Not sure whether this is the correct place is discuss it but am sure that it will be helpful to one and to all. What I am looking for is better coding with parameters such as memory management, faster processing and cleaner coding. Is there any set of Good Coding Guide for Android from the