something to write here

First Application in Simulator


In our previous post we have seen the starting of the application. We have developed our application have a part and saw its output in the browser. So what is the final thing we should do to see our application to the simulator and then to the Firefox Market place. I guess you can find the list of requirement in this post. Please don't forget to have all the requirements.

The main part for any application is writing the manifest file. The extension for the manifest file is .webapp

Here I would like to give your a sample manifest.webapp file for Firefox OS app which we use.

{
  "name": "Hello World",
  "description": "Welcoming the developers",
  "launch_path": "/index.html",
  "icons": {
    "60": "/images/app_icon_60.png",
    "128": "/images/app_icon_128.png"
  },
  "version": "1.1",
  "developer": {
    "name": "Viswaprasath KS",
    "url": "technoruler.blogspot.com"
  },
  "default_locale": "en"
}

The detailed description about the mainfest is as follows.


  • "name" gives the name of the application.
  • "description" gives the description about the application which is useful to know about the application.
  • "launch_path" tells where the app should get started.
  • "icons" will have the icon image. Under it we can give for different size.
  • "version" will give the version of the application we have developed.
  • "developer" will enclose the details about the developers
  • "name" under "developer" will let us know who developed the application.
  • "ulr" will help the other to know about the application
  • "default_locale" is to tell what is the default language for this application.
Look of an typical mainfest

So now we will be having only 2 files of this application one is the very important file where the application will be started and another one is the manifest.webapp file which will be telling the details about the Firefox OS application. Take a look at this below
Folder containing files
Now we almost finished all the work for the application development. The next step is to run the mobile application and test it in the simulator to see how it works.