This repo is a wrapper of the OpenVPN library so you can easily add it to your project via gradle
Create a personal access token from your github account, and add it to root level build.gradle file, you can read here for more information
repositories {
maven {
url = uri("https://maven.pkg.github.com/vpncore/vpncore-android")
credentials {
username = project.findProperty("gpr.user") ?: System.getenv("USERNAME")
password = project.findProperty("gpr.key") ?: System.getenv("TOKEN")
}
}
}
build.gradle (app level)
implementation("org.vpncore:vpncore_android:1.1.0")
Please see the sample app