Android CustomTabs

A version info widget for Android. Material style.

Лицензия

Лицензия

Группа

Группа

de.peilicke.sascha
Идентификатор

Идентификатор

android-versioninfo
Последняя версия

Последняя версия

2.2.0
Дата

Дата

Тип

Тип

aar
Описание

Описание

Android CustomTabs
A version info widget for Android. Material style.
Ссылка на сайт

Ссылка на сайт

https://github.com/saschpe/android-customtabs
Система контроля версий

Система контроля версий

https://github.com/saschpe/android-versioninfo

Скачать android-versioninfo

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/de.peilicke.sascha/android-versioninfo/ -->
<dependency>
    <groupId>de.peilicke.sascha</groupId>
    <artifactId>android-versioninfo</artifactId>
    <version>2.2.0</version>
    <type>aar</type>
</dependency>
// https://jarcasting.com/artifacts/de.peilicke.sascha/android-versioninfo/
implementation 'de.peilicke.sascha:android-versioninfo:2.2.0'
// https://jarcasting.com/artifacts/de.peilicke.sascha/android-versioninfo/
implementation ("de.peilicke.sascha:android-versioninfo:2.2.0")
'de.peilicke.sascha:android-versioninfo:aar:2.2.0'
<dependency org="de.peilicke.sascha" name="android-versioninfo" rev="2.2.0">
  <artifact name="android-versioninfo" type="aar" />
</dependency>
@Grapes(
@Grab(group='de.peilicke.sascha', module='android-versioninfo', version='2.2.0')
)
libraryDependencies += "de.peilicke.sascha" % "android-versioninfo" % "2.2.0"
[de.peilicke.sascha/android-versioninfo "2.2.0"]

Зависимости

runtime (1)

Идентификатор библиотеки Тип Версия
androidx.fragment » fragment jar 1.3.3

Модули Проекта

Данный проект не имеет модулей.

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.

Версии библиотеки

Версия
2.2.0