ThreeTenBp Lazy Zone Compiler

Lazy loading ZoneRuleProvider for ThreeTenBp

Лицензия

Лицензия

Группа

Группа

com.gabrielittner.threetenbp
Идентификатор

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

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

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

0.9.0
Дата

Дата

Тип

Тип

jar
Описание

Описание

ThreeTenBp Lazy Zone Compiler
Lazy loading ZoneRuleProvider for ThreeTenBp
Ссылка на сайт

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

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

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

https://github.com/gabrielittner/lazythreetenbp/

Скачать compiler

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

<!-- https://jarcasting.com/artifacts/com.gabrielittner.threetenbp/compiler/ -->
<dependency>
    <groupId>com.gabrielittner.threetenbp</groupId>
    <artifactId>compiler</artifactId>
    <version>0.9.0</version>
</dependency>
// https://jarcasting.com/artifacts/com.gabrielittner.threetenbp/compiler/
implementation 'com.gabrielittner.threetenbp:compiler:0.9.0'
// https://jarcasting.com/artifacts/com.gabrielittner.threetenbp/compiler/
implementation ("com.gabrielittner.threetenbp:compiler:0.9.0")
'com.gabrielittner.threetenbp:compiler:jar:0.9.0'
<dependency org="com.gabrielittner.threetenbp" name="compiler" rev="0.9.0">
  <artifact name="compiler" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.gabrielittner.threetenbp', module='compiler', version='0.9.0')
)
libraryDependencies += "com.gabrielittner.threetenbp" % "compiler" % "0.9.0"
[com.gabrielittner.threetenbp/compiler "0.9.0"]

Зависимости

compile (3)

Идентификатор библиотеки Тип Версия
org.threeten : threetenbp jar 1.4.1
com.squareup : javapoet jar 1.12.1
com.github.pcj : google-options jar 1.0.0

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

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

LazyThreeTenBp

A lazy loading ZoneRuleProvider for ThreeTenBp.

Usage

You have to initialize LazyThreeTenBp as early as possible, before your code accesses any threetenbp class. Usually the best place is in your Application.onCreate() method:

@Override
public void onCreate() {
    super.onCreate();
    LazyThreeTen.init(this);
}

Afterwards you can call LazyThreeTen.cacheZones() on a background thread to cache the timezone information without blocking the startup of your app. If you decide not to do that the individual timezones will be loaded on demand when they are accessed for the first time.

Download

Add a Gradle dependency:

implementation "org.threeten:threetenbp:1.4.0:no-tzdb"
implementation "com.gabrielittner.threetenbp:lazythreetenbp:0.9.0"

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

Changes

Compiler

  • generate java code for list of all timezone ids
  • generate a separate .dat file for each zone
  • only support one timezone data version at a time (makes some things easier)

Runtime

  • custom ZoneRulesProvider
  • provides generated timezone id list
  • only reads timezone from assets/disk when that timezone was requested

Update tzdb data

  1. Check for the latest tzdb version at https://www.iana.org/time-zones
  2. Run ./gradlew processTzdb -PtzdbVersion=VERSION

License

Copyright 2017 Gabriel Ittner.

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.

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

Версия
0.9.0
0.8.0
0.7.0
0.6.0
0.5.0
0.4.0
0.3.0
0.2.0
0.1.0