/android-versioninfo

A version info widget for Android. Material style.

Primary LanguageJavaApache License 2.0Apache-2.0

VersionInfo

Download Android Arsenal License

All about activities have a version info widget somewhere. This library provides one that can be used as a dialog or fragment. It honors default styling rules, Material-style:

Dialog Fragment

Usage

Allows to either display a version information dialog:

VersionInfoDialogFragment
        .newInstance(
                getString(R.string.app_name),
                BuildConfig.VERSION_NAME,
                "Sascha Peilicke",
                R.mipmap.ic_launcher)
        .show(getFragmentManager(), "version_info");

Or a fragment:

DialogFragment fragment = VersionInfoDialogFragment.newInstance(
        getString(R.string.app_name),
        BuildConfig.VERSION_NAME,
        "Sascha Peilicke",
        R.mipmap.ic_launcher);
getFragmentManager().beginTransaction().replace(R.id.container, fragment).commit();

Check out the sample app in app/ to see it in action.

Download

compile 'saschpe:versioninfo:1.2.3'

Snapshots of the development version are available in Sonatype's snapshots repository.

License

Copyright 2016 Sascha Peilicke

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.