novice3
novice3

Reputation: 606

Android API implement by C or Java?

I want to backport a JellyBean 4.1 API to 4.0 for my app. And that would much harder if the source is not in Java.

Where I can check out that?

To be specific, I want to backport this api Accessibility Service

Upvotes: 1

Views: 74

Answers (2)

CommonsWare
CommonsWare

Reputation: 1006829

AccessibilityService's implementation is not a framework class (e.g., Activity), but part of the core OS. You cannot backport it for an app the way that, say, ActionBarSherlock backported the action bar.

Upvotes: 1

Chinmay Kanchi
Chinmay Kanchi

Reputation: 65903

Why not just look at the Jelly Bean source code? http://source.android.com/source/index.html

Upvotes: 0

Related Questions