An android library to display the licenses of your application libraries in a easy way.
Click here for the Kotlin version of this readme.
You can see all the library releases here.
You can access Licenser wiki here.
You can download the sample apk here.
First of all add this to your root build.gradle file:
allprojects {
repositories {
maven { url "https://jitpack.io" }
}
}
Now add the dependency to your app build.gradle file:
implementation 'com.github.marcoscgdev:Licenser:1.0.7'
You have to use an AppCompatActivity
new LicenserDialog(this)
.setTitle("Licenses")
.setCustomNoticeTitle("Notices for files:")
.setBackgroundColor(Color.RED) // Optional
.setLibrary(new Library("Android Support Libraries",
"https://developer.android.com/topic/libraries/support-library/index.html",
License.APACHE2)) // APACHE deprecated, see wiki
.setLibrary(new Library("Example Library",
"https://github.com/marcoscgdev",
License.APACHE2)) // APACHE deprecated, see wiki
.setLibrary(new Library("Licenser",
"https://github.com/marcoscgdev/Licenser",
License.MIT))
.setPositiveButton(android.R.string.ok, new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialogInterface, int i) {
// TODO: 11/02/2018
}
})
.show();
NEW: You can set a custom AlertDialog theme.
new LicenserDialog(this, R.style.DialogStyle)
...
Library structure:
Library lib1 = new Library(String title, String url, int licenseType);
LICENSE TYPES (At this moment):
- License.APACHE1 // Apache v1
- License.APACHE1_1 // Apache v1.1
- License.APACHE2 // Apache v2
- License.BSD3 // BSD v3
- License.BSD4 // BSD v4
- License.BSL // BSL
- License.CREATIVE_COMMONS // Creative commons
- License.FREEBSD // FreeBSD
- License.GNU2 // GNU v2
- License.GNU3 // GNU v3
- License.ISC // ISC
- License.LGPL2_1 // GNU Lesser v2.1
- License.LGPL3 // GNU Lesser v3
- License.MIT // MIT
- License.NTP // NTP
Library lib1 = new Library("Library name", "https://github.com/marcoscgdev", License.APACHE);
If you don't want a dialog, you can use the Licenser class:
Licenser licenser = new Licenser()
.setCustomNoticeTitle("Notices for files:")
.setLibrary(new Library("Android Support Libraries",
"https://developer.android.com/topic/libraries/support-library/index.html",
License.APACHE))
.setLibrary(new Library("Example Library",
"https://github.com/marcoscgdev",
License.APACHE))
.setLibrary(new Library("Licenser",
"https://github.com/marcoscgdev/Licenser",
License.MIT));
And show it in a webview:
WebView webView = (WebView) findViewById(R.id.webView);
webView.loadData(licenser.getHTMLContent(), "text/html; charset=UTF-8", null);
You can access this functions with both classes
String licenses = licenser.getHTMLContent(); // HTML content
List<Library> apacheLibraries = licenser.getApacheLibraries();
List<Library> mitLibraries = licenser.getMitLibraries();
List<Library> gnuLibraries = licenser.getGnuLibraries();
See the sample project to clarify any queries you may have.
The MIT License (MIT)
Copyright (c) 2018 Marcos Calvo García
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.