HenryAdamsJr
HenryAdamsJr

Reputation: 850

Developing Android outside of the SDK

It seems as if every Android application I really want to make is impossible to make with the current SDK. It doesn't give me access to certain things I would like to work with. This is an example of one of these things.

I know it is possible since I've seen apps in the market that do things that the SDK cannot do. My basic question is can someone point me in the direction of how to create such an application. I've searched around, but all of the links I've found are for developing with the SDK. A simple link to a tutorial that can show me how to access Android elements that aren't available through the SDK would be great.

Thanks.

Upvotes: 2

Views: 229

Answers (1)

Fred Grott
Fred Grott

Reputation: 3476

You will not find a tutorial on it because the NDK is in flux..

What I have found is ..

  1. One of the Eclipse CDT has blog posts on how to setup NDK projects in Eclipse.

  2. The people who know Android Embedded C and frameworks are usually on certain IRc channel.

  3. Plenty of code documentation..

  4. Google search for android jni wrapper blog posts.

But keep this in mind several areas require state management as hey interact with hardware buffers in a certain way..ie audio..video..etc.

Upvotes: 3

Related Questions