I clone OpenVPN project in ics-openvpn. And then I install NDK, CMake, swig(4.0.1), update git ... follow doc/README.txt and I open it with Android studio after that. But when open the project with Android studio I can't see another package in the project.
Here is my result:
How I can fix it to see all the packages and build the project?
Thank you so much!
if you want to devlope on this project follow this steps:
cd main/cpp
or the name that you name it to this module and download this sub modules :git submodule add https://github.com/schwabe/openvpn.git
git submodule add https://github.com/schwabe/platform_external_openssl.git
git submodule add https://github.com/ARMmbed/mbedtls.git
git submodule add https://github.com/schwabe/openvpn3.git
git submodule add https://github.com/lz4/lz4.git
git submodule add https://github.com/chriskohlhoff/asio.git
git submodule init
git submodule update
id("com.android.application")
toid("com.android.library")
build.gradle
for the library and paste it in yourbuild.gradle
inside android script :build.gradle
:implementation project(path: ':your-module-name')
NOTE: if you can not see the module files click on the gradle on the right of android studio and left-click on the openvpn module and choose refresh Gradle project.
I hope it can help someone.