Book Image

IBM Worklight Mobile Application Development Essentials

Book Image

IBM Worklight Mobile Application Development Essentials

Overview of this book

Table of Contents (15 chapters)
IBM Worklight Mobile Application Development Essentials
Credits
About the Authors
Acknowledgement
About the Reviewers
www.PacktPub.com
Preface
Index

Exploring the Android application environment


The Android environment for Worklight apps provides complete implementation and structured resource handling for handling the environment. Here, we have to generate the Android native project by deploying the Android environment added to the Worklight project/app. Follow the given steps to initialize the Android project for a particular environment:

  1. Right-click on apps and navigate to HelloWorld | android.

  2. On the menu that appears, select Run As | 2 Build Environment and Deploy. After clicking on this option, the deployment process will start and the status can be seen in the Console window under Worklight Studio | Eclipse.

  3. After deployment of the environment, you can see the Android project generated in the same workspace with a combination of project name, app name, and selected mobile/desktop environment.

An Android project generated after build

The the Android application is finally generated and ready to execute with the resources. Now, we will...