PaperParcel Annotations

Android Parcelable boilerplate annotation processor

Лицензия

Лицензия

Группа

Группа

nz.bradcampbell
Идентификатор

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

paperparcel-annotations
Последняя версия

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

2.0.0-beta1
Дата

Дата

Тип

Тип

jar
Описание

Описание

PaperParcel Annotations
Android Parcelable boilerplate annotation processor
Ссылка на сайт

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

https://github.com/grandstaish/paperparcel
Система контроля версий

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

https://github.com/grandstaish/paperparcel

Скачать paperparcel-annotations

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

<!-- https://jarcasting.com/artifacts/nz.bradcampbell/paperparcel-annotations/ -->
<dependency>
    <groupId>nz.bradcampbell</groupId>
    <artifactId>paperparcel-annotations</artifactId>
    <version>2.0.0-beta1</version>
</dependency>
// https://jarcasting.com/artifacts/nz.bradcampbell/paperparcel-annotations/
implementation 'nz.bradcampbell:paperparcel-annotations:2.0.0-beta1'
// https://jarcasting.com/artifacts/nz.bradcampbell/paperparcel-annotations/
implementation ("nz.bradcampbell:paperparcel-annotations:2.0.0-beta1")
'nz.bradcampbell:paperparcel-annotations:jar:2.0.0-beta1'
<dependency org="nz.bradcampbell" name="paperparcel-annotations" rev="2.0.0-beta1">
  <artifact name="paperparcel-annotations" type="jar" />
</dependency>
@Grapes(
@Grab(group='nz.bradcampbell', module='paperparcel-annotations', version='2.0.0-beta1')
)
libraryDependencies += "nz.bradcampbell" % "paperparcel-annotations" % "2.0.0-beta1"
[nz.bradcampbell/paperparcel-annotations "2.0.0-beta1"]

Зависимости

compile (1)

Идентификатор библиотеки Тип Версия
com.android.support » support-annotations jar 25.0.0

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

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

This project is deprecated

It will still be maintained, but no new features will be added. Please use Parcelize, as it is the official way of generating Parcelable implementations on Android.

PaperParcel

Build Status

PaperParcel is an annotation processor that automatically generates the CREATOR and writeToParcel(...) implementations for you when writing Parcelable objects. PaperParcel fully supports both Java and Kotlin (including Kotlin Data Classes). Additionally, PaperParcel supports Google's AutoValue via an AutoValue Extension.

For more information please see the website.

Download

Java:

dependencies {
  compile 'nz.bradcampbell:paperparcel:2.0.8'
  annotationProcessor 'nz.bradcampbell:paperparcel-compiler:2.0.8'
}

Kotlin:

apply plugin: 'kotlin-kapt'

dependencies {
  compile 'nz.bradcampbell:paperparcel:2.0.8'
  compile 'nz.bradcampbell:paperparcel-kotlin:2.0.8' // Optional
  kapt 'nz.bradcampbell:paperparcel-compiler:2.0.8'
}

Development snapshots are available on JFrog OSS Artifactory.

License

Copyright 2016 Bradley Campbell.

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.0.0-beta1
2.0.0-alpha1