All Projects → marcoscgdev → Licenser

marcoscgdev / Licenser

Licence: MIT license
An android library to display the licenses of your application libraries in a easy way.

Programming Languages

kotlin
9241 projects
java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Licenser

AttributionPresenter
An Android library to easily display attribution information of open source libraries.
Stars: ✭ 47 (-37.33%)
Mutual labels:  dialog, licenses
plain-modal
The simple library for customizable modal window.
Stars: ✭ 21 (-72%)
Mutual labels:  dialog
BaseDevelop
an android project for now fashion open source framework
Stars: ✭ 24 (-68%)
Mutual labels:  dialog
denbun
Adjust showing frequency of Android app messages, and to be more user friendly 🐦
Stars: ✭ 17 (-77.33%)
Mutual labels:  dialog
jquery.dialog.js
A lightweight replacement for the browser's default dialog boxes.
Stars: ✭ 17 (-77.33%)
Mutual labels:  dialog
android-dialog
此框架提供七种对话框的显示,并支持对话框的扩展,目的是为了提供对话框的统一管理,并提供对话框显示的公共接口。
Stars: ✭ 44 (-41.33%)
Mutual labels:  dialog
Material-Smart-Rating
😍⭐⭐Material Smart Rating App - An Android library that encourages users to rate the app on Google Play.⭐⭐😘
Stars: ✭ 30 (-60%)
Mutual labels:  dialog
ngx-modal
Dynamic modal dialog for Angular
Stars: ✭ 54 (-28%)
Mutual labels:  dialog
Android-Shortify
An Android library used for making an Android application more faster with less amount of code. Shortify for Android provides basic functionalities of view and resource binding, view customization, JSON parsing, AJAX, various readymade dialogs and much more.
Stars: ✭ 21 (-72%)
Mutual labels:  dialog
HijriDatePicker
Material (Gregorian - Hijri) Date & Time Picker
Stars: ✭ 128 (+70.67%)
Mutual labels:  dialog
panter-dialog
Panter Dialog is an stylish android library that helps users add cool features like adding header and header logos
Stars: ✭ 116 (+54.67%)
Mutual labels:  dialog
react-fusionui
☢️ Nuclear power-up for your UI.
Stars: ✭ 13 (-82.67%)
Mutual labels:  dialog
AndroidLoadingView
🚗🚗🚗Android LoadingView
Stars: ✭ 25 (-66.67%)
Mutual labels:  dialog
flutter jd address selector
京东地址选择器
Stars: ✭ 26 (-65.33%)
Mutual labels:  dialog
DSTC6-End-to-End-Conversation-Modeling
DSTC6: End-to-End Conversation Modeling Track
Stars: ✭ 56 (-25.33%)
Mutual labels:  dialog
svelte-accessible-dialog
An accessible dialog component for Svelte apps
Stars: ✭ 24 (-68%)
Mutual labels:  dialog
react-native-input-prompt
A cross-platform user input prompt component for React Native with Native UI.
Stars: ✭ 45 (-40%)
Mutual labels:  dialog
smart-show
Toast # Snackbar # Dialog
Stars: ✭ 500 (+566.67%)
Mutual labels:  dialog
opensnips
Open source projects related to Snips https://snips.ai/.
Stars: ✭ 50 (-33.33%)
Mutual labels:  dialog
react-native-wxui
A UI package for React Native
Stars: ✭ 21 (-72%)
Mutual labels:  dialog

Licenser API

An android library to display the licenses of your application libraries in a easy way.

Now with custom licenses support.


Releases:

Current release: 2.0.0.

You can see all the library releases here.


Wiki

You can access Licenser wiki here.

Demo:

You can download the sample apk here.


Usage:

Step: 1 - adding the library via Gradle

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:2.0.0'

Step: 2 - creating a dialog

You have to use an AppCompatActivity

LicenserDialog(this)
        .setTitle("Licenses")
        .setCustomNoticeTitle("Notices for files:")
        .setBackgroundColor(Color.RED) // Optional
        .setLibrary(Library("Android Support Libraries",
                "https://developer.android.com/topic/libraries/support-library/index.html",
                License.APACHE2)) // APACHE deprecated, see wiki
        .setLibrary(Library("Example Library",
                "https://github.com/marcoscgdev",
                License.APACHE2)) // APACHE deprecated, see wiki
        .setLibrary(Library("Licenser",
                "https://github.com/marcoscgdev/Licenser",
                License.MIT))
        .setPositiveButton(android.R.string.ok, object:DialogInterface.OnClickListener() {
            fun onClick(dialogInterface:DialogInterface, i:Int) {
                // TODO: 11/02/2018
            }
        })
        .show()

You can also set a custom dialog theme:

LicenserDialog(this, R.style.DialogStyle)
        ...

Library structure:

val lib1 = Library(var title: String, var url: String?, var license: License)

NEW: License structure:

// Use a license code like APACHE2 or MIT
val lic1 = License(val code: String, var htmlContent: String)

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.MPL1 // MPL v1
 - License.MPL1_1 // MPL v1.1
 - License.MPL2 // MPL v2
 - License.NTP // NTP
 - License.OFL1_1 // SIL Open Font License v1.1

Please, if you need a license that is not yet in this list, try to create a custom license.

val lic1 = License("CUSTOM_LICENSE_CODE", customLicenseHtmlContent)

val lib1 = Library("Library name", "https://github.com/marcoscgdev", lic1)

If you don't want a dialog, you can use the Licenser class:

var licenser = Licenser()
        .setCustomNoticeTitle("Notices for files:")
        .setLibrary(Library("Android Support Libraries",
                "https://developer.android.com/topic/libraries/support-library/index.html",
                License.APACHE))
        .setLibrary(Library("Example Library",
                "https://github.com/marcoscgdev",
                License.APACHE))
        .setLibrary(Library("Licenser",
                "https://github.com/marcoscgdev/Licenser",
                License.MIT))

And show it in a webview:

webView.loadData(licenser.htmlContent, "text/html; charset=UTF-8", null)

Extra functions

You can access this functions with both classes

var licenses = licenser.getHTMLContent() // HTML content
var apacheLibraries = licenser.getApacheLibraries()
var mitLibraries = licenser.getMitLibraries()
var gnuLibraries = licenser.getGnuLibraries()

See the sample project to clarify any queries you may have.


License

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.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].