How to create an android app using only c ++ in Android Studio?

0

Just for learning purposes, is it possible to create an app using only c ++ (without JNI)? And if it is possible, what are the steps, do you have any 'Helloword' examples somewhere?

So I know some things in xml will be unavoidable. (Am I right?)

    
asked by anonymous 14.04.2016 / 13:44

1 answer

2

I thought it was not, but actually it is possible, provided it is 1.3 or higher.

You should go to the SDK Manager (Android Studio itself) and enter the SDK Tools tab. There you will find a package named Android NDK, and you should start by installing it. This should take considerable time, thanks to the size of the package.

Since creating and running apps is a bit more extensive, here's a link that explains in detail How to start projects with C ++ in Android Studio .

    
14.04.2016 / 14:39