AboutOss is an utility library to retrieve and display opensource licenses in Android applications.
The library works with the OSS Licenses Gradle Plugin. You can integrate it in your application with few simple steps.
In your app-level build.gradle
, apply the plugin by adding the following line under the existing apply plugin: 'com.android.application'
at the top of the file:
apply plugin: 'com.google.android.gms.oss-licenses-plugin'
repositories {
maven {
url = uri("https://jitpack.io")
}
}
dependencies {
implementation("com.geekorum.aboutoss:ui-material:0.0.1")
}
val intent = Intent(this, OpenSourceLicensesActivity::class.java)
startActivity(intent)
Just use Gradle to build
./gradlew build
AboutOss is an open source library and is licensed under the GNU General Public License 3 and any later version. This means that you can get AboutOss's code and modify it to suit your needs, as long as you publish the changes you make for everyone to benefit from as well.
AboutOss is built and maintained by community volunteers.