Rohan K
Rohan K

Reputation: 1618

What are C based Services and Java based Services?

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?

Upvotes: 1

Views: 144

Answers (1)

Benny Skogberg
Benny Skogberg

Reputation: 10681

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?

Upvotes: 2

Related Questions