Posts

Showing posts with the label Application

Create android apps widgets online

App Widgets are miniature application views that can be embedded in other applications (such as the Home screen) and receive periodic updates. Here is a shortcut : try  AppsGeyser . AppsGeyser is an online service which can convert your web content into an Android App which can be shared and distributed freely. AppsGeyser offers 3 ways to create Android App : - By URL By web widget code. By webpage contents.

Writing your First Mobile App for Nokia

Image
Writing your First Mobile App for Nokia Sep 10, 2011 Beautiful invoicing, time-tracking and project management for freelancers Powered by InfluAds You must have basic knowledge of HTML, CSS and JavaScript and you are ready!! Step1 :-  Write your application with HTML, CSS and JS , and test it in browser. You can start with alerting "Hello" or a simple calculator to add two digits. Feel free to use JS libraries like jQuery etc. Put all these files to a folder. For example "HelloApp". Step2 :-  Create an info.plist file  in the same folder there your main HTML file is situated. DisplayName Hello Identifier com.Hello.basic.widget Version 1.0 MainHTML index.html In this file you must put the "DisplayName" (You can put anything), "Identifire" (Something like com.anything.anything) and your "MainHTML" ( Main HTML file name). Step3 :-  Zip your folder and rename it to ".wgz"  ...

Offline Web Applications Using HTML5 Application Cache

HTML5  provides a way to use application even when you are offline, developers can list the files that are required for the Web application to work offline and browser keep a copy of that files using its caching mechanisms. A manifest file is a text file contains the file list. A web browser will read the list of URLs from the manifest file, download the resources, cache them locally, and automatically keep the local copies up to date as they change. When user try to access the web application without a network connection, web browser will automatically switch over to the local copies instead. To enable the application cache for an app, include the manifest attribute on the document's html tag, like this ... A manifest file must be served with the mime-type text/cache-manifest. You may need to add a custom file type to your web server or .htaccess configuration. For example, to serve this mime-type in Apache, add this line to your .htaccess file: AddType t...

Managing HTML5 Application Cache in Chrome

Image
Sep 13, 2011 We built our cloud to run dynamic apps fast. Powered by InfluAds To check saved  Application Cache  data by  HTML5  applications, Navigate your Chrome browser to  chrome://appcache-internals/ You will be able to see all the details like Size, Creation Time, Last Access Time, Last Update Time and a button to "Remove this AppCache". I found this tip very helpful while debugging/testing your applications.