Reputation: 606
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
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
Reputation: 65903
Why not just look at the Jelly Bean source code? http://source.android.com/source/index.html
Upvotes: 0