AB

Light weight ab testing library for Android

Лицензия

Лицензия

Группа

Группа

it.sephiroth.android.library.ab
Идентификатор

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

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

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

2.0.2
Дата

Дата

Тип

Тип

aar
Описание

Описание

AB
Light weight ab testing library for Android
Ссылка на сайт

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

http://blog.sephiroth.it
Система контроля версий

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

https://github.com/sephiroth74/ABTest

Скачать library

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

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

Зависимости

Библиотека не имеет зависимостей. Это самодостаточное приложение, которое не зависит ни от каких других библиотек.

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

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

ABTest

Simple library for ab testing in android

Usage (gradle)

Add this line to your dependecy group:

compile 'it.sephiroth.android.library.ab:library:+'

Example

This library is meant for very simple AB testing.

The library can be initialized everywhere in your code:

	AB alphaBetaTest = AB.getInstance( this );

You can retrieve the current group in this way:

	Log.d( LOG_TAG, "group: " + alphaBetaTest.getGroup() );

And you can perform an ab test in this way:

	alphaBetaTest.doABTest( "test-action", new ABTest() {
		
		@Override
		public void B() {
			Log.i( LOG_TAG, getName() + " = B" );
		}
		
		@Override
		public void A() {
			Log.i( LOG_TAG, getName() + " = A" );
		}
	} );

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

Версия
2.0.2
2.0.1