All Projects → saschpe → android-versioninfo

saschpe / android-versioninfo

Licence: Apache-2.0 license
A version info widget for Android. Material style.

Programming Languages

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

Projects that are alternatives of or similar to android-versioninfo

Simpledialogfragments
A collection of easy to use and extendable DialogFragment's for Android
Stars: ✭ 94 (+347.62%)
Mutual labels:  fragments, dialog
Livesmashbar
An elegant looking and easy to use informative library with LiveData integration for Android.
Stars: ✭ 107 (+409.52%)
Mutual labels:  dialog, android-app
Smartisandialog
Smartisan style Dialog.
Stars: ✭ 33 (+57.14%)
Mutual labels:  dialog, android-app
Base
🍁 Base是针对于Android开发封装好一些常用的基类,主要包括通用的Adapter、Activity、Fragment、Dialog等、和一些常用的Util类,只为更简单。
Stars: ✭ 249 (+1085.71%)
Mutual labels:  fragments, dialog
AVSD-DSTC10 Official
Audio Visual Scene-Aware Dialog (AVSD) Challenge at the 10th Dialog System Technology Challenge (DSTC)
Stars: ✭ 22 (+4.76%)
Mutual labels:  dialog
Licenser
An android library to display the licenses of your application libraries in a easy way.
Stars: ✭ 75 (+257.14%)
Mutual labels:  dialog
JiaxingAcademy
嘉兴学院
Stars: ✭ 12 (-42.86%)
Mutual labels:  android-app
ReactAnuvaad
Localize your app in gloval languages
Stars: ✭ 20 (-4.76%)
Mutual labels:  android-app
MyTargets
Android app, which helps archers keep track of their training progress
Stars: ✭ 69 (+228.57%)
Mutual labels:  android-app
Github-Trending-Repos
An Android App that lists the most trending repositories from Github.
Stars: ✭ 57 (+171.43%)
Mutual labels:  android-app
E-commerceCustomerFYP
Android E-commerce Platform. Allow customer to buy product, chat, feedback rating, make payment to retailer
Stars: ✭ 41 (+95.24%)
Mutual labels:  android-app
Feedage
A basic "news reader" that sorts posts from various RSS feeds into categories.
Stars: ✭ 19 (-9.52%)
Mutual labels:  android-app
ToDo
Android application to quickly add tasks and reminders.
Stars: ✭ 13 (-38.1%)
Mutual labels:  android-app
MobilECG-II
Open source ECG holter
Stars: ✭ 375 (+1685.71%)
Mutual labels:  android-app
WhatsDeleted
See WhatsApp messages & media deleted by the sender.
Stars: ✭ 77 (+266.67%)
Mutual labels:  android-app
Food Ordering App
Using Firebase, It's a Real-Time food delivery App where user can order food from different restaurants menu
Stars: ✭ 30 (+42.86%)
Mutual labels:  android-app
Arcadia-Auction
CSGO League App | Featured on Google DevLibrary
Stars: ✭ 17 (-19.05%)
Mutual labels:  android-app
Ionic-ElastiChat-with-Images
Ionic Magic Chat with Angular Elastic, Autolinker.js and more!
Stars: ✭ 66 (+214.29%)
Mutual labels:  android-app
permuted-bAbI-dialog-tasks
Dataset for 'Learning End-to-End Goal-Oriented Dialog with Multiple Answers' EMNLP 2018
Stars: ✭ 17 (-19.05%)
Mutual labels:  dialog
LibPecker
an obfuscation-resilient, highly precise and reliable library detector for Android applications
Stars: ✭ 38 (+80.95%)
Mutual labels:  android-app

Android VersionInfo

Maven Central Android Arsenal License Build Status

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 version information in a dialog:

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

Or a (support) Fragment:

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

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

Download

Artifacts are published to Maven Central:

repositories {
    mavenCentral()
}

dependencies {
    implementation("de.peilicke.sascha:android-versioninfo:2.2.0")
}

In use by

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.
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].