# AndroidStudio Include SDK in external C++ library

**URL:** https://forum.techsoft3d.com/t/androidstudio-include-sdk-in-external-c-library/975
**Category:** HOOPS Exchange
**Created:** [September 1, 2022, 8:21am UTC](https://forum.techsoft3d.com/t/androidstudio-include-sdk-in-external-c-library/975 "2022-09-01T08:21:29Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![sryckebusch](https://avatars.discourse-cdn.com/v4/letter/s/d6d6ee/32.png) [@sryckebusch](https://forum.techsoft3d.com/u/sryckebusch)
#### Post date: [September 1, 2022, 8:21am UTC](https://forum.techsoft3d.com/t/androidstudio-include-sdk-in-external-c-library/975/1 "2022-09-01T08:21:30Z")

</div>

Hello, I’m a absolute beginner in Android Studio.  
I’m need to do a external C++ library in Android Studio with just the function exchange(string FileIn, string FileOut).

I use the sample project in the SDK. I have created a module with a simple function. All is OK with my unity project. But now I want include the SDK in this module but AndroidStudio say he doesn’t found it .  
What must I do to include the SDK in my module ?

#include \<jni.h\>  
#include   
#include \<A3DSDKIncludes.h\>

extern “C”{  
int getSomeNumber()  
{  
return 134;  
}

```
int Add (int i, int j)
{
    return i+j;
}

```

};
