Skip to content
Raphael Kiffer edited this page May 5, 2015 · 1 revision

Introduction

In order to integrate the framework to your Android application, you need to download its .jar file, copy it into your Android project "libs" directory, and add it to the classpath.

If you do not have access to the source code, please refer to the JavaDoc API documentation.

First step: derive from SmartApplication

The very thing you should do when designing an application powered by droid4me is to declare an android.app.Application in your AndroidManifest.xml file (read http://developer.android.com/guide/topics/manifest/application-element.html to know how to achieve this). This class needs to derive from com.smartnsoft.droid4me.app.SmartApplication, which itself derives from android.app.Application.

Once this is done, you need to implement the missing methods.

Second step: derive from the SmartActivity

To be continued...

Clone this wiki locally