silent-support

Backport new android api calls to support lib versions.

Лицензия

Лицензия

Группа

Группа

me.tatarka.silentsupport
Идентификатор

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

silent-support
Последняя версия

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

0.4
Дата

Дата

Тип

Тип

pom
Описание

Описание

silent-support
Backport new android api calls to support lib versions.
Ссылка на сайт

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

https://github.com/evant/silent-support
Система контроля версий

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

https://github.com/evant/silent-support

Скачать silent-support

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

<!-- https://jarcasting.com/artifacts/me.tatarka.silentsupport/silent-support/ -->
<dependency>
    <groupId>me.tatarka.silentsupport</groupId>
    <artifactId>silent-support</artifactId>
    <version>0.4</version>
    <type>pom</type>
</dependency>
// https://jarcasting.com/artifacts/me.tatarka.silentsupport/silent-support/
implementation 'me.tatarka.silentsupport:silent-support:0.4'
// https://jarcasting.com/artifacts/me.tatarka.silentsupport/silent-support/
implementation ("me.tatarka.silentsupport:silent-support:0.4")
'me.tatarka.silentsupport:silent-support:pom:0.4'
<dependency org="me.tatarka.silentsupport" name="silent-support" rev="0.4">
  <artifact name="silent-support" type="pom" />
</dependency>
@Grapes(
@Grab(group='me.tatarka.silentsupport', module='silent-support', version='0.4')
)
libraryDependencies += "me.tatarka.silentsupport" % "silent-support" % "0.4"
[me.tatarka.silentsupport/silent-support "0.4"]

Зависимости

compile (2)

Идентификатор библиотеки Тип Версия
org.jetbrains.kotlin : kotlin-stdlib-jre7 jar 1.1.2
com.android.tools.lint : lint-api jar 26.0.0-alpha3

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

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

silent-support

Maven Central

Backport new android api calls to support lib versions.

The support lib provideds many useful wrappers and backports of android apis. However, using them requires you to change your code. And as you bump your min sdk, you need to change them back to the platform versions. This plugin will automatically rewrite calls to their support lib equivlents when necssary. The NewApi lint is replaced with a custom lint which will ignore successfully backported calls.

Usage

Currently requires android gradle plugin 3.0.0-alpha3

buildscript {
   repositories {
      mavenCentral()
   }

   dependencies {
      classpath "me.tatarka.silentsupport:silent-support-gradle-plugin:0.4"
   }
}

apply plugin: 'me.tatarka.silent-support'

Supported Methods/Classes

Right now only calls that can be converted from foo.bar(baz) to FooCompat.bar(foo, baz) are supported.

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

Версия
0.4
0.3
0.2
0.1