Laboratory (Android)

Library for feature flags management.

Лицензия

Лицензия

Группа

Группа

io.mehow.laboratory
Идентификатор

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

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

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

0.2.0
Дата

Дата

Тип

Тип

aar
Описание

Описание

Laboratory (Android)
Library for feature flags management.
Ссылка на сайт

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

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

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

https://github.com/MiSikora/Laboratory

Скачать laboratory-android

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

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

Зависимости

compile (2)

Идентификатор библиотеки Тип Версия
io.mehow.laboratory : laboratory jar 0.2.0
org.jetbrains.kotlin : kotlin-stdlib-jdk8 jar 1.4.0

runtime (1)

Идентификатор библиотеки Тип Версия
androidx.core » core-ktx jar 1.3.1

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

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

Laboratory ⚗️

Quality Check CI Snapshot CI GitHub License

Feature flags for multi-module Kotlin Android projects.

Please visit project website for the full documentation and the changelog.

TLDR

Add Laboratory dependency to your project.

repositories {
  mavenCentral()
}

dependencies {
  implementation "io.mehow.laboratory:laboratory:0.9.7"
}

Enable Java 8 support.

android {
  compileOptions {
    sourceCompatibility JavaVersion.VERSION_1_8
    targetCompatibility JavaVersion.VERSION_1_8
  }

  kotlinOptions {
    jvmTarget = "1.8"
    freeCompilerArgs += "-Xjvm-default=enable"
  }
}

Define your feature flags.

enum class AuthType : Feature<AuthType> {
  None,
  Fingerprint,
  Retina,
  Face;

  public override val defaultOption get() = Fingerprint
}

Start using them in the application.

suspend fun main() {
  // A high-level API for interaction with feature flags
  val laboratory = Laboratory.inMemory()

  // Set AuthType option to Fingerprint
  val success = laboratory.setOption(AuthType.Fingerprint)

  // Check what is the current option of AuthType
  val currentAuthType = laboratory.experiment<AuthType>()

  // Check if the current option of AuthType is equal to Face
  val isFaceAuth = laboratory.experimentIs(AuthType.Face)

  // Observe changes to the AuthType feature flag
  laboratory.observe<AuthType>()
      .onEach { option -> println("AuthType: $option") }
      .launchIn(GlobalScope)
}

License

Copyright 2020 Michał Sikora

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.2.0
0.1.0