user13267
user13267

Reputation: 7193

How do I compile the Oboe library sample apps?

I am trying to compile the LiveEffects sample app in Google's oboe library: https://github.com/google/oboe/tree/master/samples/LiveEffect

I have downloaded the entire Oboe project and keeping it's folder structure intact I have loaded the project in the oboe-master/samples/LiveEffect folder in Android Studio

I have not made any changes but the Device List drop down box in Android Studio as well as the compile and run button (green triangle) are disabled, and clicking on gradle sync gives an error NDK not configured, when NDK is already installed and I can compile other NDK projects on this computer.

What do I need to do to get the Oboe sample code (without any changes) compiled?

Upvotes: 2

Views: 796

Answers (1)

donturner
donturner

Reputation: 19146

After you have cloned the Oboe repository you need to:

  • Open Android Studio
  • File -> Open -> locate the samples directory -> Open

This should automatically import all the Oboe samples. You can then choose LiveEffect from the Run Configuration menu at the top:

Android Studio Run Configuration drop down

Upvotes: 3

Related Questions