tags:

views:

66

answers:

1

What are C based services and Java based services in Android? What is similarity and dissimilarity between them ? Are C based services available in Android?

+2  A: 

The System C-library is a BSD-derived implementation of the standard C system library (libc), tuned for embedded Linux-based devices. Meaning, this is the operating system (ref "What is Android?".

The Application framework is written in Java, and it is these frameworks you as a programmer mostly use. Here you have ActivityManager and ContentProvider to work with.

More to read: What is Android?

BennySkogberg