Click here to Skip to main content
15,914,924 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have used libraries in android studio which gets compiled in gradle and some steps are provided with it.
But now i want a C++ library which is a inpaint library ,how do i use this with my android studio project.
GitHub - cheind/inpaint: :pencil2: Inpaint is a C++ library providing image inpainting algorithms[^]

this is the library is it possible to implement with android studio.

What I have tried:

trying to understand how library of c++ will be implemented but no clue as i am beginner in android studio and have less knowledge on c++.
Posted
Updated 25-Nov-18 20:46pm

1 solution

Yes, Android Studio supports native development and native libraries too. However, in order to utilize the native library in your own Java application (or Kotlin), you would need to write a native interface that handles the communication between Java and C++.

Link Gradle to your native library  |  Android Developers[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900