• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps Building android apps on self compiled android platform

iqnatius

Lurker
Hi,
with the help of Building Android 1.5 – Building the source Johan de Koning and Using Eclipse ?(Android Open Source Project)?, I am now able to build the platform project on my ubuntu machine.

Now to the next step, can I use this platform project as an sdk to run the sample apps, eg. lunar lander, on my ubuntu machine? If yesI tried to run the Calculator as a java application but the error I get is "Selection does not contain a main type". Pardon me, I am pretty new to this android development and eclipse

my goal is to write my own RIL and via a serial driver, get the android project making phone calls via a GSM modem on my ubuntu machine.

Also my understanding is, if I want to build my own RIL, I will need to build my own platform, android sdk is only for application developer. Am I right?

Thank you.

regards,
Adrian
 
A normal JRE won't work properly because it's actually not java bytecode the sdk produces, it's dalvik (a more openly licensed version designed for reduced resource devices).

And yes, you'll need to use the full opensource platform project to build something like a RIL; it's way beyond the SDK's capability.
 
Back
Top Bottom