Skip to content

Getting started

JJaraM edited this page Mar 31, 2016 · 3 revisions

Introduction

This tutorial will help you to create an application using chameleon framework.

Setup

In this step you will be able to start using chameleon. To see how install chalemeon in Maven please see the Getting Started with Maven guide, or if you prefer to use Gradle please visit Getting Started with Gradle.

Prepare the app

After install chameleon framework dependency is nessary to configure the application to work propertly, the first step is configure the main class. So with need to extend the class AbstractChameleonInitializer.

package com.jjm.example.init;

import com.jjm.chameleon.init.AbstractChameleonInitializer;

public class Application extends AbstractChameleonInitializer {

}
Clone this wiki locally