proppy
proppy

Reputation: 10504

How to get started with Android Studio C++ development

I heard at Google I/O 15 that Android Studio has now C++ support, the official documentation for the NDK only has instructions for Eclipse.

How does one get started with Android C++ development using Android Studio?

Upvotes: 10

Views: 29346

Answers (1)

proppy
proppy

Reputation: 10504

There is detailed instructions on the Android NDK Preview site.

The gist of it

  • Download Android Studio 1.3+
  • Install the NDK bundle from Tools > Android > SDK Manager NDK in android sdk manager
  • Import the hello-jn sample using File > Import Sample (Note: This sample is using the new gradle-experimental plugin) import sample diaglog
  • Click Run > Edit Configurations... and andd a new Android Native configuration native run configuration
    (source: android.com)

  • Run and debug your application as usual

A few things to try from there:

Upvotes: 19

Related Questions