daniel-stoneuk / material-about-library

Makes it easy to create beautiful about screens for your apps
Apache License 2.0
1.12k stars 140 forks source link

Copyright #59

Closed kashifo closed 7 years ago

kashifo commented 7 years ago

I think there should be an option to add copyright info, it'll be useful for commercial apps also open-source apps have copyright too.

daniel-stoneuk commented 7 years ago

By copyright do you mean library licenses or something else. You should be able to make it yourself in the meantime - that's the idea of the library.

kashifo commented 7 years ago

A copyright info like © 2017 Github Inc at the bottom of screen

daniel-stoneuk commented 7 years ago

You could easily put it under the app name so it looks like this:

screenshot_20170609-194851

appCardBuilder.addItem(new MaterialAboutTitleItem.Builder()
                .text("Material About Library")
                .desc("© 2017 Daniel Stone")
                .icon(R.mipmap.ic_launcher)
                .build());
kashifo commented 7 years ago

Okay then.